From 228aad2514aab495e898fe5ef4fb257cdb63a6db Mon Sep 17 00:00:00 2001 From: Lokendra Tyagi Date: Thu, 30 Oct 2025 17:17:10 +0530 Subject: [PATCH 1/7] added flag to load user and employee --- .../charts/urban/default-data-handler/values.yaml | 2 ++ .../org/egov/StartupUserAndEmployeeInitializer.java | 10 +++++++--- .../org/egov/handler/config/ServiceConfiguration.java | 3 +++ .../src/main/resources/application.properties | 3 +++ 4 files changed, 15 insertions(+), 3 deletions(-) diff --git a/devops/deploy-as-code/charts/urban/default-data-handler/values.yaml b/devops/deploy-as-code/charts/urban/default-data-handler/values.yaml index 978286b4..3adddbe2 100644 --- a/devops/deploy-as-code/charts/urban/default-data-handler/values.yaml +++ b/devops/deploy-as-code/charts/urban/default-data-handler/values.yaml @@ -125,6 +125,8 @@ env: | value: {{ index .Values "default-localization-locale-list" | quote }} - name: DEFAULT_LOCALIZATION_MODULE_CREATE_LIST value: {{ index .Values "default-localization-module-list" | quote }} + - name: DEFAULT_DATA_LOAD_USER_EMPLOYEE_ENABLED + value: "true" - name: JAVA_OPTS value: {{ index .Values "heap" | quote }} - name: JAVA_ARGS diff --git a/utilities/default-data-handler/src/main/java/org/egov/StartupUserAndEmployeeInitializer.java b/utilities/default-data-handler/src/main/java/org/egov/StartupUserAndEmployeeInitializer.java index 439b32e2..b54c0068 100644 --- a/utilities/default-data-handler/src/main/java/org/egov/StartupUserAndEmployeeInitializer.java +++ b/utilities/default-data-handler/src/main/java/org/egov/StartupUserAndEmployeeInitializer.java @@ -97,9 +97,13 @@ public void executeStartupLogic() throws Exception { mdmsBulkLoader.loadAllMdmsData(defaultDataRequest.getTargetTenantId(), defaultDataRequest.getRequestInfo()); dataHandlerService.createBoundaryDataFromFile(defaultDataRequest); localizationUtil.upsertLocalizationFromFile(defaultDataRequest); - dataHandlerService.createUserFromFile(tenantRequest); - dataHandlerService.createPgrWorkflowConfig(tenantRequest.getTenant().getCode()); - dataHandlerService.createEmployeeFromFile(defaultDataRequest.getRequestInfo()); + + // Load user, employee, and workflow config data only if enabled + if (serviceConfig.isLoadUserEmployeeDataEnabled()) { + dataHandlerService.createUserFromFile(tenantRequest); + dataHandlerService.createPgrWorkflowConfig(tenantRequest.getTenant().getCode()); + dataHandlerService.createEmployeeFromFile(defaultDataRequest.getRequestInfo()); + } } } diff --git a/utilities/default-data-handler/src/main/java/org/egov/handler/config/ServiceConfiguration.java b/utilities/default-data-handler/src/main/java/org/egov/handler/config/ServiceConfiguration.java index 68be591f..7f3c44b6 100644 --- a/utilities/default-data-handler/src/main/java/org/egov/handler/config/ServiceConfiguration.java +++ b/utilities/default-data-handler/src/main/java/org/egov/handler/config/ServiceConfiguration.java @@ -131,4 +131,7 @@ public class ServiceConfiguration { @Value("${scheduler.max.executions}") private String maxExecution; + + @Value("${default.data.load.user.employee.enabled}") + private boolean loadUserEmployeeDataEnabled; } diff --git a/utilities/default-data-handler/src/main/resources/application.properties b/utilities/default-data-handler/src/main/resources/application.properties index c87c1038..0a113443 100644 --- a/utilities/default-data-handler/src/main/resources/application.properties +++ b/utilities/default-data-handler/src/main/resources/application.properties @@ -84,6 +84,9 @@ egov.tenant.management.config.search.path=/tenant/config/_search default.tenant.id=statea +# Flag to enable/disable loading user, employee, and workflow config data +default.data.load.user.employee.enabled=true + # Workflow Configuration #egov.workflow.host=https://pgr-demo.digit.org egov.workflow.host=http://localhost:8082 From 3ca544bc74f145e7cd759c929ddc2988362c71ab Mon Sep 17 00:00:00 2001 From: Lokendra Tyagi Date: Tue, 4 Nov 2025 14:26:25 +0530 Subject: [PATCH 2/7] separate out dev and prod data, and made filenames configurable along with a dev enabled flag --- .../urban/default-data-handler/values.yaml | 2 +- ...StartupSchemaAndMasterDataInitializer.java | 42 +- .../StartupUserAndEmployeeInitializer.java | 42 +- .../handler/config/ServiceConfiguration.java | 28 +- .../handler/service/DataHandlerService.java | 11 +- .../egov/handler/util/LocalizationUtil.java | 9 +- .../org/egov/handler/util/MdmsBulkLoader.java | 6 +- .../src/main/resources/HRMS-dev.json | 412 + .../src/main/resources/HRMS.json | 300 - .../src/main/resources/User-dev.json | 43 + .../src/main/resources/User.json | 23 - .../src/main/resources/application.properties | 16 +- .../localisations-dev/en_IN/egov-hrms.json | 14 + .../localisations-dev/en_IN/egov-user.json | 20 + .../en_IN/rainmaker-common.json | 81302 ++++++++++++++++ .../localisations-dev/en_IN/rainmaker-hr.json | 2072 + .../en_IN/rainmaker-pgr.json | 31250 ++++++ .../en_IN/rainmaker-workbench.json | 8270 ++ .../hi_IN/egov-hrms.json | 0 .../hi_IN/egov-user.json | 0 .../hi_IN/rainmaker-common.json | 0 .../hi_IN/rainmaker-hr.json | 0 .../hi_IN/rainmaker-pgr.json | 0 .../hi_IN/rainmaker-workbench.json | 0 .../localizations (default).xlsx | Bin 0 -> 576992 bytes .../localizations (en_IN).xlsx | Bin 0 -> 576978 bytes .../localizations (hi_IN).xlsx | Bin .../RAINMAKER-PGR.ServiceDefs.json | 0 .../RAINMAKER-PGR.UIConstants.json | 0 .../Workflow/Workflow.AutoEscalation.json | 0 ...Workflow.AutoEscalationStatesToIgnore.json | 0 .../Workflow/Workflow.BusinessService.json | 0 .../Workflow.BusinessServiceConfig.json | 0 .../Workflow.BusinessServiceMasterConfig.json | 0 .../tenant/tenant.citymodule.json | 0 .../tenant/tenant.tenants.json | 0 36 files changed, 123503 insertions(+), 359 deletions(-) create mode 100644 utilities/default-data-handler/src/main/resources/HRMS-dev.json create mode 100644 utilities/default-data-handler/src/main/resources/User-dev.json create mode 100644 utilities/default-data-handler/src/main/resources/localisations-dev/en_IN/egov-hrms.json create mode 100644 utilities/default-data-handler/src/main/resources/localisations-dev/en_IN/egov-user.json create mode 100644 utilities/default-data-handler/src/main/resources/localisations-dev/en_IN/rainmaker-common.json create mode 100644 utilities/default-data-handler/src/main/resources/localisations-dev/en_IN/rainmaker-hr.json create mode 100644 utilities/default-data-handler/src/main/resources/localisations-dev/en_IN/rainmaker-pgr.json create mode 100644 utilities/default-data-handler/src/main/resources/localisations-dev/en_IN/rainmaker-workbench.json rename utilities/default-data-handler/src/main/resources/{localisations => localisations-dev}/hi_IN/egov-hrms.json (100%) rename utilities/default-data-handler/src/main/resources/{localisations => localisations-dev}/hi_IN/egov-user.json (100%) rename utilities/default-data-handler/src/main/resources/{localisations => localisations-dev}/hi_IN/rainmaker-common.json (100%) rename utilities/default-data-handler/src/main/resources/{localisations => localisations-dev}/hi_IN/rainmaker-hr.json (100%) rename utilities/default-data-handler/src/main/resources/{localisations => localisations-dev}/hi_IN/rainmaker-pgr.json (100%) rename utilities/default-data-handler/src/main/resources/{localisations => localisations-dev}/hi_IN/rainmaker-workbench.json (100%) create mode 100644 utilities/default-data-handler/src/main/resources/localisations-dev/localizations (default).xlsx create mode 100644 utilities/default-data-handler/src/main/resources/localisations-dev/localizations (en_IN).xlsx rename utilities/default-data-handler/src/main/resources/{localisations => localisations-dev}/localizations (hi_IN).xlsx (100%) rename utilities/default-data-handler/src/main/resources/{mdmsData => mdmsData-dev}/RAINMAKER-PGR/RAINMAKER-PGR.ServiceDefs.json (100%) rename utilities/default-data-handler/src/main/resources/{mdmsData => mdmsData-dev}/RAINMAKER-PGR/RAINMAKER-PGR.UIConstants.json (100%) rename utilities/default-data-handler/src/main/resources/{mdmsData => mdmsData-dev}/Workflow/Workflow.AutoEscalation.json (100%) rename utilities/default-data-handler/src/main/resources/{mdmsData => mdmsData-dev}/Workflow/Workflow.AutoEscalationStatesToIgnore.json (100%) rename utilities/default-data-handler/src/main/resources/{mdmsData => mdmsData-dev}/Workflow/Workflow.BusinessService.json (100%) rename utilities/default-data-handler/src/main/resources/{mdmsData => mdmsData-dev}/Workflow/Workflow.BusinessServiceConfig.json (100%) rename utilities/default-data-handler/src/main/resources/{mdmsData => mdmsData-dev}/Workflow/Workflow.BusinessServiceMasterConfig.json (100%) rename utilities/default-data-handler/src/main/resources/{mdmsData => mdmsData-dev}/tenant/tenant.citymodule.json (100%) rename utilities/default-data-handler/src/main/resources/{mdmsData => mdmsData-dev}/tenant/tenant.tenants.json (100%) diff --git a/devops/deploy-as-code/charts/urban/default-data-handler/values.yaml b/devops/deploy-as-code/charts/urban/default-data-handler/values.yaml index 3adddbe2..1b596ef5 100644 --- a/devops/deploy-as-code/charts/urban/default-data-handler/values.yaml +++ b/devops/deploy-as-code/charts/urban/default-data-handler/values.yaml @@ -125,7 +125,7 @@ env: | value: {{ index .Values "default-localization-locale-list" | quote }} - name: DEFAULT_LOCALIZATION_MODULE_CREATE_LIST value: {{ index .Values "default-localization-module-list" | quote }} - - name: DEFAULT_DATA_LOAD_USER_EMPLOYEE_ENABLED + - name: DEV_ENABLED value: "true" - name: JAVA_OPTS value: {{ index .Values "heap" | quote }} diff --git a/utilities/default-data-handler/src/main/java/org/egov/StartupSchemaAndMasterDataInitializer.java b/utilities/default-data-handler/src/main/java/org/egov/StartupSchemaAndMasterDataInitializer.java index 39ba90b8..61d3dbf5 100644 --- a/utilities/default-data-handler/src/main/java/org/egov/StartupSchemaAndMasterDataInitializer.java +++ b/utilities/default-data-handler/src/main/java/org/egov/StartupSchemaAndMasterDataInitializer.java @@ -97,18 +97,38 @@ public void executeStartupLogic() throws Exception { defaultDataRequest.setTargetTenantId(tenantCode); // Create Schema dataHandlerService.createMdmsSchemaFromFile(defaultDataRequest); - // Load mdms data - mdmsBulkLoader.loadAllMdmsData(defaultDataRequest.getTargetTenantId(), defaultDataRequest.getRequestInfo()); - // create Boundary Data - dataHandlerService.createBoundaryDataFromFile(defaultDataRequest); - // upsert localization - localizationUtil.upsertLocalizationFromFile(defaultDataRequest); -// // create User -// dataHandlerService.createUserFromFile(tenantRequest); + + // Load default MDMS data (always) + mdmsBulkLoader.loadAllMdmsData(defaultDataRequest.getTargetTenantId(), + defaultDataRequest.getRequestInfo(), + serviceConfig.getDefaultMdmsDataPath()); + + // Load default localization (always) + localizationUtil.upsertLocalizationFromFile(defaultDataRequest, + serviceConfig.getDefaultLocalizationDataPath()); + + // Load boundary, localization, user, employee, and workflow config data only if enabled + if (serviceConfig.isDevEnabled()) { + // Load dev MDMS data + mdmsBulkLoader.loadAllMdmsData(defaultDataRequest.getTargetTenantId(), + defaultDataRequest.getRequestInfo(), + serviceConfig.getDevMdmsDataPath()); + + // Load dev localization + localizationUtil.upsertLocalizationFromFile(defaultDataRequest, + serviceConfig.getDevLocalizationDataPath()); + +// // create Boundary Data +// dataHandlerService.createBoundaryDataFromFile(defaultDataRequest); // -// dataHandlerService.createPgrWorkflowConfig(tenantRequest.getTenant().getCode()); -// // create Employee -// dataHandlerService.createEmployeeFromFile(defaultDataRequest.getRequestInfo()); +// // create User from dev file +// dataHandlerService.createUserFromFile(tenantRequest, serviceConfig.getDevUserDataFile()); +// // create PGR workflow config +// dataHandlerService.createPgrWorkflowConfig(tenantRequest.getTenant().getCode()); +// // create Employee from dev file +// dataHandlerService.createEmployeeFromFile(defaultDataRequest.getRequestInfo(), +// serviceConfig.getDevEmployeeDataFile()); + } // dataHandlerService.createTenantConfig(tenantRequest); } diff --git a/utilities/default-data-handler/src/main/java/org/egov/StartupUserAndEmployeeInitializer.java b/utilities/default-data-handler/src/main/java/org/egov/StartupUserAndEmployeeInitializer.java index b54c0068..61c1c40b 100644 --- a/utilities/default-data-handler/src/main/java/org/egov/StartupUserAndEmployeeInitializer.java +++ b/utilities/default-data-handler/src/main/java/org/egov/StartupUserAndEmployeeInitializer.java @@ -44,7 +44,7 @@ public class StartupUserAndEmployeeInitializer { private int executionCount = 0; private static final int MAX_EXECUTIONS = 4; - @Scheduled(initialDelay = 4 * 60 * 1000, fixedDelay = 4 * 60 * 1000) // 4 minutes + @Scheduled(initialDelay = 1 * 30 * 1000, fixedDelay = 1 * 30 * 1000) // 4 minutes public void runPeriodically() { if (executionCount >= MAX_EXECUTIONS) return; @@ -94,15 +94,41 @@ public void executeStartupLogic() throws Exception { // Execute your logic dataHandlerService.createMdmsSchemaFromFile(defaultDataRequest); - mdmsBulkLoader.loadAllMdmsData(defaultDataRequest.getTargetTenantId(), defaultDataRequest.getRequestInfo()); - dataHandlerService.createBoundaryDataFromFile(defaultDataRequest); - localizationUtil.upsertLocalizationFromFile(defaultDataRequest); - // Load user, employee, and workflow config data only if enabled - if (serviceConfig.isLoadUserEmployeeDataEnabled()) { - dataHandlerService.createUserFromFile(tenantRequest); + // Load default MDMS data (always) + mdmsBulkLoader.loadAllMdmsData(defaultDataRequest.getTargetTenantId(), + defaultDataRequest.getRequestInfo(), + serviceConfig.getDefaultMdmsDataPath()); + + // Load default localization (always) + localizationUtil.upsertLocalizationFromFile(defaultDataRequest, + serviceConfig.getDefaultLocalizationDataPath()); + + // Load default user (always) + dataHandlerService.createUserFromFile(tenantRequest, serviceConfig.getDefaultUserDataFile()); + + // Load default employee (always) + dataHandlerService.createEmployeeFromFile(defaultDataRequest.getRequestInfo(), + serviceConfig.getDefaultEmployeeDataFile()); + + // Load boundary, localization, user, employee, and workflow config data only if enabled + if (serviceConfig.isDevEnabled()) { + // Load dev MDMS data + mdmsBulkLoader.loadAllMdmsData(defaultDataRequest.getTargetTenantId(), + defaultDataRequest.getRequestInfo(), + serviceConfig.getDevMdmsDataPath()); + + // Load dev localization + localizationUtil.upsertLocalizationFromFile(defaultDataRequest, + serviceConfig.getDevLocalizationDataPath()); + + dataHandlerService.createBoundaryDataFromFile(defaultDataRequest); + + // Load dev users and employees + dataHandlerService.createUserFromFile(tenantRequest, serviceConfig.getDevUserDataFile()); dataHandlerService.createPgrWorkflowConfig(tenantRequest.getTenant().getCode()); - dataHandlerService.createEmployeeFromFile(defaultDataRequest.getRequestInfo()); + dataHandlerService.createEmployeeFromFile(defaultDataRequest.getRequestInfo(), + serviceConfig.getDevEmployeeDataFile()); } } } diff --git a/utilities/default-data-handler/src/main/java/org/egov/handler/config/ServiceConfiguration.java b/utilities/default-data-handler/src/main/java/org/egov/handler/config/ServiceConfiguration.java index 7f3c44b6..92e4472d 100644 --- a/utilities/default-data-handler/src/main/java/org/egov/handler/config/ServiceConfiguration.java +++ b/utilities/default-data-handler/src/main/java/org/egov/handler/config/ServiceConfiguration.java @@ -132,6 +132,30 @@ public class ServiceConfiguration { @Value("${scheduler.max.executions}") private String maxExecution; - @Value("${default.data.load.user.employee.enabled}") - private boolean loadUserEmployeeDataEnabled; + @Value("${dev.enabled}") + private boolean devEnabled; + + @Value("${default.mdms.data.path}") + private String defaultMdmsDataPath; + + @Value("${default.user.data.file}") + private String defaultUserDataFile; + + @Value("${default.employee.data.file}") + private String defaultEmployeeDataFile; + + @Value("${dev.mdms.data.path}") + private String devMdmsDataPath; + + @Value("${dev.user.data.file}") + private String devUserDataFile; + + @Value("${dev.employee.data.file}") + private String devEmployeeDataFile; + + @Value("${default.localization.data.path}") + private String defaultLocalizationDataPath; + + @Value("${dev.localization.data.path}") + private String devLocalizationDataPath; } diff --git a/utilities/default-data-handler/src/main/java/org/egov/handler/service/DataHandlerService.java b/utilities/default-data-handler/src/main/java/org/egov/handler/service/DataHandlerService.java index 0d643c12..0848301c 100644 --- a/utilities/default-data-handler/src/main/java/org/egov/handler/service/DataHandlerService.java +++ b/utilities/default-data-handler/src/main/java/org/egov/handler/service/DataHandlerService.java @@ -93,7 +93,7 @@ public void createDefaultData(DefaultDataRequest defaultDataRequest) { // } } - public User createUserFromFile(TenantRequest tenantRequest) throws IOException { + public User createUserFromFile(TenantRequest tenantRequest, String userFilePath) throws IOException { String tenantCode = tenantRequest.getTenant().getCode(); StringBuilder uri = new StringBuilder(serviceConfig.getUserHost()) .append(serviceConfig.getUserContextPath()) @@ -102,8 +102,8 @@ public User createUserFromFile(TenantRequest tenantRequest) throws IOException { ArrayList userList = new ArrayList<>(); try { - log.info("Reading User.json for tenant: {}", tenantCode); - Resource resource = resourceLoader.getResource("classpath:User.json"); + log.info("Reading User file from {} for tenant: {}", userFilePath, tenantCode); + Resource resource = resourceLoader.getResource(userFilePath); String rawJson = StreamUtils.copyToString(resource.getInputStream(), StandardCharsets.UTF_8); rawJson = rawJson.replace("{tenantid}", tenantCode); @@ -151,13 +151,14 @@ public User createUserFromFile(TenantRequest tenantRequest) throws IOException { } - public void createEmployeeFromFile(RequestInfo requestInfo) throws IOException { + public void createEmployeeFromFile(RequestInfo requestInfo, String employeeFilePath) throws IOException { String uri = serviceConfig.getHrmsHost() + serviceConfig.getHrmsCreatePath(); String userUpdateUrl = serviceConfig.getUserHost() +serviceConfig.getUserContextPath() + serviceConfig.getUserUpdateEndpoint(); String tenantId = requestInfo.getUserInfo().getTenantId(); try { - Resource resource = resourceLoader.getResource("classpath:HRMS.json"); + log.info("Reading Employee file from {}", employeeFilePath); + Resource resource = resourceLoader.getResource(employeeFilePath); String rawJson = StreamUtils.copyToString(resource.getInputStream(), StandardCharsets.UTF_8); // Replace placeholders with tenant ID diff --git a/utilities/default-data-handler/src/main/java/org/egov/handler/util/LocalizationUtil.java b/utilities/default-data-handler/src/main/java/org/egov/handler/util/LocalizationUtil.java index 334cf3b1..af014379 100644 --- a/utilities/default-data-handler/src/main/java/org/egov/handler/util/LocalizationUtil.java +++ b/utilities/default-data-handler/src/main/java/org/egov/handler/util/LocalizationUtil.java @@ -50,9 +50,9 @@ public void createLocalizationData(DefaultLocalizationDataRequest defaultLocaliz } } - public void upsertLocalizationFromFile(DefaultDataRequest defaultDataRequest){ + public void upsertLocalizationFromFile(DefaultDataRequest defaultDataRequest, String localizationPath){ - List messageList = addMessagesFromFile(defaultDataRequest); + List messageList = addMessagesFromFile(defaultDataRequest, localizationPath); defaultDataRequest.getRequestInfo().getUserInfo().setId(128L); String tenantId = defaultDataRequest.getTargetTenantId(); @@ -88,14 +88,15 @@ public void upsertLocalizationFromFile(DefaultDataRequest defaultDataRequest){ } } - public List addMessagesFromFile(DefaultDataRequest defaultDataRequest){ + public List addMessagesFromFile(DefaultDataRequest defaultDataRequest, String localizationPath){ List messages = new ArrayList<>(); ObjectMapper objectMapper = new ObjectMapper(); try { PathMatchingResourcePatternResolver resolver = new PathMatchingResourcePatternResolver(); - Resource[] resources = resolver.getResources("classpath:localisations/*/*.json"); + Resource[] resources = resolver.getResources(localizationPath); + log.info("Loading localization from path: {}", localizationPath); for (Resource resource : resources) { try (InputStream inputStream = resource.getInputStream()) { diff --git a/utilities/default-data-handler/src/main/java/org/egov/handler/util/MdmsBulkLoader.java b/utilities/default-data-handler/src/main/java/org/egov/handler/util/MdmsBulkLoader.java index 92f97962..ee4f58cf 100644 --- a/utilities/default-data-handler/src/main/java/org/egov/handler/util/MdmsBulkLoader.java +++ b/utilities/default-data-handler/src/main/java/org/egov/handler/util/MdmsBulkLoader.java @@ -27,12 +27,12 @@ public class MdmsBulkLoader { private final ServiceConfiguration serviceConfig; - public void loadAllMdmsData(String tenantId, RequestInfo requestInfo) { + public void loadAllMdmsData(String tenantId, RequestInfo requestInfo, String mdmsDataPath) { try { PathMatchingResourcePatternResolver resolver = new PathMatchingResourcePatternResolver(); - // Match all files inside mdmsData/**.json - Resource[] resources = resolver.getResources("classpath:mdmsData/**/*.json"); + // Match all files inside the specified path + Resource[] resources = resolver.getResources(mdmsDataPath); for (Resource resource : resources) { String fileName = resource.getFilename(); diff --git a/utilities/default-data-handler/src/main/resources/HRMS-dev.json b/utilities/default-data-handler/src/main/resources/HRMS-dev.json new file mode 100644 index 00000000..2d76fd4a --- /dev/null +++ b/utilities/default-data-handler/src/main/resources/HRMS-dev.json @@ -0,0 +1,412 @@ +[ + { + "tenantId": "{tenantid}.citya", + "employeeStatus": "EMPLOYED", + "assignments": [ + { + "fromDate": 1725494400000, + "isCurrentAssignment": true, + "department": "DEPT_2", + "designation": "DESIG_04" + } + ], + "code": "ADMIN", + "dateOfAppointment": 1718841600000, + "employeeType": "PERMANENT", + "jurisdictions": [ + { + "hierarchy": "ADMIN", + "boundaryType": "City", + "boundary": "{tenantid}", + "tenantId": "{tenantid}.citya", + "roles": [ + { + "code": "LOC_ADMIN", + "name": "Localisation admin", + "tenantId": "{tenantid}.citya" + }, + { + "code": "MDMS_ADMIN", + "name": "MDMS ADMIN", + "tenantId": "{tenantid}.citya" + }, + { + "code": "HRMS_ADMIN", + "name": "HRMS Admin", + "tenantId": "{tenantid}.citya" + }, + { + "code": "LOC_ADMIN", + "name": "Localisation admin", + "tenantId": "{tenantid}" + }, + { + "code": "MDMS_ADMIN", + "name": "MDMS ADMIN", + "tenantId": "{tenantid}" + }, + { + "code": "HRMS_ADMIN", + "name": "HRMS Admin", + "tenantId": "{tenantid}" + }, + { + "code": "WORKFLOW_ADMIN", + "name": "Workflow Admin", + "tenantId": "{tenantid}" + } + ] + } + ], + "user": { + "name": "ADMIN User", + "gender": null, + "mobileNumber": "9999999904", + "active": true, + "type": "EMPLOYEE", + "roles": [ + { + "code": "LOC_ADMIN", + "name": "Localisation admin", + "tenantId": "{tenantid}.citya" + }, + { + "code": "MDMS_ADMIN", + "name": "MDMS ADMIN", + "tenantId": "{tenantid}.citya" + }, + { + "code": "HRMS_ADMIN", + "name": "HRMS Admin", + "tenantId": "{tenantid}.citya" + }, + { + "code": "LOC_ADMIN", + "name": "Localisation admin", + "tenantId": "{tenantid}" + }, + { + "code": "MDMS_ADMIN", + "name": "MDMS ADMIN", + "tenantId": "{tenantid}" + }, + { + "code": "HRMS_ADMIN", + "name": "HRMS Admin", + "tenantId": "{tenantid}" + }, + { + "code": "WORKFLOW_ADMIN", + "name": "Workflow Admin", + "tenantId": "{tenantid}" + } + ], + "password": "eGov@123", + "otpReference": "12345", + "tenantId": "{tenantid}.citya" + }, + "serviceHistory": [], + "education": [], + "tests": [] + }, + { + "tenantId": "{tenantid}.citya", + "employeeStatus": "EMPLOYED", + "assignments": [ + { + "fromDate": 1725494400000, + "isCurrentAssignment": true, + "department": "DEPT_1", + "designation": "DESIG_01" + } + ], + "code": "LME SL", + "dateOfAppointment": 1718841600000, + "employeeType": "PERMANENT", + "jurisdictions": [ + { + "hierarchy": "ADMIN", + "boundaryType": "City", + "boundary": "{tenantid}", + "tenantId": "{tenantid}.citya", + "roles": [ + { + "name": "PGR Last Mile Employee", + "code": "PGR_LME", + "tenantId": "{tenantid}.citya" + }, + { + "name": "PGR Viewer", + "code": "PGR_VIEWER", + "tenantId": "{tenantid}.citya" + } + ] + } + ], + "user": { + "name": "LME StreetLights", + "gender": null, + "mobileNumber": "9999999903", + "active": true, + "type": "EMPLOYEE", + "roles": [ + { + "name": "PGR Last Mile Employee", + "code": "PGR_LME", + "tenantId": "{tenantid}.citya" + }, + { + "name": "PGR Viewer", + "code": "PGR_VIEWER", + "tenantId": "{tenantid}.citya" + } + ], + "password": "eGov@123", + "otpReference": "12345", + "tenantId": "{tenantid}.citya" + }, + "serviceHistory": [], + "education": [], + "tests": [] + }, + { + "tenantId": "{tenantid}.citya", + "employeeStatus": "EMPLOYED", + "assignments": [ + { + "fromDate": 1725494400000, + "isCurrentAssignment": true, + "department": "DEPT_3", + "designation": "DESIG_01" + } + ], + "code": "LME GB", + "dateOfAppointment": 1718841600000, + "employeeType": "PERMANENT", + "jurisdictions": [ + { + "hierarchy": "ADMIN", + "boundaryType": "City", + "boundary": "{tenantid}", + "tenantId": "{tenantid}.citya", + "roles": [ + { + "name": "PGR Last Mile Employee", + "code": "PGR_LME", + "tenantId": "{tenantid}.citya" + }, + { + "name": "PGR Viewer", + "code": "PGR_VIEWER", + "tenantId": "{tenantid}.citya" + } + ] + } + ], + "user": { + "name": "LME Garbage", + "gender": null, + "mobileNumber": "9999999913", + "active": true, + "type": "EMPLOYEE", + "roles": [ + { + "name": "PGR Last Mile Employee", + "code": "PGR_LME", + "tenantId": "{tenantid}.citya" + }, + { + "name": "PGR Viewer", + "code": "PGR_VIEWER", + "tenantId": "{tenantid}.citya" + } + ], + "password": "eGov@123", + "otpReference": "12345", + "tenantId": "{tenantid}.citya" + }, + "serviceHistory": [], + "education": [], + "tests": [] + }, + { + "tenantId": "{tenantid}.citya", + "employeeStatus": "EMPLOYED", + "assignments": [ + { + "fromDate": 1725494400000, + "isCurrentAssignment": true, + "department": "DEPT_1", + "designation": "DESIG_01" + } + ], + "code": "CSR", + "dateOfAppointment": 1718841600000, + "employeeType": "PERMANENT", + "jurisdictions": [ + { + "hierarchy": "ADMIN", + "boundaryType": "City", + "boundary": "{tenantid}", + "tenantId": "{tenantid}.citya", + "roles": [ + { + "name": "Customer Support Representative", + "code": "CSR", + "tenantId": "{tenantid}.citya" + }, + { + "name": "PGR Viewer", + "code": "PGR_VIEWER", + "tenantId": "{tenantid}.citya" + } + ] + } + ], + "user": { + "name": "CSR USER", + "gender": null, + "mobileNumber": "9999999901", + "active": true, + "type": "EMPLOYEE", + "roles": [ + { + "name": "Customer Support Representative", + "code": "CSR", + "tenantId": "{tenantid}.citya" + }, + { + "name": "PGR Viewer", + "code": "PGR_VIEWER", + "tenantId": "{tenantid}.citya" + } + ], + "password": "eGov@123", + "otpReference": "12345", + "tenantId": "{tenantid}.citya" + }, + "serviceHistory": [], + "education": [], + "tests": [] + }, + { + "tenantId": "{tenantid}.citya", + "employeeStatus": "EMPLOYED", + "assignments": [ + { + "fromDate": 1725494400000, + "isCurrentAssignment": true, + "department": "DEPT_1", + "designation": "DESIG_01" + } + ], + "code": "GRO SL", + "dateOfAppointment": 1718841600000, + "employeeType": "PERMANENT", + "jurisdictions": [ + { + "hierarchy": "ADMIN", + "boundaryType": "City", + "boundary": "{tenantid}", + "tenantId": "{tenantid}.citya", + "roles": [ + { + "name": "Grievance Routing Officer", + "code": "GRO", + "tenantId": "{tenantid}.citya" + }, + { + "name": "PGR Viewer", + "code": "PGR_VIEWER", + "tenantId": "{tenantid}.citya" + } + ] + } + ], + "user": { + "name": "GRO StreetLights", + "gender": null, + "mobileNumber": "9999999902", + "active": true, + "type": "EMPLOYEE", + "roles": [ + { + "name": "Grievance Routing Officer", + "code": "GRO", + "tenantId": "{tenantid}.citya" + }, + { + "name": "PGR Viewer", + "code": "PGR_VIEWER", + "tenantId": "{tenantid}.citya" + } + ], + "password": "eGov@123", + "otpReference": "12345", + "tenantId": "{tenantid}.citya" + }, + "serviceHistory": [], + "education": [], + "tests": [] + }, + { + "tenantId": "{tenantid}.citya", + "employeeStatus": "EMPLOYED", + "assignments": [ + { + "fromDate": 1725494400000, + "isCurrentAssignment": true, + "department": "DEPT_3", + "designation": "DESIG_01" + } + ], + "code": "GRO GB", + "dateOfAppointment": 1718841600000, + "employeeType": "PERMANENT", + "jurisdictions": [ + { + "hierarchy": "ADMIN", + "boundaryType": "City", + "boundary": "{tenantid}", + "tenantId": "{tenantid}.citya", + "roles": [ + { + "name": "Grievance Routing Officer", + "code": "GRO", + "tenantId": "{tenantid}.citya" + }, + { + "name": "PGR Viewer", + "code": "PGR_VIEWER", + "tenantId": "{tenantid}.citya" + } + ] + } + ], + "user": { + "name": "GRO Garbage", + "gender": null, + "mobileNumber": "9999999912", + "active": true, + "type": "EMPLOYEE", + "roles": [ + { + "name": "Grievance Routing Officer", + "code": "GRO", + "tenantId": "{tenantid}.citya" + }, + { + "name": "PGR Viewer", + "code": "PGR_VIEWER", + "tenantId": "{tenantid}.citya" + } + ], + "password": "eGov@123", + "otpReference": "12345", + "tenantId": "{tenantid}.citya" + }, + "serviceHistory": [], + "education": [], + "tests": [] + } +] diff --git a/utilities/default-data-handler/src/main/resources/HRMS.json b/utilities/default-data-handler/src/main/resources/HRMS.json index 53a26c77..454dbe39 100644 --- a/utilities/default-data-handler/src/main/resources/HRMS.json +++ b/utilities/default-data-handler/src/main/resources/HRMS.json @@ -108,305 +108,5 @@ "serviceHistory": [], "education": [], "tests": [] - }, - { - "tenantId": "{tenantid}.citya", - "employeeStatus": "EMPLOYED", - "assignments": [ - { - "fromDate": 1725494400000, - "isCurrentAssignment": true, - "department": "DEPT_1", - "designation": "DESIG_01" - } - ], - "code": "LME SL", - "dateOfAppointment": 1718841600000, - "employeeType": "PERMANENT", - "jurisdictions": [ - { - "hierarchy": "ADMIN", - "boundaryType": "City", - "boundary": "{tenantid}", - "tenantId": "{tenantid}.citya", - "roles": [ - { - "name": "PGR Last Mile Employee", - "code": "PGR_LME", - "tenantId": "{tenantid}.citya" - }, - { - "name": "PGR Viewer", - "code": "PGR_VIEWER", - "tenantId": "{tenantid}.citya" - } - ] - } - ], - "user": { - "name": "LME StreetLights", - "gender": null, - "mobileNumber": "9999999903", - "active": true, - "type": "EMPLOYEE", - "roles": [ - { - "name": "PGR Last Mile Employee", - "code": "PGR_LME", - "tenantId": "{tenantid}.citya" - }, - { - "name": "PGR Viewer", - "code": "PGR_VIEWER", - "tenantId": "{tenantid}.citya" - } - ], - "password": "eGov@123", - "otpReference": "12345", - "tenantId": "{tenantid}.citya" - }, - "serviceHistory": [], - "education": [], - "tests": [] - }, - { - "tenantId": "{tenantid}.citya", - "employeeStatus": "EMPLOYED", - "assignments": [ - { - "fromDate": 1725494400000, - "isCurrentAssignment": true, - "department": "DEPT_3", - "designation": "DESIG_01" - } - ], - "code": "LME GB", - "dateOfAppointment": 1718841600000, - "employeeType": "PERMANENT", - "jurisdictions": [ - { - "hierarchy": "ADMIN", - "boundaryType": "City", - "boundary": "{tenantid}", - "tenantId": "{tenantid}.citya", - "roles": [ - { - "name": "PGR Last Mile Employee", - "code": "PGR_LME", - "tenantId": "{tenantid}.citya" - }, - { - "name": "PGR Viewer", - "code": "PGR_VIEWER", - "tenantId": "{tenantid}.citya" - } - ] - } - ], - "user": { - "name": "LME Garbage", - "gender": null, - "mobileNumber": "9999999913", - "active": true, - "type": "EMPLOYEE", - "roles": [ - { - "name": "PGR Last Mile Employee", - "code": "PGR_LME", - "tenantId": "{tenantid}.citya" - }, - { - "name": "PGR Viewer", - "code": "PGR_VIEWER", - "tenantId": "{tenantid}.citya" - } - ], - "password": "eGov@123", - "otpReference": "12345", - "tenantId": "{tenantid}.citya" - }, - "serviceHistory": [], - "education": [], - "tests": [] - }, - { - "tenantId": "{tenantid}.citya", - "employeeStatus": "EMPLOYED", - "assignments": [ - { - "fromDate": 1725494400000, - "isCurrentAssignment": true, - "department": "DEPT_1", - "designation": "DESIG_01" - } - ], - "code": "CSR", - "dateOfAppointment": 1718841600000, - "employeeType": "PERMANENT", - "jurisdictions": [ - { - "hierarchy": "ADMIN", - "boundaryType": "City", - "boundary": "{tenantid}", - "tenantId": "{tenantid}.citya", - "roles": [ - { - "name": "Customer Support Representative", - "code": "CSR", - "tenantId": "{tenantid}.citya" - }, - { - "name": "PGR Viewer", - "code": "PGR_VIEWER", - "tenantId": "{tenantid}.citya" - } - ] - } - ], - "user": { - "name": "CSR USER", - "gender": null, - "mobileNumber": "9999999901", - "active": true, - "type": "EMPLOYEE", - "roles": [ - { - "name": "Customer Support Representative", - "code": "CSR", - "tenantId": "{tenantid}.citya" - }, - { - "name": "PGR Viewer", - "code": "PGR_VIEWER", - "tenantId": "{tenantid}.citya" - } - ], - "password": "eGov@123", - "otpReference": "12345", - "tenantId": "{tenantid}.citya" - }, - "serviceHistory": [], - "education": [], - "tests": [] - }, - { - "tenantId": "{tenantid}.citya", - "employeeStatus": "EMPLOYED", - "assignments": [ - { - "fromDate": 1725494400000, - "isCurrentAssignment": true, - "department": "DEPT_1", - "designation": "DESIG_01" - } - ], - "code": "GRO SL", - "dateOfAppointment": 1718841600000, - "employeeType": "PERMANENT", - "jurisdictions": [ - { - "hierarchy": "ADMIN", - "boundaryType": "City", - "boundary": "{tenantid}", - "tenantId": "{tenantid}.citya", - "roles": [ - { - "name": "Grievance Routing Officer", - "code": "GRO", - "tenantId": "{tenantid}.citya" - }, - { - "name": "PGR Viewer", - "code": "PGR_VIEWER", - "tenantId": "{tenantid}.citya" - } - ] - } - ], - "user": { - "name": "GRO StreetLights", - "gender": null, - "mobileNumber": "9999999902", - "active": true, - "type": "EMPLOYEE", - "roles": [ - { - "name": "Grievance Routing Officer", - "code": "GRO", - "tenantId": "{tenantid}.citya" - }, - { - "name": "PGR Viewer", - "code": "PGR_VIEWER", - "tenantId": "{tenantid}.citya" - } - ], - "password": "eGov@123", - "otpReference": "12345", - "tenantId": "{tenantid}.citya" - }, - "serviceHistory": [], - "education": [], - "tests": [] - }, - { - "tenantId": "{tenantid}.citya", - "employeeStatus": "EMPLOYED", - "assignments": [ - { - "fromDate": 1725494400000, - "isCurrentAssignment": true, - "department": "DEPT_3", - "designation": "DESIG_01" - } - ], - "code": "GRO GB", - "dateOfAppointment": 1718841600000, - "employeeType": "PERMANENT", - "jurisdictions": [ - { - "hierarchy": "ADMIN", - "boundaryType": "City", - "boundary": "{tenantid}", - "tenantId": "{tenantid}.citya", - "roles": [ - { - "name": "Grievance Routing Officer", - "code": "GRO", - "tenantId": "{tenantid}.citya" - }, - { - "name": "PGR Viewer", - "code": "PGR_VIEWER", - "tenantId": "{tenantid}.citya" - } - ] - } - ], - "user": { - "name": "GRO Garbage", - "gender": null, - "mobileNumber": "9999999912", - "active": true, - "type": "EMPLOYEE", - "roles": [ - { - "name": "Grievance Routing Officer", - "code": "GRO", - "tenantId": "{tenantid}.citya" - }, - { - "name": "PGR Viewer", - "code": "PGR_VIEWER", - "tenantId": "{tenantid}.citya" - } - ], - "password": "eGov@123", - "otpReference": "12345", - "tenantId": "{tenantid}.citya" - }, - "serviceHistory": [], - "education": [], - "tests": [] } ] diff --git a/utilities/default-data-handler/src/main/resources/User-dev.json b/utilities/default-data-handler/src/main/resources/User-dev.json new file mode 100644 index 00000000..9620679c --- /dev/null +++ b/utilities/default-data-handler/src/main/resources/User-dev.json @@ -0,0 +1,43 @@ +[ + { + "userName": "6555555555", + "name": "citizen", + "gender": null, + "mobileNumber": "6555555555", + "active": true, + "type": "CITIZEN", + "roles": [ + { + "name": "CITIZEN", + "code": "CITIZEN", + "tenantId": "{tenantid}" + } + ], + "password": "eGov@123", + "otpReference": "12345", + "tenantId": "{tenantid}" + }, + { + "userName": "ANONYMOUS", + "name": "demo111", + "gender": null, + "mobileNumber": "6307817430", + "active": true, + "type": "SYSTEM", + "roles": [ + { + "name": "Anonymous User", + "code": "ANONYMOUS", + "tenantId": "{tenantid}" + }, + { + "name": "Internal Microservice Role", + "code": "INTERNAL_MICROSERVICE_ROLE", + "tenantId": "{tenantid}" + } + ], + "password": "eGov@123", + "otpReference": "12345", + "tenantId": "{tenantid}" + } +] \ No newline at end of file diff --git a/utilities/default-data-handler/src/main/resources/User.json b/utilities/default-data-handler/src/main/resources/User.json index 9620679c..859513e6 100644 --- a/utilities/default-data-handler/src/main/resources/User.json +++ b/utilities/default-data-handler/src/main/resources/User.json @@ -16,28 +16,5 @@ "password": "eGov@123", "otpReference": "12345", "tenantId": "{tenantid}" - }, - { - "userName": "ANONYMOUS", - "name": "demo111", - "gender": null, - "mobileNumber": "6307817430", - "active": true, - "type": "SYSTEM", - "roles": [ - { - "name": "Anonymous User", - "code": "ANONYMOUS", - "tenantId": "{tenantid}" - }, - { - "name": "Internal Microservice Role", - "code": "INTERNAL_MICROSERVICE_ROLE", - "tenantId": "{tenantid}" - } - ], - "password": "eGov@123", - "otpReference": "12345", - "tenantId": "{tenantid}" } ] \ No newline at end of file diff --git a/utilities/default-data-handler/src/main/resources/application.properties b/utilities/default-data-handler/src/main/resources/application.properties index 0a113443..425da0ae 100644 --- a/utilities/default-data-handler/src/main/resources/application.properties +++ b/utilities/default-data-handler/src/main/resources/application.properties @@ -84,8 +84,20 @@ egov.tenant.management.config.search.path=/tenant/config/_search default.tenant.id=statea -# Flag to enable/disable loading user, employee, and workflow config data -default.data.load.user.employee.enabled=true +# Flag to enable/disable loading user, employee, boundary, localization, and workflow config data +dev.enabled=true + +# Default data paths (always loaded) +default.mdms.data.path=classpath:mdmsData/**/*.json +default.user.data.file=classpath:User.json +default.employee.data.file=classpath:HRMS.json +default.localization.data.path=classpath:localisations/*/*.json + +# Dev data paths (loaded only when dev.enabled=true) +dev.mdms.data.path=classpath:mdmsData-dev/**/*.json +dev.user.data.file=classpath:User-dev.json +dev.employee.data.file=classpath:HRMS-dev.json +dev.localization.data.path=classpath:localisations-dev/*/*.json # Workflow Configuration #egov.workflow.host=https://pgr-demo.digit.org diff --git a/utilities/default-data-handler/src/main/resources/localisations-dev/en_IN/egov-hrms.json b/utilities/default-data-handler/src/main/resources/localisations-dev/en_IN/egov-hrms.json new file mode 100644 index 00000000..84b114f2 --- /dev/null +++ b/utilities/default-data-handler/src/main/resources/localisations-dev/en_IN/egov-hrms.json @@ -0,0 +1,14 @@ +[ + { + "code": "hrms.employee.create.notification", + "message": "Hi $employeename, Welcome to mSeva. Your profile has been successfully set-up : Username - $username Password - $password, Thank you.", + "module": "egov-hrms", + "locale": "en_IN" + }, + { + "code": "hrms.employee.reactivation.notification", + "message": "Dear ,\nYour profile with employee Username has been activated on .", + "module": "egov-hrms", + "locale": "en_IN" + } +] \ No newline at end of file diff --git a/utilities/default-data-handler/src/main/resources/localisations-dev/en_IN/egov-user.json b/utilities/default-data-handler/src/main/resources/localisations-dev/en_IN/egov-user.json new file mode 100644 index 00000000..5c7ace22 --- /dev/null +++ b/utilities/default-data-handler/src/main/resources/localisations-dev/en_IN/egov-user.json @@ -0,0 +1,20 @@ +[ + { + "code": "sms.login.otp.msg", + "message": "Dear Citizen, Your Login OTP is %s.\n\nEGOVS", + "module": "egov-user", + "locale": "en_IN" + }, + { + "code": "sms.pwd.reset.otp.msg", + "message": "Dear Citizen, Your OTP for recovering password is %s.\n\nEGOVS", + "module": "egov-user", + "locale": "en_IN" + }, + { + "code": "sms.register.otp.msg", + "message": "Dear Citizen, Your OTP to complete your mSeva Registration is %s.\n\nEGOVS", + "module": "egov-user", + "locale": "en_IN" + } +] \ No newline at end of file diff --git a/utilities/default-data-handler/src/main/resources/localisations-dev/en_IN/rainmaker-common.json b/utilities/default-data-handler/src/main/resources/localisations-dev/en_IN/rainmaker-common.json new file mode 100644 index 00000000..7717d2d2 --- /dev/null +++ b/utilities/default-data-handler/src/main/resources/localisations-dev/en_IN/rainmaker-common.json @@ -0,0 +1,81302 @@ +[ + { + "code": " ACTION_TEST_UC", + "message": "m-Collect", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": " BILLINGSERVICE_BUSINESSSERVICE_OM_WATER_CONNECTION/DISCONNECTION_FEES", + "message": "Water connection/ disconnection fees", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": " ERR_WS_PROP_STATUS_INWORKFLOW", + "message": "Property inworkflow", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": " PQM_PLANT_ANGUL_FSTP ", + "message": "Angul FSTP", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": " PQM_PLANT_PURI_FSTP ", + "message": "Puri FSTP", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "AADHAAR_IS_REQUIRED", + "message": "Aadhaar number is required", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ABG_ABG_GENERATE_NEW_BILL", + "message": "Generate New Bill ", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ABG_ABG_PAY", + "message": "Pay", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ABG_ADVT.Gas_Balloon_Advertisement_CONSUMER_CODE_LABEL", + "message": "Consumer Code", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ABG_ADVT.Hoardings_CONSUMER_CODE_LABEL", + "message": "Consumer Code", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ABG_ADVT.Light_Wala_Board_CONSUMER_CODE_LABEL", + "message": "Consumer Code", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ABG_ADVT.Light_Wala_Board_CONSUMER_CODE_LABEL ", + "message": "Consumer Code", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ABG_ADVT.Unipolls_CONSUMER_CODE_LABEL", + "message": "Consumer No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ABG_ADVT.Wall_Paint_Advertisement_CONSUMER_CODE_LABEL", + "message": "Consumer Code", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ABG_BACK", + "message": "back", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ABG_BILLCANCELLATION_FAILED__MESSAGE_SUB_HEAD", + "message": " ", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ABG_BILLCANCELLATION_SUCESS_MESSAGE_HEAD", + "message": "Bill Cancellation Sucessfull", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ABG_CANCEL_BILL", + "message": "Cancel bill", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ABG_COLLECT", + "message": "Collect", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ABG_COMMON_TABLE_COL_ACTION", + "message": "Action", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ABG_COMMON_TABLE_COL_BILL_AMOUNT", + "message": "Bill Amount (Rs)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ABG_COMMON_TABLE_COL_BILL_DATE", + "message": "Bill Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ABG_COMMON_TABLE_COL_BILL_EXP_DATE:", + "message": "Bill Due Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ABG_COMMON_TABLE_COL_BILL_NO", + "message": "Bill No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ABG_COMMON_TABLE_COL_CONSUMER_NAME", + "message": "Consumer Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ABG_COMMON_TABLE_COL_STATUS", + "message": "Status", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ABG_DOWNLOAD_RECEIPT", + "message": "Download Receipt", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ABG_GENERATE_NEW_BILL", + "message": "Generate New Bill", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ABG_PAY", + "message": "Pay", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ABG_PT_CONSUMER_CODE_LABEL", + "message": "Consumer code", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ABG_PT_CONSUMER_CODE_LABEL_PLACEHOLDER", + "message": "Consumer Code", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ABG_RESET_BUTTON", + "message": "Reset", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ABG_RETRY", + "message": "Retry", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ABG_SEARCH_BILL_COMMON_HEADER", + "message": "Search Bill", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ABG_SW_CONSUMER_CODE_LABEL", + "message": "Consumer No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ABG_TX.Electricity_Chungi_CONSUMER_CODE_LABEL", + "message": "Consumer Code", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ABG_TX.Electricity_Chungi_CONSUMER_CODE_LABEL ", + "message": "Consumer Code", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ABG_TX.No_Dues_Certificate_CONSUMER_CODE_LABEL", + "message": "Consumer No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ABG_TX.TS1_copy_register_for_old_survey_CONSUMER_CODE_LABEL", + "message": "Consumer Code", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ABG_TX.Transfer_Property_Fees_CONSUMER_CODE_LABEL", + "message": "Consumer Code", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ABG_WS_CONSUMER_CODE_LABEL", + "message": "Consumer No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ABG__CONSUMER_CODE_LABEL", + "message": "Consumer Code", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_AE_CREATOR", + "message": "Abstract Estimate Creator", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_AIRPORT_AUTHORITY_APPROVER", + "message": "Airport Authority", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_ANONYMOUS", + "message": "Anonymous User", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_ANONYMUS", + "message": "Anonymus", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_ASSESTCREATOR", + "message": "AssetCreator", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_ASSETCREATOR", + "message": "AssetCreator", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_ASSETREPORTVIEWER", + "message": "AssetReportViewer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_ASSET_ADMINISTRATOR", + "message": "Asset Administrator", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_AUTO_ESCALATE", + "message": "Auto Escalate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_AssetCreator", + "message": "Asset Creator", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_AssetReportViewer", + "message": "Asset Report Viewer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_BANK_COLL_OPERATOR", + "message": "Bank Collection Operator", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_BILL_ACCOUNTANT", + "message": "Bill Accountant", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_BILL_APPROVER", + "message": "Bill Approver", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_BILL_CREATOR", + "message": "Bill Creator", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_BILL_VERIFIER", + "message": "Bill Verifier", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_BILL_VIEWER", + "message": "Bill Viewer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_BIRTH_APPLICATION_CREATOR", + "message": "Birth Application Creator", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_BIRTH_APPLICATION_EDITOR", + "message": "Birth Application Editor", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_BIRTH_APPLICATION_VIEWER", + "message": "Birth Application Viewer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_BIRTH_REPORT_VIEWER", + "message": "Birth Report Viewer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_BND_CEMP", + "message": "Birth & Death Counter Employee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_BPAREG_APPROVER", + "message": "BPAREG Approver", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_BPAREG_DOC_VERIFIER", + "message": "BPAREG doc verifier", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_BPAREG_EMPLOYEE", + "message": "BPAREG Employee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_BPA_APPROVER", + "message": "BPA Services Approver", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_BPA_ARCHITECT", + "message": "BPA Architect", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_BPA_BUILDER", + "message": "BPA Builder", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_BPA_ENGINEER", + "message": "BPA Engineer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_BPA_FIELD_INSPECTOR", + "message": "BPA Field Inspector", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_BPA_NOC_VERIFIER", + "message": "BPA NOC Verifier", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_BPA_STRUCTURALENGINEER", + "message": "BPA Structural Engineer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_BPA_SUPERVISOR", + "message": "BPA Supervisor", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_BPA_TOWNPLANNER", + "message": "BPA Town Planner", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_BPA_VERIFIER", + "message": "BPA Services verifier", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_CBO_ADMIN", + "message": "CBO Admin", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_CEMP", + "message": "Counter Employee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_CFC", + "message": "CFC", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_CITIZEN", + "message": "Citizen", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_CITY_ADMIN", + "message": "City Admin", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_COLL_OPERATOR", + "message": "Collection Operator", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_COLL_RECEIPT_CREATOR", + "message": "Collections Receipt Creator", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_COLL_REMIT_TO_BANK", + "message": "Collections Remitter", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_COLL_REP_VIEW", + "message": "Collection Report Viewer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_COMMISSIONER", + "message": "Commissioner", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_COMMON_EMPLOYEE", + "message": "Common Role for Employees", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_CONTRACTOR_ADVANCE_CREATOR", + "message": "Contractor Advance creator", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_CR_PT", + "message": "Property Tax Receipt Cancellator", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_CR_WS", + "message": "CR WS", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_CSC_COLL_OPERATOR", + "message": "CSC Collection Operator", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_CSR", + "message": "Customer Support Representative", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_DASHBOARD_REPORT_VIEWER", + "message": "Dashboard Report Viewer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_DATAENTRY_ADMIN", + "message": "DATA ENTRY ADMIN", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_DEATH_APPLICATION_CREATOR", + "message": "Death Application Creator", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_DEATH_APPLICATION_EDITOR", + "message": "Death Application Editor", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_DEATH_APPLICATION_VIEWER", + "message": "Death Application Viewer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_DEATH_REPORT_VIEWER", + "message": "Death Report Viewer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_DE_CREATOR", + "message": "Detailed Estimate Creator", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_DGRO", + "message": "Department Grievance Routing Officer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_DIRECTORTESTCODE112234324", + "message": "director123456", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_EGF_ADMINISTRATOR", + "message": "Finance Adminsitrator", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_EGF_BILL_APPROVER", + "message": "EGF Bill Approver", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_EGF_BILL_CREATOR", + "message": "EGF Bill Creator", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_EGF_MASTER_ADMIN", + "message": "Finance Master Admin", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_EGF_PAYMENT_APPROVER", + "message": "Finance Payment Approver", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_EGF_PAYMENT_CREATOR", + "message": "Finance Payment Creator", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_EGF_REPORT_VIEW", + "message": "Finance Report View", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_EGF_VOUCHER_APPROVER", + "message": "Finance Voucher Approver", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_EGF_VOUCHER_CREATOR", + "message": "Finance Voucher Creator", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_EMPLOYEE", + "message": "Employee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_EMPLOYEE_ADMIN", + "message": "EMPLOYEE ADMINr", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_EMPLOYEE_COMMON", + "message": "Employee Common", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_EMPLOYEE_FINANCE", + "message": "Employee Finance", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_ESTIMATE_APPROVER", + "message": "Estimate Approver", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_ESTIMATE_CREATOR", + "message": "Estimate Creator", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_ESTIMATE_VERIFIER", + "message": "Estimate Verifier", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_ESTIMATE_VIEWER", + "message": "Estimate Viewer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_FEMP", + "message": "Field Employee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_FINANCIAL ADMINISTRATOR", + "message": "Financial Administrator", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_FINANCIAL_ADMINISTRATOR", + "message": "Finance Administrator", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_FIRENOC_REPORT_VIEWER", + "message": "FireNOC Report Viewer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_FIRE_NOC_APPROVER", + "message": "FireNoc Approver", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_FSM_ADMIN", + "message": "FSM Administrator", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_FSM_COLLECTOR", + "message": "FSM Payment Collector", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_FSM_CREATOR_EMP", + "message": "FSM Employee Application Creator", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_FSM_DASHBOARD_VIEWER", + "message": "FSM Employee Dashboard Viewer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_FSM_DRIVER", + "message": "FSM Driver", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_FSM_DSO", + "message": "FSM Desluding Operator", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_FSM_EDITOR_EMP", + "message": "FSM Employee Application Editor", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_FSM_EMP_FSTPO", + "message": "FSM FSTP Opperator", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_FSM_REPORT_VIEWER", + "message": "FSM Employee Report Viewer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_FSM_VIEW_EMP", + "message": "FSM Employee Application Viewer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_Financial Administrator", + "message": "Financial Administrator", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_GA", + "message": "Grivance Administrator", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_GIS_USER", + "message": "GIS USER", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_GO", + "message": "Grievance Officer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_GRO", + "message": "Grievance Routing Officer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_HRMS_ADMIN", + "message": "HRMS ADMIN", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_INTERNAL_MICROSERVICE_ROLE", + "message": "Internal Microservice", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_JUNIOR_ENGINEER", + "message": "Junior Engineer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_LEGACY_RECEIPT_CREATOR", + "message": "Legacy Receipt Creator", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_LOA_CREATOR", + "message": "LOA Creator", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_LOCALIZATION_UPLOADER", + "message": "Localization uploader", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_MB_CREATOR", + "message": "MB creator", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_MUKTA_ADMIN", + "message": "MUKTA Admin", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_MUNICIPAL_ENGINEER", + "message": "Municipal Engineer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_MUSTER_ROLL_APPROVER", + "message": "Muster Roll Approver", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_MUSTER_ROLL_VERIFIER", + "message": "Muster Roll Verifier", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_NATADMIN", + "message": "National Admin", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_NOC_APPROVER", + "message": "NoC counter Approver", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_NOC_CEMP", + "message": "NoC counter employee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_NOC_DOC_VERIFIER", + "message": "NoC Doc Verifier", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_NOC_FIELD_INSPECTOR", + "message": "NoC Field Inpector", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_OBPS_REPORT_VIEWER", + "message": "OBPS Report Viewer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_OFFICER_IN_CHARGE", + "message": "Officer in Charge", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_ORG_ADMIN", + "message": "Organisation Admin", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_ORG_STAFF", + "message": "Organisation Staff", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_ORG_VIEWER", + "message": "Organization Viewer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_PGR-ADMIN", + "message": "PGR Administrator", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_PGR_ADMIN", + "message": "CCRS Administrator", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_PGR_LME", + "message": "CCRS Last Mile Employee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_PGR_VIEWER", + "message": "Complaint Viewer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_PROJECT_CREATOR", + "message": "Project Creator", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_PROJECT_VIEWER", + "message": "Project Viewer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_PROPERTY_APPROVER", + "message": "Property Approver", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_PROPERTY_VERIFIER", + "message": "Property Verifier", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_PTADMIN", + "message": "ULB Administrator", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_PTCEMP", + "message": "PT Counter Employee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_PTFEMP", + "message": "PT Field Employee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_PTIS_ADMIN", + "message": "PTIS Admin", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_PTIS_MASTER", + "message": "PTIS Master", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_PTSTADMIN", + "message": "PT State Administrator", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_PTULBADMIN", + "message": "PT ULB Adminsitrator", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_PT_APPROVER", + "message": "PT Counter Approver", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_PT_COLLECTION_EMP", + "message": "PT Collection emp", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_PT_DOC_VERIFIER", + "message": "PT Doc Verifier", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_PT_FIELD_INSPECTOR", + "message": "PT Field Inpector", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_PT_REPORT_VIEWER", + "message": "PT Report Viewer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_PUNJAB_EODB", + "message": "EODB search user", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_QA_AUTOMATION", + "message": "QA Automation", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_RO", + "message": "Redressal Officer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_SEWERAGE_REPORT_VIEWER", + "message": "Sewerage Report Viewer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_STADMIN", + "message": "State Administrator", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_STORE_INCHARGE", + "message": "Store Incharge", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_SUPERUSER", + "message": "Super User", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_SUPERVISOR", + "message": "Supervisor", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_SYSTEM", + "message": "System", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_SYS_INTEGRATOR_FINANCE", + "message": "System Integrator Finance", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_SYS_INTEGRATOR_WATER_SEW", + "message": "System Integrator W&S", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_TECHNICAL_SANCTIONER", + "message": "Technical Sanctioner", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_TESTONECODE112234324", + "message": "test3test2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_TESTTWOCODE11234354", + "message": "test4test1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_TL_ADMIN", + "message": "TL Admin", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_TL_APPROVER", + "message": "TL Approver", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_TL_CEMP", + "message": "TL Counter Employee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_TL_CREATOR", + "message": "TL Creator", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_TL_DOC_VERIFIER", + "message": "Trade License Document verifier", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_TL_FIELD_INSPECTOR", + "message": "Trade License field inspector", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_TL_REPORT_VIEWER", + "message": "TL Report Viewer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_UC_EMP", + "message": "Universal Collection Employee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_ULBADMIN", + "message": "ULB Administrator", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_ULB_OPERATOR", + "message": "ULB Operator", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_WATER_REPORT_VIEWER", + "message": "Water Report Viewer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_WORKS_ADMINISTRATOR", + "message": "Works Administrator", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_WORKS_APPROVER", + "message": "Works Approver", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_WORKS_BILL_CREATOR", + "message": "Works Bill Creator", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_WORKS_FINANCIAL_APPROVER", + "message": "Financials Approver", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_WORKS_MASTER_CREATOR", + "message": "Works Master creator", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_WORK_ORDER_APPROVER", + "message": "Work Order Approver", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_WORK_ORDER_CREATOR", + "message": "Work Order Creator", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_WORK_ORDER_VERIFIER", + "message": "Work Order Verifier", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_WORK_ORDER_VIEWER", + "message": "Work Order Viewer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_WO_CREATOR", + "message": "WO Creator", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCOUNT_HOLDER_NAME", + "message": "Account Holder’s name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCOUNT_HOLDER_NAME_IS_REQUIRED", + "message": "Account holder's name is required", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCOUNT_NUMBER_IS_REQUIRED", + "message": "Account number is required", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACCOUNT_TYPE_IS_REQUIRED", + "message": "Account type is required", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_", + "message": " ", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_0HOME", + "message": "Home", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_11ESTIMATETEMPLATE", + "message": "Estimate Template", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_1PROJECT", + "message": "Projects", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_2ESTIMATE", + "message": "Estimates", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_3CONTRACTS", + "message": "Work Orders", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_3MEASUREMENT", + "message": "Measurement", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_4ATTENDENCEMGMT", + "message": "Muster Rolls", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_5BILLS", + "message": "Billing", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_5MEASUREMENT", + "message": "Measurement", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_5PAYMENT", + "message": "Payment Advice", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_6DASHBOARD", + "message": "Dashboard", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_7MASTERS", + "message": "Organization", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_8WAGESEEKER", + "message": "WageSeeker", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_9HRMS", + "message": "HRMS", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_9MASTERDATA", + "message": "Master Data", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_9MDMS", + "message": "Manage Master Data", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_9TEST", + "message": "TEST", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_9WORKBENCH", + "message": "Schedule of Rates", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_ABOUT_DASHBOARD", + "message": "About the Dashboard", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_ACCOUNTING_ENTITY", + "message": "Accounting Entity", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_ACCOUNTING_RECORDS", + "message": "Accounting Records", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_ACCOUNT_CHEQUES", + "message": "Account Cheques", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_ACTIONS_TEST", + "message": "Action Test", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_ADD_RELEASE", + "message": "Add/Release", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_ADMINISTRATION", + "message": "Administration", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_ALL_COMPLAINTS", + "message": "All Complaints", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_APPLICATION", + "message": "Application", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_APPLICATION_STATUS", + "message": "Application Status", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_APPLICATION_STATUS_REPORT", + "message": "Appliction status report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_APPLY", + "message": "Apply", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_APPLY_NEW_CONNECTION", + "message": "Apply for New Connection", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_APPLY_TL", + "message": "Apply for TL", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_APPROVE_UPLOADED_BUDGET", + "message": "Approve Uploaded Budget", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_APPROVE_UPLOAD_BUDGET", + "message": "Approve Uploaded Budget", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_ASSESS_NEW_PROPERTY", + "message": "Assess New Property", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_ATTENDENCEMGMT", + "message": "Attendance Management", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_ATTENDENCEMGMT_INBOX", + "message": "Attendance Management Inbox", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_ATTENDENCEMGMT_SEARCH", + "message": "Attendance Management Search", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_AUTO_RECONCILE-_STATEMENT_UPLOAD", + "message": "Reconcile Uploaded Statement", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_AUTO_RECONCILE__STATEMENT_UPLOAD", + "message": "Reconcile Uploaded Statement", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_BALANCE_SHEET", + "message": "Balance Sheet", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_BANK", + "message": "Bank", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_BANK_ADVICE_REPORT_FOR_RTGS_BANK_PAYMENT", + "message": "Bank Advice Report for RTGS Bank Payment", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_BANK_BOOK", + "message": "Bank Book", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_BANK_RECONCILIATION", + "message": "Bank Reconciliation", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_BANK_REMITTANCE", + "message": "Bank Remittance", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_BANK_RTGS_ASSIGNMENT", + "message": "RTGS Assignment", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_BANK_STATEMENT_ENTRIES___NOT_IN_BANK_BOOK", + "message": "Bank Statement Entries - Not In Bank Book", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_BANK_TO_BANK_TRANSFER", + "message": "Bank to Bank Transfer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_BILLAMENDMENT", + "message": "Bill Amendment", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_BILLGENIE", + "message": "Bill Genie", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_BILLS", + "message": "Bills accounting", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_BILLS_ACCOUNTING", + "message": "Bills Accounting", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_BILL_CREATE", + "message": "Create Bill", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_BILL_GENERATION", + "message": "BillGenie", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_BILL_INBOX", + "message": "Bills Inbox", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_BILL_PAYMENT", + "message": "Bill Payment", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_BILL_SEARCH", + "message": "Search Bills", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_BILL_VIEW", + "message": "View Bills", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_BIRTH", + "message": "Birth Certificate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_BIRTH_&_DEATH", + "message": "Birth & Death", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_BIRTH_AND_DEATH", + "message": "Birth and Death", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_BIRTH_CERTIFICATE", + "message": "Birth Certificate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_BIRTH_NEW_REGISTRATION", + "message": "Birth Registration", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_BIRTH_RECORDS_COUNT", + "message": "Birth Records Count", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_BIRTH_RECORDS_COUNT_CBLEVEL", + "message": "Birth Records Count by City", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_BIRTH_SEARCH_CERTIFICATE", + "message": "Search Birth Certificate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_BND_PAID_AND_DOWNLOADED_RECORDS", + "message": "Birth & Death Certificate Payment Records", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_BPASTAKEHOLDER", + "message": "BPA Stakeholder Registration", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_BPA_STAKEHOLDER_HOME", + "message": "Building Plan Approval", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_BPA_STAKEHOLDER_REGISTRATION", + "message": "BPA Stakeholder Registration", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_BPA_STAKE_HOLDER_HOME", + "message": "Building Plan Approval", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_BPA_STAKE_HOLDER_SEARCH", + "message": "Search", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_BUDGETING", + "message": "Budgeting", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_BUDGET_ADDITIONAL_APPROPRIATION", + "message": "Budget Additional Appropriation", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_BUDGET_ADDITION_APPROPRIATION", + "message": "Budget Addition Appropriation", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_BUDGET_CONTROL_TYPE", + "message": "Budget Control Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_BUDGET_DEFINITION", + "message": "Budget Definition", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_BUDGET_GROUP", + "message": "Budget Group", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_BUDGET_REPORTS", + "message": "Budget Reports", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_BUDGET_UPLOAD_REPORT", + "message": "Budget Upload Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_BUDGET_VARIANCE_REPORT", + "message": "Budget Variance Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_BUDGET_VARIENCE_REPORT", + "message": "Budget Variance Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_BUDGET_WATCH_REGISTER", + "message": "Budget Watch Register", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_BUILDING_PLAN_APPROVAL", + "message": "Building Plan Approval", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_CANCELLED_RECEIPT_REGISTER", + "message": "Cancelled Receipt Register", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_CANCEL_BILL", + "message": "Cancel Bill", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_CANCEL_BILLS", + "message": "Cancel Bills", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_CANCEL_VOUCHERS", + "message": "Cancel Vouchers", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_CASH_REMITTANCE", + "message": "Cash Remittance", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_CBBND", + "message": "Birth & Death Tabular Reports", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_CHALLAN_PAY", + "message": "Pay Challan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_CHALLAN_REGISTER", + "message": "Challan Register", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_CHALLAN_REGISTER_REPORT", + "message": "Challan Register Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_CHALLAN_SEARCH", + "message": "Search Challan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_CHANNELS_REPORT", + "message": "Channels report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_CHARTOFACCOUNTS", + "message": "Chartofaccounts", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_CHART_OF_ACCOUNTS", + "message": "Chart Of Accounts", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_CHECKLIST", + "message": "Checklist", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_CHECKLIST_CREATE", + "message": "Create Checklist", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_CHECKLIST_INBOX", + "message": "Checklist Inbox", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_CHEQUE_ASSIGNMENT", + "message": "Cheque Assignment", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_CHEQUE_ISSUE_REGISTER", + "message": "Cheque Issue Register", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_CHEQUE_REMITTANCE", + "message": "Cheque Remittance", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_CLOSED_COMPLAINTS", + "message": "Closed Complaints", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_CLOSE_FINANCIAL_YEAR", + "message": "Close Financial Year", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_CLOSE_PERIOD", + "message": "Close Period", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_COA_REPORT", + "message": "COA Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_COLLECTIONS", + "message": "Collections", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_COLLECTION_REGISTER", + "message": "Collection Register", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_COLLECTION_REPORT", + "message": "Collection report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_COLLECTPAYMENT", + "message": "Collect Payment", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_COMMONMASTERDEPARTMENT", + "message": "Department", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_COMMONMASTERUOM", + "message": "UOM", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_COMMONPT", + "message": "Property", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_COMMON_PROPERTY_TAX", + "message": "Common Property Tax", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_COMPLAINTS", + "message": "Citizen Complaint Resolution System", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_COMPLAINTS_TYPE", + "message": "Complaint Types", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_COMPLAINT_TYPES", + "message": "Complaint Types", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_COMPLETE_BILL_REGISTER_REPORT", + "message": "Complete Bill Register Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_CONSTRUCTION_TYPE", + "message": "Construction Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_CONTRACT", + "message": "Work Orders", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_CONTRACTOR", + "message": "Contractor", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_CONTRACTOR_BILL", + "message": "Contractor Bill", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_CONTRACTS", + "message": "Contracts", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_CONTRACTS_CREATE", + "message": "Create Work Order", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_CONTRACTS_INBOX", + "message": "Work Order Inbox", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_CONTRACTS_SEARCH", + "message": "Search Work Order", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_CONTRA_ENTRIES", + "message": "Contra Entries", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_CREATENEWAPPLICATION", + "message": "Create New Application", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_CREATE_ACCOUNTING_ENTITY", + "message": "Create Accounting Entity", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_CREATE_BANK", + "message": "Create Bank", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_CREATE_BANKACCOUNT_MAPPING", + "message": "Create Bankaccount Mapping", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_CREATE_BANK_ACCOUNT", + "message": "Create Bank Accout", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_CREATE_BANK_BRANCH", + "message": "Create Bank Branch", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_CREATE_BUDGET_DEFINITION", + "message": "Create Budget Definition", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_CREATE_BUDGET_GROUP", + "message": "Create Budget Group", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_CREATE_COMPLAINT", + "message": "Create Complaint", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_CREATE_CONTRACTOR", + "message": "Create Contractor", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_CREATE_DEDUCTIONS", + "message": "Create Deductions", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_CREATE_DETAILED_CODE", + "message": "Create Detailed Code", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_CREATE_EMPLOYEE", + "message": "Create Employee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_CREATE_ESTIMATE", + "message": "Create Estimate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_CREATE_FINANCIAL_YEAR", + "message": "Create Financial Year", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_CREATE_FUNCTION", + "message": "Create Function", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_CREATE_FUND", + "message": "Create Fund", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_CREATE_LOI", + "message": "Create LOI", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_CREATE_NEW_BILL", + "message": "Create New Bill", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_CREATE_OTHER_MASTERS", + "message": "Create other masters", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_CREATE_PROJECT", + "message": "Create Project", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_CREATE_PROJECT ", + "message": "Create Project", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_CREATE_PURCHASE_BILL", + "message": "Create Purchase Bill", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_CREATE_PURCHASE_ORDER", + "message": "Create Purchase Order", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_CREATE_SCHEME", + "message": "Create Scheme", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_CREATE_SUBLEDGER_CATEGORY", + "message": "Create Subledger Category", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_CREATE_SUBLEDGER_MASTERS", + "message": "Create Subledger Masters", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_CREATE_SUB_SCHEME", + "message": "Create Sub Scheme", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_CREATE_SUPPLIER", + "message": "Create Supplier", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_CREATE_UPDATE_BUDGET_CONTROL_TYPE", + "message": "Create/Update-Budget Control Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_CREATE_WORK_ORDER", + "message": "Create Work Order", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_CURRENTBILLCANCELLATION", + "message": "Bill cancellation", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_DASHBOARD", + "message": "Dashboard", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_DAY_BOOK_REPORT", + "message": "Day Book Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_DEATH", + "message": "Death Certificate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_DEATH_CERTIFICATE", + "message": "Death Certificate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_DEATH_NEW_REGISTRATION", + "message": "Death Registration", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_DEATH_RECORDS_COUNT", + "message": "Death Records Count", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_DEATH_RECORDS_COUNT_CBLEVEL", + "message": "Death Records Count by City", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_DEATH_SEARCH_CERTIFICATE", + "message": "Search Death Certificate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_DEDUCTIONS", + "message": "Deductions", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_DEDUCTIONS_CHEQUE_ASSIGNMENT", + "message": "Deductions Cheque Assignment", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_DEDUCTIONS_RTGS_ASSIGNMENT", + "message": "Deductions RTGS Assignment", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_DEDUCTIONS_SUMMARY", + "message": "Deductions Summary", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_DEDUCTION_PAYMENTS", + "message": "Deduction Payments", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_DEDUCTION_REPORTS", + "message": "Deduction Reports", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_DEDUCTION_SUMMARY", + "message": "Deductions Summary", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_DEFAULTER_REPORT", + "message": "Defaulter Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_DEPARTMENT", + "message": "Department", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_DEPARTMENTS", + "message": "Departments", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_DEPARTMENTWISE_BUDGET", + "message": "Departmentwise Budget", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_DESCRIPTION", + "message": "Description Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_DESCRIPTION_REPORT", + "message": "Description Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_DETAILED_CODES", + "message": "Detailed Codes", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_DIRECT_BANK_PAYMENTS", + "message": "Direct Bank Payments", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_DISHONORED_CHEQUE_REPORT", + "message": "Dishonoured Cheque report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_DISHONORED_CHEQUE_REPORT_", + "message": "Dishonoured Cheque report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_DISHONOR_CHEQUE_DD", + "message": "Dishonor Cheque/DD", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_DOWNLOAD_BILL_PDF", + "message": "Download Bill PDF", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_DSODASHBOARD", + "message": "DSO Dashboard", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_EDCR_SCRUTINY", + "message": "eDCR Scrutiny", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_EDCR_SCRUTINY_HOME", + "message": "eDCR Scrutiny", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_EDITAPPLICATION", + "message": "Edit Application", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_EDIT_FINANCIAL_YEAR", + "message": "Edit Financial Year", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_EMPLOYEE", + "message": "Employee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_EMPLOYEEDIRECTORY", + "message": "Employee Directory", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_EMPLOYEEINBOX", + "message": "Employee Inbox", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_EMPLOYEE_REPORT", + "message": "Employee Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_ESTIMATE", + "message": "Estimate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_ESTIMATE_INBOX", + "message": "Estimate Inbox", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_EVENTS", + "message": "Events", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_EXPENSE_BILL", + "message": "Expense Bill", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_FAECAL_SLUDGE_MANAGEMENT", + "message": "Faecal Sludge Management", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_FAQS", + "message": "FAQs", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_FILE_COMPLAINT", + "message": "File Complaint", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_FINANCE", + "message": "Finance", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_FINANCE_ROLLOUT_&_ADOPTION", + "message": "Rollout & Adoption Dashboard", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_FINANCIAL_INDICATORS", + "message": "Financial Indicators", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_FINANCIAL_STATEMENTS", + "message": "Financial Statements", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_FINANCIAL_YEAR", + "message": "Financial Year", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_FIRE-NOC", + "message": "Fire Noc", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_FIRENOC", + "message": "Fire No Objection Certificate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_FIRE_NOC", + "message": "Fire Noc", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_FIRE_NOC_INBOX", + "message": "FireNOC Inbox", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_FSM", + "message": "Faecal Sludge Management", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_FSMCREATE", + "message": "Create FSM application", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_FSMDAILYCOLLECTIONREPORT", + "message": "FSM Collection", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_FSMUNREGISTEREDVEHICLELOG", + "message": "Unregistered Vehicle", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_FSMVEHICLETRIP", + "message": "FSM Vehicle Trip", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_FSMVENDORVEHICLEREPORT", + "message": "FSM Vendor Vehicle", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_FSM_AREA_WISE_COLLECTION_REPORT", + "message": "Area Wise Collection Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_FSM_DAILY_COLLECTION_REPORT", + "message": "FSSM_Daily Revenue Collection Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_FSM_DAILY_DESLUDING_REPORT", + "message": "Daily Desluding Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_FSM_DESLUDGING_REQUEST_REPORT", + "message": "FSSM_Desludging Request Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_FSM_FSTP_PLANT_WITH_VEHICLE_LOG_REPORT", + "message": "FSTP Vehicle Log Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_FSM_UNREGISTERED_VEHICLE_LOG", + "message": "FSM Unregistered Vehicle Trip Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_FSM_UNREGISTERED_VEHICLE_LOG_REPORT", + "message": "FSSM_Unregistered Vehicle Trip Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_FSM_VECHILE_LOG_REPORT", + "message": "Vehicle Log Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_FSM_VECHILE_TRIP_REPORT", + "message": "FSSM_Vehicle Trip Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_FSM_VEHICLE_TRIP", + "message": "Registered Vehicle Trip Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_FSM_VENDOR_DRIVER_REPORT", + "message": "FSM Vendor Driver Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_FSM_VENDOR_VEHICLE_REPORT", + "message": "FSM Vendor Vehicle Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_FSTPDETAILS", + "message": "FSTP Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_FSTPINBOX", + "message": "FSTP Inbox", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_FUNCTION", + "message": "Function", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_FUNCTIONWISE_BUDGET", + "message": "Functionwise Budget", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_FUND", + "message": "Fund", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_GARIMA_REPORT_REPORT", + "message": "Garima Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_GENERAL_LEDGER_REPORT", + "message": "General Ledger Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_GROUP_BILLS", + "message": "Group Bills", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_GRO_PERFORMANCE_REPORT", + "message": "GRO Performance Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_HCM", + "message": "HCM Kibana Dasboard", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_HOME", + "message": "Home", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_HRMS", + "message": "HRMS", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_IFRAME", + "message": "iFrame", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_INCOME___EXPENDITURES_STATEMENT", + "message": "Income - Expenditures Statement", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_JOURNAL_BOOK_REPORT", + "message": "Journal Book Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_JOURNAL_VOUCHER", + "message": "Journal Voucher", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_LANGUAGE", + "message": "Language", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_LANGUAGES", + "message": "Language Selection", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_LME_PERFORMANCE_REPORT", + "message": "LME Performance Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_LOCALISATION", + "message": "Localisation", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_LOCALIZATION", + "message": "Localization", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_LOI_INBOX", + "message": "LOI Inbox", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_MANAGE_DEPARTMENT_MASTER", + "message": "Department Master", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_MANAGE_EMPLOYEETYPE_MASTER", + "message": "Employee Master", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_MANAGE_PGR_SERVICE_DEF_MASTER", + "message": "CCRS Service Def Master", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_MANAGE_UOM_MASTER", + "message": "UOM Master", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_MASTER1", + "message": "Master One", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_MASTER2", + "message": "Master Two", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_MASTER3", + "message": "Master Three", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_MASTERMORE", + "message": "Master More", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_MASTERS", + "message": "Masters", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_MASTERS_CREATE_ORGANISATION", + "message": "Create Organisation", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_MASTERS_CREATE_WAGESEEKER", + "message": "Create Wage Seeker", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_MASTERS_SEARCH_ORGANISATION", + "message": "Search Organisation", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_MASTERS_SEARCH_WAGESEEKER", + "message": "Search Wage Seeker", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_MCOLLECT", + "message": "Miscellaneous Collection", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_MDMS", + "message": "Manage Master Data", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_MEASUREMENT_CREATE", + "message": "Measurement Create", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_MEASUREMENT_HEADER", + "message": "Measurement books", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_MEASUREMENT_INBOX", + "message": "Measurement Inbox", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_MEASUREMENT_SEARCH", + "message": "Measurement Search", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_MENUONE", + "message": "Menu One", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_MENUTHREE", + "message": "Menu Three", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_MENUTWO", + "message": "Menu Two", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_MISCELLANEOUS_CONSUMER_RECEIPTS", + "message": "Consumer Receipts", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_MISCELLANEOUS_RECEIPTS", + "message": "Miscellaneous Receipts", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_MISCELLANEOUS_RECEIPT_REGISTER_ULB", + "message": "Receipt Register", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_MISC_BUSINESS_SERVICE_COLLECTIONS", + "message": "Service Collection", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_MIS_REPORT", + "message": "MIS Reports", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_MIS_REPORTS", + "message": "MIS Reports", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_MODIFY_ACCOUNTING_ENTITY", + "message": "Modify Accounting Entity", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_MODIFY_BANK", + "message": "Modify Bank", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_MODIFY_BANK_ACCOUNT", + "message": "Modify Bank Accout", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_MODIFY_BANK_BRANCH", + "message": "Modify Bank Branch", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_MODIFY_BUDGET_DEFINITION", + "message": "Modify Budget Definition", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_MODIFY_BUDGET_GROUP", + "message": "Modify Budget Group", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_MODIFY_CONTRACTOR", + "message": "Modify Contractor", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_MODIFY_DEDUCTIONS", + "message": "Modify Deductions", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_MODIFY_DETAILED_CODE", + "message": "Modify Detailed Code", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_MODIFY_FUNCTION", + "message": "Modify Function", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_MODIFY_FUND", + "message": "Modify Fund", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_MODIFY_OTHER_MASTERS", + "message": "Modify other masters", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_MODIFY_PURCHASE_ORDER", + "message": "Modify Purchase Order", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_MODIFY_SCHEME", + "message": "Modify Scheme", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_MODIFY_SUBLEDGER_CATEGORY", + "message": "Modify Subledger Category", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_MODIFY_SUBLEDGER_MASTERS", + "message": "Modify Subledger Masters", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_MODIFY_SUB_SCHEME", + "message": "Modify Sub Scheme", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_MODIFY_SUPPLIER", + "message": "Modify Supplier", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_MODIFY_WORK_ORDER", + "message": "Modify Work Order", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_MUSTER_HEADER", + "message": "Muster rolls", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_MUSTER_ROLL", + "message": "View Muster Rolls", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_MYCOMPLAINTS", + "message": "My Complaints", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_MY_BILLS", + "message": "My Bills", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_MY_PAYMENTS", + "message": "My Payments", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_M_COLLECT", + "message": "Miscellaneous Collection", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_NATDASHBOARD", + "message": "National dashboard", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_NATIONAL_DASHBOARD_OBPS", + "message": "Online Building Plan Approval System Dashboard", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_NATIONAL_FIRE_NOC", + "message": "Firenoc National Dashboard", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_NATIONAL_MCOLLECT", + "message": "Miscellaneous Collection", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_NATIONAL_OVERVIEW", + "message": "Overview", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_NATIONAL_PGR", + "message": "Citizen Complaint Resolution System", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_NATIONAL_PROPERTY_TAX", + "message": "Property Tax Dashboard", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_NATIONAL_TRADELICENSE", + "message": "Trade License Dashboard", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_NATIONAL_UBRAN_REALTIME_DASHBOARD", + "message": "National Urban Real-Time Dashboard", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_NATIONAL_URBAN_REALTIME_DASHBOARD", + "message": "National Dashboard", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_NATIONAL_URBAN_REALTIME_LANDING_DASHBOARD", + "message": "NURT Dashboard", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_NATIONAL_URBAN_REALTIME_LANDING_PAGE", + "message": "Landing Page", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_NATIONAL_WATER_&_SEWERAGE", + "message": "Water & Sewerage Dashboard", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_NEW_CHALLAN", + "message": "New Challan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_NEW_W&S_APPLICATION", + "message": "Apply New W&S Application", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_NOC", + "message": "NOC", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_OBPS", + "message": "Online Building Permit System", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_OBPS_APPLICATION_STATUS_REPORT", + "message": "OBPS Application Status Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_OBPS_DAILY_COLLECTION_REPORT", + "message": "Daily Collection Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_OBPS_REPORTS", + "message": "OBPS Reports", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_OPENING_BALANCE_ENTRY", + "message": "Opening Balance Entry", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_OPENING_BALANCE_REPORT", + "message": "Opening Balance Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_OPEN_COMPLAINTS", + "message": "Open Complaints", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_OPTION1", + "message": "Option One", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_OPTION2", + "message": "Option Two", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_OPTION3", + "message": "Option Three", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_OTHER_MASTERS", + "message": "Other Masters", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_OVERVIEW", + "message": "Overview", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_PAYMENTS", + "message": "Payments", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_PAYMENT_DOWNLOAD", + "message": "Download Payment Advice", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_PAYMENT_GENERATE", + "message": "Generate Payment Advice", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_PERIOD_END_ACTIVITIES", + "message": "Period End Activities", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_PGR", + "message": "Citizen Complaint Resolution System", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_PGRSERVICEDEFS", + "message": "Citizen Complaint Resolution System Services", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_PGR_DASHBOARD", + "message": "Citizen Complaint Resolution System Dashboard", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_PGR_REPORTS", + "message": "Citizen Complaint Resolution System Reports", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_PGR_ULB_DASHBOARD", + "message": "Citizen Complaint Resolution System ULB Dashboard", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_PLANTTYPE", + "message": "Plant Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_PQM", + "message": "PQM", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_PROJECT", + "message": "Projects", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_PROJECTS", + "message": "Projects", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_PROJECT_SEARCH", + "message": "Search Project", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_PROPERTY_SUBTYPE", + "message": "Property Subtype", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_PROPERTY_TAX", + "message": "Property Tax", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_PT", + "message": "Property Tax", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_PTCOLLECTION_REPORT", + "message": "Collection Register", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_PTRECEIPTCANCELLATION", + "message": "Property Tax Receipt Cancellation", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_PT_COLLECTION", + "message": "PT Collection", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_PT_DASHBOARD", + "message": "PT Dashboard", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_PT_DATA_DUMP", + "message": "PT Data Dump", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_PT_MASTERS", + "message": "PT Masters", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_PT_REPORTS", + "message": "PT Reports", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_PUBLIC_MESSAGE_BROADCAST", + "message": "Public Message Broadcast", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_PURCHASE_ORDER", + "message": "Purchase Order", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_RECEIPTCANCELLATION", + "message": "Receipt Cancellation", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_RECEIPTREGISTER", + "message": "Receipt Register", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_RECEIPTS", + "message": "Receipts", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_RECEIPTS-NOC", + "message": "Receipts", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_RECEIPT_REGISTER", + "message": "Receipt Register", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_RECEPIT_REGISTER", + "message": "Receipt Register Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_RECEPIT_REPORT", + "message": "Receipt Register", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_RECONCILE-UPLOADED-STATEMENT-3", + "message": "Reconcile Upload Statement", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_RECONCILE_UPLOADED_STATEMENT", + "message": "Reconcile Uploaded Statement", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_RECONCILE_WITH_BANK_MANUAL", + "message": "Reconcile with Bank-Manual", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_RECONCILIATION_SUMMARY_REPORT", + "message": "Reconciliation Summary Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_REMITTANCE_COLLECTION_REPORT", + "message": "Remittance Collection Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_REMITTANCE_PENDING", + "message": "Remittance Pending", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_REMITTANCE_PENDING_REPORT", + "message": "Remittance Pending Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_REOPENING_CLOSED_PERIOD", + "message": "Reopening Closed Period", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_REPORTS", + "message": "Reports", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_RESPONSE", + "message": "Response", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_REVENUE_COLLECTIONS", + "message": "Revenue/Collections", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_REVENUE_REPORTS", + "message": "Revenue Reports", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_ROLEACTIONS", + "message": "Role Action", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_ROLES", + "message": "Roles", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_RTGS_ASSIGNMENT", + "message": "RTGS Assignment", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_RTGS_REGISTER_REPORT", + "message": "RTGS register report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_SANITATIONWORKERREPORT", + "message": "Sanitation Worker", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_SANITATIONWORKER_REPORT", + "message": "FSSM_Sanitation Worker Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_SCHEME", + "message": "Scheme", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_SEARCH", + "message": "Search", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_SEARCHAPPLICATION", + "message": "Search Application", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_SEARCHFSM", + "message": "Search FSM", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_SEARCH_APPLICATION", + "message": "BPA Search", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_SEARCH_APPROVED_ESTIMATES", + "message": "Search Approved Estimates", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_SEARCH_BUDGET", + "message": "Search Budget", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_SEARCH_CHALLAN", + "message": "Search Challan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_SEARCH_COMPLAINT", + "message": "Search Complaint", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_SEARCH_COMPLAINTS", + "message": "Search Complaint", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_SEARCH_EMPLOYEE", + "message": "Search Employee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_SEARCH_ESTIMATE", + "message": "Search Estimate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_SEARCH_FIRE_NOC", + "message": "Search Fire NOC", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_SEARCH_FSM_APPLICATION", + "message": "Search FSM Application", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_SEARCH_NOC_APPLICATION", + "message": "NOC Search", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_SEARCH_PROPERTIES", + "message": "Search Properties", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_SEARCH_PROPERTY", + "message": "Search Property", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_SEARCH_RECEIPTS", + "message": "Search Receipts", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_SEARCH_TL", + "message": "Search TL", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_SET_UP", + "message": "Set-up", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_SEWERAGE", + "message": "Sewerage", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_SEWERAGE_SEARCH", + "message": "Sewerage Search", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_SOURCE", + "message": "Source Wise Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_STATE_LEVEL_STATUS", + "message": "State Level Status", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_STATE_LEVEL_TRADE_LICENSE_REGISTRY_REPORT", + "message": "State Level Trade License Registry Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_STATE_LEVEL_TRADE_WISE_COLLECTION", + "message": "State Level Trade Wise Collection", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_STATE_REPORTS", + "message": "State Reports", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_STATE_SOURCE", + "message": "State Source", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_SUBLEDGER_CONFIGURATION", + "message": "Subledger Configuration", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_SUB_LEDGER_REPORT", + "message": "Sub Ledger Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_SUB_LEDGER_SCHEDULE_REPORT", + "message": "Sub Ledger Schedule Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_SUPPLIER", + "message": "Supplier", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_SUPPLIER_BILL", + "message": "Supplier Bill", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_SURE_DASHBOARD", + "message": "SURE Dashboard", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_SURRENDERED_CHEQUE", + "message": "Surrendered Cheque", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_SURRENDER_REASSIGN_CHEQUE", + "message": "Surrender/Reassign Cheque", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_SURRENDER_RTGS", + "message": "Surrender RTGS", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_SW", + "message": "Sewerage", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_TENANT", + "message": "Tenant", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_TESTSTANDARD", + "message": "Test Standard", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_TL", + "message": "Trade License", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_TL_COLLECTION", + "message": "TL Collection", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_TL_REPORTS", + "message": "TL Reports", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_TQM", + "message": "Treatment quality", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_TQMTEST", + "message": "TQM Test", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_TQM_TEST_REPORT", + "message": "FSSM_PQM Test Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_TRADELICENSE", + "message": "Trade License", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_TRADE_2", + "message": "Trade Validations", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_TRADE_3", + "message": "Trade Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_TRADE_ARRAY_TYPES", + "message": "Trade Array type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_TRADE_LICENCE", + "message": "Trade License", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_TRADE_LICENSE", + "message": "Trade License", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_TRADE_LICENSE_APPLICATION_STATUS_REPORT", + "message": "Trade License Application Status Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_TRADE_LICENSE_DAILY_COLLECTION_REPORT", + "message": "Trade License Daily Collection Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_TRADE_LICENSE_REGISTRY_REPORT", + "message": "Trade License Registry Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_TRADE_LICENSE_RENEWAL_PENDING_REPORT", + "message": "Trade License Renewal Pending Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_TRADE_LICENSE_REPORTS", + "message": "Trade License Indicators", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_TRADE_WISE_COLLECTION_REPORT", + "message": "Trade Wise Collection Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_TRANSACTIONS", + "message": "Transactions", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_TRANSFER_CLOSING_BALANCE", + "message": "Transfer Closing Balance", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_TRIAL_BALANCE", + "message": "Trial Balance", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_UC", + "message": "Miscellaneous Collection", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_ULB_EMPLOYEES", + "message": "ULB Wise report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_ULB_INFORMATION", + "message": "Citizen Engagement", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_ULB_REPORT", + "message": "ULB Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_ULB_STATS", + "message": "ULB Stats", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_ULB_WATER_SEWERAGE", + "message": "Water & Sewerage", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_ULB_WISE_PT_COLLECTION_REPORT", + "message": "ULB Wise PT Collection Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_ULB_WISE_STATUS", + "message": "ULB Wise Status", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_UNIVERSAL_COLLECTION", + "message": "Miscellaneous Collection", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_UNIVERSAL_COLLECTION(MCOLLECT)", + "message": "Miscellaneous Collection", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_UNIVERSAL_COLLECTION(MCOLLECT) ", + "message": "MCollect", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_UPDATE_DEPARTMENT_MASTER", + "message": "Department Master", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_UPDATE_EMPLOYEETYPE_MASTER", + "message": "Employee Type Master", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_UPLOADER", + "message": "Uploader", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_UPLOAD_BUDGET", + "message": "Upload Budget", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_VIEW_ACCOUNTING_ENTITY", + "message": "View Accounting Entity", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_VIEW_ACCOUNT_ENTITY", + "message": "View Accounting Entity", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_VIEW_ATTENDENCE", + "message": "View Attendence", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_VIEW_BANK", + "message": "View Bank", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_VIEW_BANKACCOUNT_MAPPING", + "message": "View Bankaccount Mapping", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_VIEW_BANK_ACCOUNT", + "message": "View Bank Accout", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_VIEW_BANK_BRANCH", + "message": "View Bank Branch", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_VIEW_BANK_STATEMENT_UPLOADED_FILES", + "message": "View Bank Statement Uploaded Files", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_VIEW_BILL_REGISTERS", + "message": "View Bill Registers", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_VIEW_BUDGET_DEFINITION", + "message": "View Budget Definition", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_VIEW_BUDGET_GROUP", + "message": "View Budget Group", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_VIEW_CONTRACTOR", + "message": "View Contractor", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_VIEW_DEDUCTIONS", + "message": "View Deductions", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_VIEW_DETAILED_CODE", + "message": "View Detailed Code", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_VIEW_FINANCIAL_YEAR", + "message": "View Financial Year", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_VIEW_FUNCTION", + "message": "View Function", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_VIEW_FUND", + "message": "View Fund", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_VIEW_OTHER_MASTERS", + "message": "View other masters", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_VIEW_PURCHASE_ORDER", + "message": "View Purchase Order", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_VIEW_SCHEME", + "message": "View Scheme", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_VIEW_SUBLEDGER_CATEGORY", + "message": "View Subledger Category", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_VIEW_SUBLEDGER_MASTERS", + "message": "View Subledger Masters", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_VIEW_SUB_SCHEME", + "message": "View Sub Scheme", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_VIEW_SUPPLIER", + "message": "View Supplier", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_VIEW_VOUCHER", + "message": "View Voucher", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_VIEW_WORK_ORDER", + "message": "View Work Order", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_VOUCHER_FROM_BILL", + "message": "Voucher from bill", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_VOUCHER_STATUS_REPORT", + "message": "Voucher Status Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_W&S", + "message": "W&S", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_WAGESEEKER", + "message": "WageSeeker", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_WATER", + "message": "Water", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_WATER_&_SEWERAGE", + "message": "Water & Sewerage", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_WATER_AND_SEWERAGE", + "message": "Water & sewerage", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_WATER_SEARCH", + "message": "Water Search", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_WATER_SEWERAGE", + "message": "Water & Sewerage", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_WNS", + "message": "Water & Sewerage", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_WNS_COLLECTION_REGISTER_REPORT", + "message": "Collection Register", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_WNS_DEFAULTER_REPORT", + "message": "Defaulter Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_WNS_MY_BILLS", + "message": "My Bills", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_WNS_RECEIPT_REGISTER_REPORT", + "message": "Receipt Register ", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_WNS_REPORTS", + "message": "W&S Reports", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_WORKBENCH", + "message": "Workbench", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_WORKS", + "message": "WORKS", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_WORKS_DASHBOARD", + "message": "Mukta Dashboard", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_WORK_ORDER", + "message": "Work Order", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_WO_INBOX", + "message": "Work Order Inbox", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_WS", + "message": "Water & Sewerage", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST__AUTO_RECONCILE-_STATEMENT_UPLOAD", + "message": "Auto reconcile- Statement Upload", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEXT_WS_MY_APPLICATION", + "message": "My Applications", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEXT_WS_MY_CONNECTION", + "message": "My Connections", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_TEXT_WS_SEARCH_AND_PAY", + "message": "Search & Pay", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTION_VIEW_DETAILS", + "message": "View Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTIVE", + "message": "Active", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTIVE_CONNECTIONS_PRESENT_IN", + "message": "active connections present in", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ACTIVE_EMPLOYEES", + "message": "Active Employees", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ADD_MESSAGE_BUTTON", + "message": "ADD MESSAGE", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ADD_NEW_EVENT", + "message": "Add New Event", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ADD_NEW_PUBLIC_MESSAGE", + "message": "Add New Public Message", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ADD_PROPERTY", + "message": "Adding a Property", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ADD_PROPERTY_VIDEO_DESC", + "message": "Pay your property tax dues before due date and get 10% rebate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ADVANCE_CARRYFORWARD", + "message": "Advance CarryForward", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ADVANCE_PAYMENT", + "message": "Advance Payment", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ADVT.GAS_BALLOON_ADVERTISEMENT_FIELD_FEE", + "message": "Field Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ADVT.GAS_BALLOON_ADVERTISEMENT_TAX", + "message": "Gas Balloon", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ADVT.HOARDINGS_CGST", + "message": "CGST", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ADVT.HOARDINGS_FIELD_FEE", + "message": "Field Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ADVT.HOARDINGS_SGST", + "message": "SGST", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ADVT.HOARDINGS_TAX", + "message": "Tax", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ADVT.LIGHT_WALA_BOARD_CGST", + "message": "CGST", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ADVT.LIGHT_WALA_BOARD_FIELD_FEE", + "message": "Field Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ADVT.LIGHT_WALA_BOARD_SGST", + "message": "SGST", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ADVT.LIGHT_WALA_BOARD_TAX", + "message": "Light Wala Board", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ADVT.UNIPOLLS_CGST", + "message": "CGST", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ADVT.UNIPOLLS_FIELD_FEE", + "message": "Field Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ADVT.UNIPOLLS_SGST", + "message": "SGST", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ADVT.UNIPOLLS_TAX", + "message": "Unipolls", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ADVT.WALL_PAINT_ADVERTISEMENT_CGST", + "message": "CGST", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ADVT.WALL_PAINT_ADVERTISEMENT_FIELD_FEE", + "message": "Field Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ADVT.WALL_PAINT_ADVERTISEMENT_SGST", + "message": "SGST", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ADVT.WALL_PAINT_ADVERTISEMENT_TAX", + "message": "Wall Paint Advertisement", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ADVT_GAS_BALLOON_ADVERTISEMENT_FIELD_FEE", + "message": "Feild Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ADVT_GAS_BALLOON_ADVERTISEMENT_FIELD_FEE ", + "message": "Field Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ADVT_GAS_BALLOON_ADVERTISEMENT_TAX", + "message": "Tax", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ADVT_GAS_BALLOON_ADVERTISEMENT_TAX ", + "message": "Tax", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "AGE_LESS_THAN_18_YEARS", + "message": "Age should not be less than 18 years", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "AGE_SHOULD_BE_18_OR_ABOVE", + "message": "Age should be 18 years or above", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "AIRPORT_AUTHORITY", + "message": "Airport Authority", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ALL", + "message": "All", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ALT_OTPSENTTO", + "message": "OTP has been sent to Mobile no", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ALT_OWNER.DULYSIGNED", + "message": "1. Duly signed change request form", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ALT_OWNER.IDENTITYPROOF", + "message": "2. Identity Proof like Aadhar, Voter ID", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "AMOUNT_LESS_THAN_100", + "message": "Amount can't be less than 100", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "AMOUNT_TO_PAY", + "message": "Amount to pay (Rs)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "APPL", + "message": "Applicant details and other General documents", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "APPL.ADDRESSPROOF", + "message": "Address proof", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "APPL.ADDRESSPROOF.ELECTRICITYBILL", + "message": "Electricity Bill", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "APPL.ADDRESSPROOF.PASSPORT", + "message": "Passport", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "APPL.BUILDING_DIAGRAM.ELEVATION_PLAN", + "message": "Elevation Plan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "APPL.BUILDING_DIAGRAM.FLOOR_PLAN", + "message": "Floor Plan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "APPL.BUILDING_DIAGRAM.SECTION_PLAN", + "message": "Section Plan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "APPL.IDENTITYPROOF", + "message": "Identity proof", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "APPL.IDENTITYPROOF.AADHAAR", + "message": "Aadhaar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "APPL.IDENTITYPROOF.DRIVINGLICENSE", + "message": "Driving License", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "APPL.IDENTITYPROOF.PASSPORT", + "message": "Passport", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "APPL.LAC", + "message": "Layout approval copy", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "APPL.LAC.LAC", + "message": "Layout approval copy", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "APPL.LOCALBODY.DTCP_APPROVAL", + "message": "DTCP Approval", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "APPL.LOCALBODY.MUNCIPAL_APPROVAL", + "message": "Muncipal Approval", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "APPL.LOCALBODY.PANCHAYAT_APPROVAL", + "message": "Panchayat Approval", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "APPL.LSVS", + "message": "Location sketch and village sketch", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "APPL.LSVS.LSVS", + "message": "Location sketch and village sketch", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "APPL.LTR", + "message": "Land tax receipt", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "APPL.LTR.LTR", + "message": "Land tax receipt", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "APPL.SSC", + "message": "Structural stability certificate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "APPL.SSC.SSC", + "message": "Structural stability certificate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "APPL.TDP", + "message": "Title deed of the property", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "APPL.TDP.TDP", + "message": "Title deed of the property", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "APPLICATIONSTATUSREPORT", + "message": "Application Status Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "APPLICATION_ISSUED_IN_LAST_12_MONTHS", + "message": "Trade Licenses issued in the last 12 months", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "APPLICATION_NUMBER_ALREADY_EXISTS", + "message": "Application Number already exists", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "APPLICATION_PROCESSED_IN_LAST_12_MONTHS", + "message": "applications processed in last 12 months", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "APPLICATION_PROCESSING_FEE", + "message": "Total fee collected for application processing is about Rs", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "APPLICATION_PROCESSING_TIME", + "message": "Average time of processing an application is less than", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "APPLICATION_RENEWED_IN_LAST_12_MONTHS", + "message": "Trade Licenses renewed in the last 12 months", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "APPLIED", + "message": "Pending for Document Verification", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "APPL_ADDRESSPROOF", + "message": "Address proof", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "APPL_ADDRESSPROOF_ELECTRICITYBILL", + "message": "Electricity Bill", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "APPL_ADDRESSPROOF_PASSPORT", + "message": "Passport", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "APPL_BUILDING_DIAGRAM", + "message": "Building Diagram", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "APPL_BUILDING_DIAGRAM_ELEVATION_PLAN", + "message": "Elevation Plan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "APPL_BUILDING_DIAGRAM_FLOOR_PLAN", + "message": "Floor Plan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "APPL_BUILDING_DIAGRAM_SECTION_PLAN", + "message": "Section Plan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "APPL_IDENTITYPROOF", + "message": "Identity proof", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "APPL_IDENTITYPROOF_AADHAAR", + "message": "Aadhaar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "APPL_IDENTITYPROOF_DRIVINGLICENSE", + "message": "Driving License", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "APPL_IDENTITYPROOF_PASSPORT", + "message": "Passport", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "APPL_LAC", + "message": "Layout approval copy", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "APPL_LAC_LAC", + "message": "Layout approval copy", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "APPL_LOCALBODY", + "message": "Local Body", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "APPL_LOCALBODY_DTCP_APPROVAL", + "message": "DTCP Approval", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "APPL_LOCALBODY_MUNCIPAL_APPROVAL", + "message": "Muncipal Approval", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "APPL_LOCALBODY_PANCHAYAT_APPROVAL", + "message": "Panchayat Approval", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "APPL_LSVS", + "message": "Location sketch and village sketch", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "APPL_LSVS_LSVS", + "message": "Location sketch and village sketch", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "APPL_LTR", + "message": "Land tax receipt", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "APPL_LTR_LTR", + "message": "Land tax receipt", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "APPL_SSC", + "message": "Structural stability certificate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "APPL_SSC_SSC", + "message": "Structural stability certificate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "APPL_TDP", + "message": "Title deed of the property", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "APPL_TDP_TDP", + "message": "Title deed of the property", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "APPROVAL_INPROGRESS", + "message": "Approval In Progress", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "APPROVAL_PENDING", + "message": "Pending for approval", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "APPROVED", + "message": "Approved", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ASSIGN_DSO", + "message": "Assign DSO", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ASSING_DSO", + "message": "Assign DSO", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ATM_INDIVIDUAL_DETAILS", + "message": "Individual Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ATM_SELECT_SKILL", + "message": "Select Skills", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ATM_SKILLS", + "message": "Skills", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ATM_SKILLS_DETAILS", + "message": "Skill Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "AUDIT_DATAVIEWED_BY_LABEL", + "message": "Private Data Viewed by", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "AUDIT_DATAVIEWED_BY_PRIVACY", + "message": "Data Viewed by", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "AUDIT_DATAVIEWED_LABEL", + "message": "Private Data Viewed", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "AUDIT_DATAVIEWED_PRIVACY", + "message": "Data Viewed", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "AUDIT_DATE_LABEL", + "message": "Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "AUDIT_FROM_DATE_LABEL", + "message": "From Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "AUDIT_ROLE_LABEL", + "message": "Role", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "AUDIT_TIME_LABEL", + "message": "Time", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "AUDIT_TO_DATE_LABEL", + "message": "To Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "AUTO-RECONCILE--STATEMENT-UPLOAD-3", + "message": "Reconcile Upload Statement", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "AUTO_APPROVED", + "message": "Auto Approved", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "AXIS", + "message": "AXIS Bank Payment Gateway", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "Ajit Nagar - Area1", + "message": "Ajit Nagar - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "Amritsar", + "message": "Amritsar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "Anjana", + "message": "Anjani", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BANK_ACCOUNT_VALIDATION", + "message": "Enter valid account number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLAMENDMENT_ADDRESSPROOF_LABEL", + "message": "Address Proof", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLAMENDMENT_ARREAR_WRITE_OFF_HEADING", + "message": "Arrear Write Off", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLAMENDMENT_COMMON_BUTTON_APPLY", + "message": "Apply", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLAMENDMENT_COMMON_BUTTON_PRINT", + "message": "Print", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLAMENDMENT_COURTORDER_LABEL", + "message": "Court Order", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLAMENDMENT_COURT_CASE_SETTLEMENT_HEADING", + "message": "Court Case Settlement", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLAMENDMENT_DCB_CORRECTION_HEADING", + "message": "DCB Coreection", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLAMENDMENT_DOCUMENT_NOTE", + "message": "Listed below are the documents needed for this case", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLAMENDMENT_GOVTNOTIFICATION_LABEL", + "message": "Government Notification", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLAMENDMENT_IDENTITYPROOF_LABEL", + "message": "Identity Proof", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLAMENDMENT_OFFICENOTEORDER_LABEL", + "message": "Office Note Order", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLAMENDMENT_ONE_TIME_SETTLEMENT_HEADING", + "message": "One Time Settlement", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLAMENDMENT_OTHERS_HEADING", + "message": "Others", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLAMENDMENT_PASTBILLS_LABEL", + "message": "Past Bills", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLAMENDMENT_REMISSION_FOR_PROPERTY_TAX_HEADING", + "message": "Remission For Property Tax", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLAMENDMENT_REQ_DOCS_HEADER", + "message": "Required Documents", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLAMENDMENT_SELFDECLARATION_LABEL", + "message": "Self Declaration", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLAMENDMENT_SUPPORTINGDOCUMENT_LABEL", + "message": "Supporting Document", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLAMEND_ADDRESSPROOF.AADHAAR", + "message": "Aadhar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLAMEND_ADDRESSPROOF.DRI VING", + "message": "Driving Licence", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLAMEND_ADDRESSPROOF.DRIVING", + "message": "Driving Licence", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLAMEND_ADDRESSPROOF.ELECTRICITYBILL", + "message": "Electricity Bill", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLAMEND_ADDRESSPROOF.PAN", + "message": "Pan Card", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLAMEND_APPLICATION", + "message": "Bill Amendment Application", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLAMEND_APPLICATIONNO", + "message": "Aplication Number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLAMEND_CONSUMERNO", + "message": "Cosumer Number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLAMEND_COURTORDER", + "message": "Court Oder", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLAMEND_GOVTNOTIFICATION", + "message": "Government Notification", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLAMEND_IDENTITYPROOF.AA DHAAR", + "message": "Aadhaar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLAMEND_IDENTITYPROOF.AADHAAR", + "message": "Aadhaar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLAMEND_IDENTITYPROOF.DRIVING", + "message": "Driving License", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLAMEND_IDENTITYPROOF.ELECTRICITYBILL", + "message": "Electricity Bill", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLAMEND_OFFICENOTEORDER ", + "message": "Court Order", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLAMEND_PASTBILLS", + "message": "Past Bills", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLAMEND_SUPPORTINGDOCUM ENT", + "message": "Supporting Document", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLAMEND_SUPPORTINGDOCUMENT", + "message": "Supporting Document", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_ADMN", + "message": "Admin Fees", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_ADMN_ELECTION_RALLY_FEES", + "message": "Election rally fees", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_ADMN_NO_DUES_CERTIFICATE", + "message": "NDC - No Dues Certificate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_ADMN_PARKING_BOOKING_FEE", + "message": "Parking Booking Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_ADMN_PARKING_DURING_ELECTION", + "message": "Parking during election", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_ADMN_ROAD_SHOW", + "message": "Road show", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_ADMN_RTI", + "message": "RTI", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_ADVT_CANOPY_FEE", + "message": "Canopy Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_ADVT_GAS_BALLOON_ADVERTISEMENT", + "message": "Gas Balloon Advertisement", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_ADVT_HOARDINGS", + "message": "Hoardings", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_ADVT_LIGHT_WALA_BOARD", + "message": "Light Wala Board", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_ADVT_OUTDOOR_MEDIA_DISPLAY_FEE", + "message": "Outdoor Media Display Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_ADVT_UNIPOLLS", + "message": "Unipolls", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_ADVT_WALL_PAINT_ADVERTISEMENT", + "message": "Wall Paint Advertisement", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_BIRTH_CERT", + "message": "Birth Certificate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_BPA.LOW_RISK_PERMIT_FEE", + "message": "Permit Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_BPA.NC_APP_FEE", + "message": "Application Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_BPA.NC_OC_APP_FEE", + "message": "Occupancy Certificate Application Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_BPA.NC_OC_SAN_FEE", + "message": "Occupancy Certificate Sanction Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_BPA.NC_SAN_FEE", + "message": "Sanction Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_CH", + "message": "Challans", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_CH_BIDI_&_CIGRETTE_CHALLAN", + "message": "Bidi & Cigrette Challan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_CH_BURING_OF_WASTE_CHALLAN_FEE", + "message": "Burning of Waste Challan fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_CH_BURNING_OF_WASTE_CHALLAN_FEE", + "message": "Burning of Waste Challan fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_CH_CATTLE_CHALLAN", + "message": "Cattle Challan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_CH_CHALLAN_FOR_MISUSE_OF_WATER", + "message": "Challan for Misuse of Water", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_CH_COLLECTION_AND_DEMOLITION_WASTE_CHALLAN_FEE", + "message": "Collection and Demolition Waste Challan fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_CH_DAIRY_ANIMALS_CHALLAN", + "message": "Dairy Animals Challan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_CH_DENGUE_CHALLAN", + "message": "Dengue Challan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_CH_LITTERING_CHALLAN", + "message": "Littering Challan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_CH_PLASTIC_CHALLAN", + "message": "Plastic Challan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_CH_REHRI_CHALLAN", + "message": "Rehri Challan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_CH_SANTITATION_DUMPING_GARBAGE", + "message": "Santitation dumping garbage", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_CH_SBM_GARBAGE_PLASTIC_POLYTHENE_CHALLAN", + "message": "SBM garbage plastic polythene challan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_CSS", + "message": "Cess", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_CSS_COW_CESS", + "message": "Cow Cess", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_CSS_LABOR_CESS", + "message": "Labor Cess", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_DEATH_CERT", + "message": "Death Certificate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_FIRENOC", + "message": "FIRENOC", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_FN", + "message": "Finance Fees", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_FN_ADVANCE_PROVIDENT_FUND", + "message": "Advance Provident Fund", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_FN_CPF_RECEIVED_CHECK", + "message": "CPF received check", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_FN_GPF", + "message": "GPF", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_FN_GRANTS_CHEQUE", + "message": "Grants cheque", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_FN_PF_TRANSFER_(ACCOUNTS)", + "message": "PF transfer (Accounts)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_FN_PROVIDENT_FUND_PROCESSING_FEES", + "message": "Provident Fund Processing Fees", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_FN_RECOVERY_EMPLOYEE/CONTRACTOR", + "message": "Recovery employee/contractor", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_FN_RECOVERY_EMPLOYEE_CONTRACTOR", + "message": "Recovery employee contractor", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_FN_SECURITY_DEPOSIT_FEE_REFUNDABLE FEE", + "message": "Security Deposit Fee(Refundable Fee)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_FN_SECURITY_DEPOSIT_FEE_REFUNDABLE_FEE", + "message": "Security Deposit Fee (Refundable Fee)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_FN_TENDER_EARNEST_MONEY_DEPOSIT_REFUNDABLE FEE", + "message": "Tender Earnest Money Deposit ( Refundable Fee)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_FN_TENDER_EARNEST_MONEY_DEPOSIT_REFUNDABLE_FEE", + "message": "Tender Earnest Money Deposit (Refundable fee)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_FTP", + "message": "Fee Town Planning", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_FTP_ARCHITECT_LICENSE_FEE", + "message": "Architect license fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_FTP_BUILDING_PLANNER_RENEW", + "message": "Building planner renew", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_FTP_COMPOSITION_FEES", + "message": "Composition fees", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_FTP_COMPREMASING_FEES", + "message": "Compremasing fees", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_FTP_CONSTRUCTION_WASTE", + "message": "Construction Waste", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_FTP_DEMOLITION_WASTE", + "message": "Demolition Waste", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_FTP_DRAFTSMEN_FEES", + "message": "Draftsmen fees", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_FTP_LEAVE_ENCASHMENT_AND_GRATUITY", + "message": "Leave encashment and gratuity", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_FTP_LEAVE_ENCASHMENT_AND_GRATUTY", + "message": "Leave encashment and gratuty", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_FTP_LICENSE_FEES_BUILDING_BRANCH", + "message": "License fees building branch", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_FTP_TELECOM_TOWER_FEES", + "message": "Telecom tower fees", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_LCF", + "message": "License Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_LCF_MANUAL_RIKSHAW", + "message": "Manual Rikshaw", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_LCF_REHRI_RICKSHAW_FEE", + "message": "Rehri/Rickshaw Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_LCF_TRADE_LICENSE_FEE", + "message": "Trade License Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_NKS", + "message": "Naksha/Building Manual Fees", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_NKS_ MALBA_FEES", + "message": "Malba Fees", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_NKS_2_YEAR_TIME_LIMIT_OF_RENEWAL_BUILDING_NAKSHA", + "message": "2 year time limit of Renewal Building Naksha", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_NKS_ALTERATION_ADDITIONAL_CHARGE", + "message": "Alteration additional charge", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_NKS_BOUNDARY_WALL_FEES", + "message": "Boundary Wall Fees", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_NKS_BUILDING_FEES", + "message": "Building Fees", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_NKS_BUILDING_SAFETY_CERTIFICATE_FEE", + "message": "Building safety Certificate fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_NKS_CHANGE_OF_LAND_USE_FEES", + "message": "Change Of Land Use Fees", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_NKS_COLONY_SAMBANDHI_FEES", + "message": "Colony Sambandhi fees", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_NKS_DEVELOPMENT_FEES", + "message": "Development Fees", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_NKS_ECONOMIC_WEAKER_SECTION_PROJECTS_FEES", + "message": "Economic Weaker Section Projects Fees", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_NKS_ECONOMIC_WEAKER_SECTION_SCHEME_CHARGES", + "message": "Economic Weaker Section Scheme Charges", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_NKS_HADUD_CERTIFICATE_FEES", + "message": "Hadud Certificate Fees", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_NKS_INFORMATION_CERTIFICATE_FEE", + "message": "Information Certificate fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_NKS_MALBA_FEES", + "message": "Malba Fees", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_NKS_NAKSHA_CHANGES", + "message": "Naksha changes", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_NKS_NAKSHA_FEES", + "message": "Naksha fees", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_NKS_NAKSHA_RENEW_FEES", + "message": "Naksha renew fees", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_NKS_NAKSHA_SAMJOTA_FEES", + "message": "Naksha samjota fees", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_NKS_NOC/COMPLETION_OF_BUILDING_APPROVAL", + "message": "NOC/Completion of building approval", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_NKS_NOC_COMPLETION_OF_BUILDING_APPROVAL", + "message": "NOC completion of building approval", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_NKS_NO_DUES_CERTIFICATE", + "message": "No Dues Certificate fees", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_NKS_NO_DUE_CERTIFICATE_FEES", + "message": "No Due Certificate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_NKS_OUTDOOR_BUILDING_FEES", + "message": "Outdoor Building Fees", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_NKS_RAIN_HARVESTING_CHARGES", + "message": "Rain Harvesting Charges", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_NKS_REGULARISATION_OF_BUILDINGS", + "message": "Regularisation of Buildings", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_NKS_SUB_DIVISION_CHARGES_FEE", + "message": "Sub division charges fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_NKS_UNDER_DEVELOPMENT_FEES", + "message": "Under Development Fees", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_NKS__MALBA_FEES", + "message": " Malba fees", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_OM", + "message": "O&M Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_OM_PLUMBER_LICENSE_FEE", + "message": "Plumber License Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_OM_ROAD_CUT_FEES", + "message": "Road Cut Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_OM_SEWERAGE_DISCONNECTION_CONNECTION_FEES", + "message": "Sewerage Disconnection/Connection Fees", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_OM_WATER_CONNECTION/ DISCONNECTION_FEES", + "message": "Water connection/disconnection fees", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_OM_WATER_CONNECTION/DISCONNECTION_FEES", + "message": "Water connection / disconnection fees", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_OM_WATER_CONNECTION_DISCONNECTION_FEES", + "message": "Water connection disconnection fees", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_OTHER", + "message": "Other Fees", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_OTHER_BUS_ADDA_FEE", + "message": "Bus Adda Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_OTHER_CANDY_FEE_SLAUGHTER_HOUSE", + "message": "Candy fee (Slaughter House)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_OTHER_CONSERVANCY_FEE", + "message": "Conservancy fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_OTHER_DISPENSARY_FEE", + "message": "Dispensary Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_OTHER_DOG_REGISTRATION", + "message": "Dog Registration", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_OTHER_FIRE_CALL_REPORT_FEE", + "message": "Fire Call Report Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_OTHER_FIRE_NOC_FEE", + "message": "Fire NOC Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_OTHER_FIRE_TENDER_FEE", + "message": "Fire Tender Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_OTHER_LICENSE_FEE_SLAUGHTER_HOUSE", + "message": "License fee (Slaughter House)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_OTHER_MISC_CHALLANS", + "message": "Misc. Challans", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_OTHER_NOC_FEE", + "message": "NOC Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_OTHER_NOC_FEES", + "message": "NOC Fees", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_OTHER_NO_DUE_CERTIFICATE_ELECTRICITY", + "message": "No due certificate electricity", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_OTHER_OTHERS_FEE", + "message": "Others Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_OTHER_OTHER_FEES", + "message": "Other fees", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_OTHER_REGISTERY_AND_BANK_LOAN", + "message": "Registery and bank loan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_OTHER_SALE_OF_COMPOST_FEES", + "message": "Sale of Compost Fees", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_OTHER_SALE_OF_RECYCLABLE_FEES", + "message": "Sale of Recyclable Fees", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_OTHER_STREET_LIGHT_POLE_TRANSFER_FEE", + "message": "Street Light Pole Transfer fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_OTHER_SWIMMING_POOL_AND_GYMNACTICS_HALL_FEES", + "message": "Swimming Pool And Gymnactics Hall Fees", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_OTHER_WATER_CHARGES", + "message": "Water Charges", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_PT", + "message": "Property Tax", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_PT_MUTATION", + "message": "Transfer of Ownership", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_RT", + "message": "Rents", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_RT_COMMERCIAL_USE_OF_MUNICIPAL_LAND", + "message": "Commercial Use of Municipal Land", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_RT_COMMUNITY_CENTRE_BOOKING_FEE", + "message": "Community Centre Booking Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_RT_JAMIN_THEKA", + "message": "Jamin Theka", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_RT_LAND_RENT", + "message": "Land Rent", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_RT_MUNICIPAL_SHOPS_RENT", + "message": "Municipal Shops Rent", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_RT_PARKING_FEE", + "message": "Parking Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_RT_SALE_OF_LAND", + "message": "Sale of Land", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_RT_SERVICE_TAX_GST_OF_RENT_OF_MC_PROPERTIES", + "message": "Service Tax/GST of Rent of MC Properties", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_RT_STREET_VENDOR", + "message": "Street Vendor", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_RT_STREET_VENDOR_ICARD/CERTIFICATE_FEES", + "message": "Street vendor ICARD/Certificate Fees", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_RT_STREET_VENDOR_ICARD_CERTIFICATE_FEES", + "message": "Street vendor ICARD/Certificate Fees ", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_RT_TOWER_ANNUAL_RENT", + "message": "Tower Annual Rent", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_RT_TOWER_INSTALLATION", + "message": "Tower Installation", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_RT_TOWER_RENT", + "message": "Tower Rent", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_SNT", + "message": "Sanitation", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_SNT_CLEAN_SAFAI_SANITATION", + "message": "Clean/Safai Sanitation", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_SNT_DEAD_ANIMALS_CONTRACT", + "message": "Dead animals contract", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_SNT_LICENCE_PURE_FOOD", + "message": "Licence Pure food", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_ST", + "message": "Stationary", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_ST_EXPENDITURE_SANTITATION_NOT_INCOME", + "message": "Expenditure santitation (Not Income)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_ST_STATIONARY_NOT_INCOME", + "message": "Stationary (Not Income)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_SW", + "message": "Sewerage Connection", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_SW_ONE_TIME_FEE", + "message": "Sewerage Connection One Time Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_TB", + "message": "Tehbazaari Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_TB_ADVERTISEMENT_FEE", + "message": "Advertisement fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_TB_CHALLAN_UNDER_SECTION_156", + "message": "Challan Under section 156,121 etc", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_TB_REHRI_CHALLAN", + "message": "Rehri Challan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_TB_REHRI_RICKSHAW_CHALLAN", + "message": "Rehri/Rickshaw Challan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_TB_TEHBAZAARI", + "message": "Tehbazaari Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_TEHBAZAARI FEE", + "message": "Tehbazaari Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_TEHBAZAARI FEE_CHALLAN_UNDER_SECTION_156_121_ETC", + "message": "Challan Under section 156,121 etc", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_TEHBAZAARI_FEE", + "message": "Tehbazaari Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_TEHBAZAARI_FEE_CHALLAN_UNDER_SECTION_156", + "message": "Challan Under section 156,121 etc", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_TL", + "message": "Trade License", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_TX", + "message": "Tax", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_TX_ELECTRICITY_CHUNGI", + "message": "Electricity Chungi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_TX_HOUSE_TAX", + "message": "House Tax", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_TX_NO_DUES_CERTIFICATE", + "message": "NDC - No Dues Certificate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_TX_PROPERTY TAX_DISHONOURED_CHEQUE_PAYMENT", + "message": "Property Tax Dishonoured Cheque Payment", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_TX_PROPERTY_TAX_13_14", + "message": "Property tax 2013-14", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_TX_PROPERTY_TAX_2013_14", + "message": "Property Tax 2013-14", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_TX_PROPERTY_TAX_DISHONOURED_CHEQUE_PAYMENT", + "message": "Property Tax Dishonoured Cheque Payment", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_TX_TRANSFER_PROPERTY_FEES", + "message": "Transfer property Fees", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_TX_TS1_COPY_REGISTER_FOR_OLD_SURVEY", + "message": "TS1 copy register for old survey", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_WATERCHARGES", + "message": "Water Charges", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_WATERCHARGES_METERED", + "message": "Water Charges Metered", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_WATERCHARGES_NONMETERED", + "message": "Water Charges Nonmetered", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_WF", + "message": "Work Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_WF_CONTRACTOR_ENLISTMENT", + "message": "Contractor Enlistment", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_WF_OFC_PERMISSION_FEES", + "message": "OFC Permission fees", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_WF_TENDER FORM FEE", + "message": "Tender Form Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_WF_TENDER_FORM_FEE", + "message": "Tender Form Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_WS", + "message": "Water Connection", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_WS_ONE_TIME_FEE", + "message": "Water Connection One Time Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSSINESSSERVICE_FIRENOC", + "message": "Fire Noc", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSSINESSSERVICE_TEHBAZAARI_FEE", + "message": "Tehbazaari Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSSINESSSERVICE_WATERCHARGES", + "message": "Water Charges", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLING_SERVICE_ERROR", + "message": "Bills Not found", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILLNO-TX.Electricity_Chungi", + "message": "Bill No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILL_AMEND_DOCS_UPLOADED", + "message": "Documents Uploaded", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILL_CREATE", + "message": " and Bill has been created", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILL_CREATED", + "message": " and Bill has been created", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILL_CREATED_SUCCESS", + "message": "Bill has been created", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILL_GENIE_ACTIVE_LABEL", + "message": "Active", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILL_GENIE_SEARCH_TABLE_HEADER", + "message": "Search Results for Bill", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILL_ID", + "message": "Bill Id", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILL_KEY", + "message": "Bill Key", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILL_OLD_AMOUNT", + "message": "Current Demand", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILL_REDUCED_AMOUNT_RS", + "message": "Reduced Amount (Rs)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILL_RS_HEADER", + "message": "Rs.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILL_SEARCH_URL", + "message": "Bill Search Url", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILL_STATUS_FAILED", + "message": "Failed", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILL_STATUS_PAYMENT_COMPLETED", + "message": "Payment Completed", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILL_STATUS_PAYMENT_FAILED", + "message": "Payment Failed", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILL_STATUS_PAYMENT_INITIATED", + "message": "Payment Initiated", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILL_STATUS_PAYMENT_INITIATED_TOAST", + "message": "Payment Initiated, Job Id: ", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILL_STATUS_PAYMENT_PENDING", + "message": "Payment Pending", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILL_STATUS_PAYMENT_SUCCESS", + "message": "Payment Completed", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILL_STATUS_SUBMITTED", + "message": "Pending Payment", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILL_TOTAL_AMOUNT", + "message": "Total Amount", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BILL_UPDATED_AMOUNT", + "message": "Proposed Demand", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BIRTHANDDEATHCERTIFICATEPAYMENT", + "message": "Birth and Death Certificate Payment Records", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BIRTHRECORDSCOUNTREPORT", + "message": "Birth Count Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BIRTHRECORDSCOUNTREPORTCBLEVEL", + "message": "Birth Records Count Report by District", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BIRTH_AND_DEATH", + "message": "Birth & Death", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BIRTH_CERT_FEE", + "message": "Birth Certificate Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BIRTH_GENDER_FEMALE", + "message": "Female", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BIRTH_GENDER_MALE", + "message": "Male", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BIRTH_GENDER_OTHERS", + "message": "Others", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BND_BIRTH_COMMON", + "message": "Birth certificate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BND_CERTIFICATE_NAME", + "message": "Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BND_DEATH_COMMON", + "message": "Death Certificate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BND_EDIT_REGISTRATION", + "message": "New Registration", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BND_GOVT_OF", + "message": "Punjab", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BORING_MISTRY", + "message": "Boring Mistry", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPAREG_HEADER_APPL_BPAREG_EDC_CERTIFICATE", + "message": "Educational certificates", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPAREG_HEADER_APPL_BPAREG_EXP_CERTIFICATE", + "message": "Experience certificates", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPAREG_HEADER_APPL_BPAREG_GOVT_APPROVED_ID_CARD", + "message": "Identity Proof", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPAREG_HEADER_APPL_BPAREG_INCOMETAX_STATEMENT", + "message": "Income tax statement", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPAREG_HEADER_APPL_BPAREG_OTHERS", + "message": "Others", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPAREG_HEADER_APPL_BPAREG_PASS_PORT_SIZE_PHOTO", + "message": "Recent Passport size photograph of the applicant", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPAREG_HEADER_APPL_BPAREG_REGISTRATION_CERTIFICATE", + "message": "Registration certificate of license", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPAREG_HEADER_APPL_BPAREG_SHOWCAUSE_NOTICE_IFANY", + "message": "Showcause notice", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_ADD_OWNER", + "message": "Add Owner", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_AIRPORT_AUTHORITY_HEADER", + "message": "Airport NOC", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_AIRPORT_AUTHORITY_LABEL", + "message": "Airport Authority Application Number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_APPLICANT_CORRESPONDENCE_ADDRESS_LABEL", + "message": "Correspondence Address", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_APPLICANT_DETAILS_HEADER", + "message": "Owner Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_APPLICANT_DOB_LABEL", + "message": "Date Of Birth", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_APPLICANT_EMAIL_LABEL", + "message": "Email", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_APPLICANT_FATHER_HUSBAND_NAME_LABEL", + "message": "Father/Husband's Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_APPLICANT_FATHER_HUSBAND_NAME_PLACEHOLDER", + "message": "Enter Father/Husband's Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_APPLICANT_MOBILE_NO_LABEL", + "message": "Mobile No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_APPLICANT_NAME_LABEL", + "message": "Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_APPLICANT_PAN_LABEL", + "message": "PAN No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_APPLICANT_RELATIONSHIP_FATHER_RADIOBUTTON", + "message": "Father", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_APPLICANT_RELATIONSHIP_HUSBAND_RADIOBUTTON", + "message": "Husband", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_APPLICANT_RELATIONSHIP_LABEL", + "message": "Relationship", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_APPLICATIONTYPE_BPAREG", + "message": "Stakeholder", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_APPLICATION_BLOCK1_LABEL", + "message": "Block 1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_APPLICATION_BLOCK_WISE_OCCUPANCY_SUB_OCCUPANCY_USAGE_TITLE", + "message": "Block wise occupancy /sub occupancy and usage details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_APPLICATION_BUILDING_PERMIT_NO_LABEL", + "message": "Building permit application Number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_APPLICATION_DEMOLITION_AREA_LABEL", + "message": "Demolition Area", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_APPLICATION_HIGH_FROM_GROUND", + "message": "High From Ground Level From Mumty (In Mtrs)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_APPLICATION_NO_CODE", + "message": "Application No. {0}", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_APPLICATION_NO_OF_FLOORS", + "message": "Number Of Floors", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_APPLICATION_NUMBER_LABEL", + "message": "Application Number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_APPLICATION_OCCUPANCY_PLACEHOLDER", + "message": "Select Occupancy", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_APPLICATION_PROPOSED_BUILDING_LABEL", + "message": "Proposed Building Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_APPLICATION_RESIDENTIAL_LABEL", + "message": "Residential", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_APPLICATION_SCRUNITY_DETAILS_TITLE", + "message": "Building Plan Scrutiny Application Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_APPLICATION_SCRUNITY_REPORT_LABEL", + "message": "Scrutiny Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_APPLICATION_SUCCESS_MESSAGE_MAIN", + "message": "Application Submitted Successfully", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_APPLICATION_SUCCESS_MESSAGE_SUB", + "message": "A notification regarding Application Submission has been sent at registered Mobile No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_APPLICATION_TOTAL_BUILDUP_AREA", + "message": "Total Buildup Area (sq.mtrs)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_APPLICATION_UPLOAD_DIAGRAM_LABEL", + "message": "Uploaded Diagram", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_APPLY_FOR_BUILDING_PERMIT_HEADER", + "message": "Apply for building permit", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_APPL_FEES", + "message": "Application Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_APP_DETAILS_DEMOLITION_DETAILS_LABEL", + "message": "Demolition Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_APP_DETAILS_PROPOSED_BUILDING_DETAILS_LABEL", + "message": "Demolition Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_APP_FEE_RECEIPT", + "message": "Application fee receipt", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_BASIC_DETAILS_APPLICATION_DATE_LABEL", + "message": "Application Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_BASIC_DETAILS_APPLICATION_FEE_LABEL", + "message": "Application Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_BASIC_DETAILS_APPLICATION_NAME_LABEL", + "message": "Applicant Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_BASIC_DETAILS_APPLICATION_TYPE_LABEL", + "message": "Application type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_BASIC_DETAILS_APPLICATION_TYPE_PLACEHOLDER", + "message": "Select Application Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_BASIC_DETAILS_APP_DATE_LABEL", + "message": "Application Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_BASIC_DETAILS_APP_FEE_LABEL", + "message": "Application Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_BASIC_DETAILS_OCCUPANCY_LABEL", + "message": "Occupancy", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_BASIC_DETAILS_REMARKS_LABEL", + "message": "Remarks", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_BASIC_DETAILS_REMARKS_PLACEHOLDER", + "message": "Enter Remarks Here", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_BASIC_DETAILS_RISK_TYPE_LABEL", + "message": "Risk Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_BASIC_DETAILS_RISK_TYPE_PLACEHOLDER", + "message": "Select Risk Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_BASIC_DETAILS_SCRUTINY_NO_LABEL", + "message": "Building plan scrutiny number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_BASIC_DETAILS_SCRUTINY_NUMBER_LABEL", + "message": "Scrutiny Number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_BASIC_DETAILS_SCRUTINY_NUMBER_PLACEHOLDER", + "message": "Enter Scrutiny Number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_BASIC_DETAILS_SCRUTINY_NUMBER_SEARCH_TITLE", + "message": "Please search scrutiny details linked to the scrutiny number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_BASIC_DETAILS_SERVICE_TYPE_LABEL", + "message": "Service type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_BASIC_DETAILS_SERVICE_TYPE_PLACEHOLDER", + "message": "Select service type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_BASIC_DETAILS_TITLE", + "message": "Basic Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_BLOCK_SUBHEADER", + "message": "Block", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_BOUNDARY_CIRCLE_LABEL", + "message": "Circle", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_BOUNDARY_CIRCLE_PLACEHOLDER", + "message": "Select Circle", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_BOUNDARY_CITY_TOWN_LABEL", + "message": "City/Town", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_BOUNDARY_CITY_TOWN_PLACEHOLDER", + "message": "Select City/Town", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_BOUNDARY_DETAILS_TITLE", + "message": "Boundary Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_BOUNDARY_GOVT_QUASI_LABEL", + "message": "Whether Government or Quasi Government", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_BOUNDARY_GOVT_QUASI_PLACEHOLDER", + "message": "Select Government", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_BOUNDARY_HOLDING_NO_LABEL", + "message": "Holding No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_BOUNDARY_HOLDING_NO_PLACEHOLDER", + "message": "Enter Holding No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_BOUNDARY_KHATA_NO_LABEL", + "message": "Khata No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_BOUNDARY_KHATA_NO_PLACEHOLDER", + "message": "Enter Khata No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_BOUNDARY_LAND_REG_DETAIL_LABEL", + "message": "Land Registration Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_BOUNDARY_LAND_REG_DETAIL_PLACEHOLDER", + "message": "Enter Land Registration Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_BOUNDARY_PLOT_AREA_LABEL", + "message": "Plot Area", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_BOUNDARY_PLOT_DETAILS_TITLE", + "message": "Details Of Plot", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_BOUNDARY_PLOT_NO_LABEL", + "message": "Plot No(MSP)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_BOUNDARY_PLOT_NO_PLACEHOLDER", + "message": "Enter Plot No(MSP)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_BOUNDARY_REVENUE_WARD_LABEL", + "message": "Revenue Ward", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_BOUNDARY_REVENUE_WARD_PLACEHOLDER", + "message": "Select Revenue Ward", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_BOUNDARY_SUMMARY", + "message": "Plot & Boundary Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_BUILDING_EXTRACT_HEADER", + "message": "Proposed Building Abstract", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_CITIZEN_HOME_ARCHITECT_LOGIN_LABEL", + "message": "Registered Architect Login", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_CITIZEN_HOME_REGISTER_ARCHITECT_BUILDER_LABEL", + "message": "Register as an Architect / Buider", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_CITIZEN_HOME_STAKEHOLDER_INCLUDES_INFO_LABEL", + "message": "Stakeholder includes Architect, Builder etc", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_CITIZEN_HOME_STAKEHOLDER_LOGIN_LABEL", + "message": "Register as a Stakeholder", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_CITIZEN_HOME_VIEW_APP_BY_CITIZEN_LABEL", + "message": "View applications by Citizen", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_CLICK_HERE_TO_SEARCH_LINK", + "message": "Click here to Search Application", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_COMMON_BUTTON_HOME", + "message": "GO TO HOME", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_COMMON_DOCS", + "message": "Documents", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_COMMON_TABLE_COL_BUILD_AREA", + "message": "Buildup Area", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_COMMON_TABLE_COL_CARPET_AREA", + "message": "Carpet Area", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_COMMON_TABLE_COL_FLOOR_AREA", + "message": "Floor Area", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_COMMON_TABLE_COL_FLOOR_DES", + "message": "Floor Description", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_COMMON_TABLE_COL_OCCUP", + "message": "Occupancy/Sub Occupancy", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_COMMON_TITLE", + "message": "Stakeholder Registration", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_COUNCIL_NUMBER", + "message": "Council for Architecture No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_DOCUMENT_DETAILS_BUTTON_UPLOAD_FILE", + "message": "UPLOAD FILE", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_DOCUMENT_DETAILS_HEADER", + "message": "Document Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_DOCUMENT_DETAILS_LABEL", + "message": "Document Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_DOCUMENT_DETAILS_SUBTEXT", + "message": "Only one file can be uploaded for one document. If multiple files need to be uploaded then please combine all files in a pdf and then upload", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_EDCR_DETAILS", + "message": "eDCR Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_ENTER_APPLICANT_CORRESPONDENCE_ADDRESS_PLACEHOLDER", + "message": "Enter Correspondence Address", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_ENTER_APPLICANT_DOB_PLACEHOLDER", + "message": "DD/MM/YYYY", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_ENTER_APPLICANT_EMAIL_PLACEHOLDER", + "message": "Enter Email", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_ENTER_APPLICANT_MOBILE_NO_PLACEHOLDER", + "message": "Enter Mobile No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_ENTER_APPLICANT_NAME_PLACEHOLDER", + "message": "Enter Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_ENTER_APPLICANT_PAN_PLACEHOLDER", + "message": "Enter Applicant's PAN No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_FAQ_ANS_ONE", + "message": "When an eDCR scrutiny fails, the error information is marked across each line item in the output file. The architect can make the corrections accordingly and resubmit the plan real time. This can be done any number of times without incurring any additional charges.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_FAQ_ANS_THREE", + "message": "The eDCR scrutiny system compares the parameters in the drawings against the by laws set in the corresponding administrative region and evaluates if they are violating. In the output file, against each paramter that is evaluated, there will be an indication to show if that is approved or rejected. The entire scrutiny process takes ~5 seconds", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_FAQ_ANS_TWO", + "message": "You can renew permits at the counter or through the portal. After logging in, search for the relevant permit application in the portal. Then click on link for the permit that you wish to renew. Next, complete the application for the renewal of permit and click submit.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_FAQ_QUES_ONE", + "message": "What happens when eDCR scrutiny fails? ", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_FAQ_QUES_THREE", + "message": "How does eDCR Scrutiny works and how much time it takes to get the diagrams scrutinized? ", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_FAQ_QUES_TWO", + "message": "How do I renew my permit? ", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_FIRE_NOC_HEADER", + "message": "Fire No Objection Certificate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_FIRE_NOC_LABEL", + "message": "Fire NOC Application Number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_FORWARD_APPLICATION_HEADER", + "message": "Forward Application", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_FORWARD_SUCCESS_MESSAGE_MAIN", + "message": "Application Forwarded Successfully", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_GENDER_FEMALE_RADIOBUTTON", + "message": "Female", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_GENDER_LABEL", + "message": "Gender", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_GENDER_MALE_RADIOBUTTON", + "message": "Male", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_GENDER_TRANSGENDER_RADIOBUTTON", + "message": "Transgender", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_HEADER_BPA_APPLY_PENDING_APPL_FEE", + "message": "New Building Plan Permit Application Submitted Successfully", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_HEADER_BPA_OC_APPLY_PENDING_APPL_FEE", + "message": "Occupancy Certificate Application Submitted Successfully", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_HEADER_BPA_SEND_BACK_TO_CITIZEN_CITIZEN_ACTION_PENDING_AT_DOC_VERIF", + "message": "New Building Plan Permit Application Is Sent To The Applicant", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_HEIGHT_FROM_GROUND_LEVEL", + "message": "Height from ground level from mumty", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_HOLDING_NUMBER_LABEL", + "message": "Holding Number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_HOME_SEARCH_RESULTS_DESC", + "message": "Provide at least one parameter to search for an application", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_HOME_SEARCH_RESULTS_OWN_MOB_LABEL", + "message": "Mobile Number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_HOME_SEARCH_RESULTS_OWN_MOB_PLACEHOLDER", + "message": "Enter your mobile No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_HOME_SEARCH_RESULTS_TABLE_HEADING", + "message": "Search Result of Application", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_HOME_SEARCH_RESULTS_TL_NO_LABEL", + "message": "Trade License No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_INCORRECT_PERMIT_NUMBER", + "message": "Permit no you entered is not correct.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_INCORRECT_SCRUTINY_NUMBER", + "message": "Incorrect Scrutiny Number!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_KHATHA_NUMBER_LABEL", + "message": "Khata Number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_LICENSE_DETAILS_LABEL", + "message": "License Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_LICENSE_DET_CAPTION", + "message": "Licensee Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_LICENSE_TYPE", + "message": "License Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_LICENSE_TYPE_TEXT", + "message": "Please select the license type for which you want to apply license for", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_LICENSE_VALID_LABEL", + "message": "Permit valid up to {0}", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_LOC_MOHALLA_LABEL", + "message": "Locality / Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_LOW_APPL_FEES", + "message": "Application Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_LOW_SANC_FEES", + "message": "Sanction Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_MOBILE_NO_TOOLTIP_MESSAGE", + "message": "Please search profile linked to the mobile no.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_NC_APP_FEE", + "message": "Application Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_NEW_APPLICATION_BTN", + "message": "NEW APPLICATION", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_NEW_BUILDING_HEADER", + "message": "New Stakeholder Registration", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_NEW_BUILDING_PERMIT_DESCRIPTION", + "message": "It would take 5 minutes to complete this application and the following documents are required in .pdf or .jpeg format to complete the application.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_NEW_TRADE_DETAILS_HEADER_DETAILS", + "message": "Location Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_NOC_DETAILS", + "message": "Noc Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_NOC_STATUS", + "message": "Status", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_NOT_ABLE_TO_FIND_APP_MSG", + "message": "Not able to find the application?", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_NO_APPLICATION_PRESENT", + "message": "No Application Found", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_NO_DOCUMENTS_UPLOADED_LABEL", + "message": "No Documents Uploaded", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_OCCUPANCY_TYPE", + "message": "Occupancy Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_OCCUPANCY_TYPE_A", + "message": "Residential", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_OCCUPANCY_TYPE_B", + "message": "Educational", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_OCCUPANCY_TYPE_C", + "message": "Heatlh services", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_OCCUPANCY_TYPE_D", + "message": "Assembly", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_OCCUPANCY_TYPE_E", + "message": "Socio culture", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_OCCUPANCY_TYPE_F", + "message": "Commercial", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_OCCUPANCY_TYPE_G", + "message": "Industrial", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_OCCUPANCY_TYPE_H", + "message": "Public Buildings", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_OCCUPANCY_TYPE_I", + "message": "Hazardous", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_OCCUPANCY_TYPE_J", + "message": "Transportation", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_OCCUPANCY_TYPE_K", + "message": "Sports", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_OCCUPANCY_TYPE_L", + "message": "Religious", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_OCC_SUBOCC_HEADER", + "message": "Blockwise Occupancy and Sub Occupancy Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_OC_APPLICATION_SCRUNITY_DETAILS_TITLE", + "message": "Building Plan Scrutiny Application Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_OC_APPL_FEES", + "message": "Application Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_OC_NEW_BUILDING_CONSTRUCTION_LABEL", + "message": "OC for New Building Construction", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_OC_SANC_FEES", + "message": "Deviation Penalty", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_OWNER_INFORMATION", + "message": "Owner Information", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_OWNER_INFO_TITLE", + "message": "Owner Information", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_OWNER_NAME_LABEL", + "message": "Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_OWNER_SUB_TYPE_LABEL", + "message": "Type of Owner - Subtype", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_OWNER_SUB_TYPE_PLACEHOLDER", + "message": "Select Owner Subtype", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_OWNER_TYPE", + "message": "Owner Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_OWNER_TYPE_PLACEHOLDER", + "message": "Select Owner Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_OWNER_VALIDATION_ARCHITECT", + "message": "The mobile number entered is registered with an Architect , please enter a different mobile number who is a citizen and not an Architect.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_OWNER_VALIDATION_SUPERVISOR", + "message": "The mobile number entered is registered with an Supervisor, please enter a different mobile number who is a citizen and not an Supervisor.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_PERMIT_ORDER", + "message": "Permit Order", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_PLOT_DETAILS_TITLE", + "message": "Plot Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_PLOT_NUMBER_LABEL", + "message": "Plot Number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_PRIMARY_OWNER", + "message": "Is Primary Owner ?", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_PROCEED_PAYMENT", + "message": "PROCEED TO PAYMENT", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_REGISTRATION", + "message": "BPA Registration", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_SANC_FEES", + "message": "Sanction Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_SAN_FEE_RECEIPT", + "message": "Sanction fee receipt", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_SCRUNITY_SUMMARY", + "message": "Scrutiny Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_SCRUNTINY_REPORT_OUTPUT", + "message": "Scrutiny Report Output", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_SCRUTINY_DETAILS_BLOCK_1_LABEL", + "message": "Block 1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_SCRUTINY_DETAILS_BLOCK_WISE_OCCUPANCY_USAGE_DETAILS_LABEL", + "message": "Block wise occupancy /sub occupancy and usage details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_SCRUTINY_DETAILS_BUILDING_PERMIT_APP_NUMBER_LABEL", + "message": "Building permit application Number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_SCRUTINY_DETAILS_BUILDING_PLAN_SCRUTINY_APP_DETAILS_LABEL", + "message": "Building Plan Scrutiny Application Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_SCRUTINY_DETAILS_DEMOLITION_AREA_LABEL", + "message": "Demolition Area", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_SCRUTINY_DETAILS_DEMOLITION_DETAILS_LABEL", + "message": "Demolition Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_SCRUTINY_DETAILS_HIGH_FROM_GROUND_LEVEL_LABEL", + "message": "High From Ground Level From Mumty (In Mtrs)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_SCRUTINY_DETAILS_NUMBER_OF_FLOORS_LABEL", + "message": "Number of Floors", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_SCRUTINY_DETAILS_PROPOSED_BUILDING_DETAILS_LABEL", + "message": "Proposed Building Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_SCRUTINY_DETAILS_RESIDENTIAL_LABEL", + "message": "Residential", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_SCRUTINY_DETAILS_SCRUTINY_REPORT", + "message": "Scrutiny Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_SCRUTINY_DETAILS_TOTAL_BUILDUP_AREA_LABEL", + "message": "Total Buildup Area (sq.mtrs)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_SCRUTINY_DETAILS_UPLOADED_DIAGRAM_LABEL", + "message": "Uploaded Diagram", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_SCRUTINY_REPORT_PDF", + "message": "Scrutiny Report.PDF", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_SEARCH_APP__SERVICE_TYPE_TOAST_MESSAGE", + "message": "Please select applicationType and serviceType and then search", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_SEARCH_RESULTS_HEADING", + "message": "Application for Building permit Order", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_SELECTED_TEXT", + "message": "Selected", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_SPECIAL_APPLICANT_CATEGORY_LABEL", + "message": "Special Applicant Category", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_SPECIAL_APPLICANT_CATEGORY_PLACEHOLDER", + "message": "Select Special Applicant Category", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_SUBMIT_HEADER_BPA_VERIFY_FORWARD_CITIZEN_ACTION_PENDING_AT_DOC_VERIF", + "message": "New Building Plan Permit Application Submitted Successfully", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_SUBMIT_SUB_HEADER_BPA_VERIFY_FORWARD_ARCHITECT_CITIZEN_ACTION_PENDING_AT_DOC_VERIF", + "message": "Application reference is shared with applicant and architect.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_SUBOCCUPANCYTYPE_APARTMENT_FLAT", + "message": "Apartment/Flat", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_SUBOCCUPANCYTYPE_APPARTMENT-FLAT", + "message": "Apartment/Flat", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_SUBOCCUPANCYTYPE_APPARTMENT_FLAT", + "message": "Apartment/Flat", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_SUBOCCUPANCYTYPE_E_OAH", + "message": "Old Age Home", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_SUBOCCUPANCYTYPE_FARM_HOUSE", + "message": "Farm House", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_SUBOCCUPANCYTYPE_HOSTEL_EDUCATIONAL", + "message": "Hostel Educational", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_SUBOCCUPANCYTYPE_H_JSISS", + "message": "Junction Stations, Intermediate Stations and Substations", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_SUBOCCUPANCYTYPE_J_MPT", + "message": "Metropolitan Passenger Terminal", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_SUBOCCUPANCYTYPE_OLD_AGE_HOME", + "message": "Old Age Home", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_SUBOCCUPANCYTYPE_PROFESSIONAL_OFFICE", + "message": "Professional Office", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_SUBOCCUPANCYTYPE_RESIDENTIAL", + "message": "Residential", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_SUBOCCUPANCYTYPE_SERVICE_APARTMENT", + "message": "Service Apartment", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_SUBOCCUPANCYTYPE_SERVICE_APPARTMENT", + "message": "Service Apartment", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_SUBOCCUPANCYTYPE_SPECIAL_RESIDENTIAL", + "message": "Special Residential", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_SUB_HEADER_BPA_APPLY_SUPERVISOR_PENDING_APPL_FEE", + "message": "Application reference is shared with applicant and supervisor.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_SUB_HEADER_BPA_OC_APPLY_SUPERVISOR_PENDING_APPL_FEE", + "message": "Application reference is shared with applicant and supervisor.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_SUB_HEADER_BPA_REJECT_SUPERVISOR_REJECTED", + "message": "New building plan permit application is rejected.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_SUB_HEADER_BPA_SEND_BACK_TO_CITIZEN_ARCHITECT_CITIZEN_ACTION_PENDING_AT_DOC_VERIF", + "message": "Applicant and Architect are notified that the application has been sent back for clarification.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_SUB_HEADER_BPA_SEND_TO_ARCHITECT_SUPERVISOR_INITIATED", + "message": "Supervisor are notified about your review comments.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_SUB_OCCUPANCY_LABEL", + "message": "Sub-Occupancy", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_SUB_OCCUP_TYPE_LABEL", + "message": "Sub Occupancy Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_SUB_OCCUP_TYPE_PLACEHOLDER", + "message": "Select Sub Occupancy Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_SUMMARY_EDIT", + "message": "Edit", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_SUMMARY_HEADER", + "message": "Summary", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_TABLE_COL_FLOOR", + "message": "Floor", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_TABLE_COL_LEVEL", + "message": "Level", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_TOTAL_BUILT_UP_AREA_HEADER", + "message": "Total Builtup Area", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_UPLOADED_PLAN_DIAGRAM", + "message": "Uploaded Plan Diagram", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_UPLOAD_RESTRICTIONS", + "message": "Only .jpg and .pdf files. 6MB max file size.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPA_WORKFLOW_DOCS", + "message": "Workflow Docs", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPD", + "message": "Building plan diagram", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPD.EP", + "message": "Elevation plan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPD.EP.EP", + "message": "Elevation plan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPD.FP", + "message": "Floor plan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPD.FP.FP", + "message": "Floor plan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPD.PP", + "message": "Parking plan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPD.PP.PP", + "message": "Parking plan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPD.RP", + "message": "Roof plan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPD.RP.RP", + "message": "Roof plan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPD.SCP", + "message": "Service Plan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPD.SCP.SCP", + "message": "Service Plan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPD.SECP", + "message": "Section plan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPD.SECP.SECP", + "message": "Section plan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPD.SP", + "message": "Site plan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPD.SP.SP", + "message": "Site Plan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPD_EP", + "message": "Elevation plan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPD_EP_EP", + "message": "Elevation plan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPD_FP", + "message": "Floor plan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPD_FP_FP", + "message": "Floor plan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPD_PP", + "message": "Parking plan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPD_PP_PP", + "message": "Parking plan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPD_RP", + "message": "Roof plan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPD_RP_RP", + "message": "Roof plan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPD_SCP", + "message": "Service Plan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPD_SCP_SCP", + "message": "Service Plan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPD_SECP", + "message": "Section plan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPD_SECP_SECP", + "message": "Section plan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPD_SP", + "message": "Site plan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPD_SP_SP", + "message": "Site Plan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BPL", + "message": "Below Poverty Line", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BUILDING_OC_PLAN_SCRUTINY", + "message": "Occupancy Certificate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BUILDING_PLAN", + "message": "Building Plan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BUILDING_PLAN_PERMIT_VALIDITY", + "message": "Building plan permit validity is", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BUILDING_PLAN_SCRUTINY", + "message": "Permit Application", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BUILING_PLANS_SCRUTINISED_IN_LAST_12_MONTHS", + "message": "building plan diagrams scrutinised in the last 12 months", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BUILTUP", + "message": "Built Up", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BUILTUP.INDEPENDENTPROPERTY", + "message": "Independent Building", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BUILTUP.SHAREDPROPERTY", + "message": "Flat/Part of the building", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BUILTUP.VACANT", + "message": "Vacant Land", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "BUSINESS_SERVICE", + "message": "Business Service", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CALL_CENTER_HELPLINE", + "message": "Call Center / Helpline", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CAMERA", + "message": "Camera", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CANCELED", + "message": "Canceled", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CANCELLED", + "message": "Cancelled", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CANCEL_CHALLAN_HEADER", + "message": "Header", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CANCEL_COMMENT_LABEL ", + "message": "Comment", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CANCEL_NO", + "message": "No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CANCEL_YES", + "message": "Yes", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CANNOT_HAVE_SAME_SKILL_TYPE", + "message": "Individual can not have same skill Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CARD", + "message": "Card", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CASH", + "message": "Cash", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CATEGORIES_OF_COMPLAINT_TYPES_CAN_BE_SUBMITTED_ON_GRIEVANCE_PORTAL", + "message": "categories of complaint types can be submitted on grievance portal. ", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CATEGORY_CIRCULARS", + "message": "Circulars", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CATEGORY_CITIZEN_CHARTER", + "message": "Citizen Charter", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CATEGORY_FORMS", + "message": "Forms", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CATEGORY_GOVERNMENT_ORDERS", + "message": "Government orders", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CATEGORY_TENDERS", + "message": "Tenders", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CBO.NA", + "message": "Not Applicable", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CBO_MUSTER_APPROVED", + "message": "Approved", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CBO_MUSTER_PENDINGFORAPPROVAL", + "message": "Verified", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CBO_MUSTER_PENDINGFORCORRECTION", + "message": "Sent Back", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CBO_MUSTER_PENDINGFORVERIFICATION", + "message": "Submitted", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_ADHERENCE_TO_DATA_PRINCIPLES_INFO_LABEL", + "message": "We adhere to the principles of accountability, transparency, purposeful and proportional collection, usage, storage and disclosure of personally identifiable information (“PII”).", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_ADHERENCE_TO_DATA_PRINCIPLES_LABEL", + "message": "ADHERENCE TO DATA PRIVACY PRINCIPLES", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_AND_", + "message": " and ", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_COLLECT_AND_PROGRAM_LABEL", + "message": "WHAT DATA DO WE COLLECT? / WHAT IS ‘DATA’ UNDER THIS ‘PROGRAM’?", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_COLLECT_INFO_ADMINISTRATIVE_LABEL", + "message": "Data from administrative record systems, such as revenue survey number or other property identifier, connection number, meter number etc. may also be recorded. In the event a person makes payments to the local government, information related to the payment, such as transaction number may also be recorded.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_COLLECT_INFO_IMPROVE_LABEL", + "message": "We collect information/data (“data”) to improve and provide better services to you. We collect and process PII such as your first name, last name, parent’s / guardian’s name, address, email address, telephone number, age, gender, identification documents. We may collect your educational, demographic, location, device and other similar information.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_COLLECT_IP_ADDRESS_LABEL", + "message": "We collect information such as Internet Protocol (IP) addresses, domain name, browser type, Operating System, Date and Time of the visit, pages visited, IMEI/IMSI number, device ID, location information, language settings, handset make & model etc. However, no attempt is made to link these with the true identity of individuals visiting Urban DIGIT app, website, Whatsapp Chatbot etc.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_COLLECT_IP_SERVICES_USED_LABEL", + "message": "The information collected by us shall depend on the services being used by you and may vary from time to time, which will be informed through changes in this policy.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_COLLECT_THIS_DATA_INFO_LABEL", + "message": "We collect data directly from you (when you use our services) as and when you register and login into the app/website. We may also collect data from Union, State, and Local governments, including their agents/employees, as well as receive data that is available openly for public use.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_COLLECT_THIS_DATA_LABEL", + "message": "HOW DO WE COLLECT THIS DATA?", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_DATA_COLLECTION_SHARING_INFO_LABEL", + "message": "By using this service, you confirm that you have read, understood, and accepted this Policy, and that we may collect, process, disclose, and/or share your data as described in this Policy.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_DATA_COLLECTION_SHARING_LABEL", + "message": "YOUR CONSENT TO DATA COLLECTION, PROCESSING, DISCLOSURE, AND/OR SHARING.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_I_AGREE_THE_DIGITS_", + "message": "I agree to the DIGIT's", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_POLICY_BE_CHANGED_INFO_LABEL", + "message": "Yes, this policy is subject to change at any time and without active notice. This page will be updated with any such modified policy, and such changes will not be deemed to take effect until and unless they are shown on this page.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_POLICY_BE_CHANGED_LABEL", + "message": "CAN THIS POLICY BE CHANGED?", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_PP_ADHERENCE_TO_DATA_INFO_LABEL", + "message": "We adhere to the principles of accountability, transparency, purposeful and proportional collection, usage, storage and disclosure of personally identifiable information (“PII”).", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_PP_ADHERENCE_TO_DATA_LABEL", + "message": "ADHERENCE TO DATA PRIVACY PRINCIPLES", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_PP_CAN_THIS_POLICY_CHANGED_INFO_LABEL", + "message": "Yes, this policy is subject to change at any time and without active notice. This page will be updated with any such modified policy, and such changes will not be deemed to take effect until and unless they are shown on this page.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_PP_CAN_THIS_POLICY_CHANGED_LABEL", + "message": "CAN THIS POLICY BE CHANGED?", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_PP_DATA_COLLECTION_PROCESSING_INFO_LABEL", + "message": "By using this service, you confirm that you have read, understood, and accepted this Policy, and that we may collect, process, disclose, and/or share your data as described in this Policy.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_PP_DATA_COLLECTION_PROCESSING_LABEL", + "message": "YOUR CONSENT TO DATA COLLECTION, PROCESSING, DISCLOSURE, AND/OR SHARING.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_PP_DATA_DO_WE_COLLECT_INFO_1_1_LABEL", + "message": "Data from administrative record systems, such as revenue survey number or other property identifier, connection number, meter number etc. may also be recorded. In the event a person makes payments to the local government, information related to the payment, such as transaction number may also be recorded.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_PP_DATA_DO_WE_COLLECT_INFO_1_LABEL", + "message": "We collect information/data (“data”) to improve and provide better services to you. We collect and process PII such as your first name, last name, parent’s / guardian’s name, address, email address, telephone number, age, gender, identification documents. We may collect your educational, demographic, location, device and other similar information.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_PP_DATA_DO_WE_COLLECT_INFO_2_LABEL", + "message": "We collect information such as Internet Protocol (IP) addresses, domain name, browser type, Operating System, Date and Time of the visit, pages visited, IMEI/IMSI number, device ID, location information, language settings, handset make & model etc. However, no attempt is made to link these with the true identity of individuals visiting PROGRAM NAME app, website, Whatsapp Chatbot etc.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_PP_DATA_DO_WE_COLLECT_INFO_3_LABEL", + "message": "The information collected by us shall depend on the services being used by you and may vary from time to time, which will be informed through changes in this policy.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_PP_DATA_DO_WE_COLLECT_INFO_4_LABEL", + "message": "For more information on categories of data we collect and the consent framework please see our", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_PP_DATA_DO_WE_COLLECT_LABEL", + "message": "WHAT DATA DO WE COLLECT? / WHAT IS ‘DATA’ UNDER THIS ‘PROGRAM’?", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_PP_DATA_DO_WE_COLLECT_PP_LINK_LABEL", + "message": "detailed privacy policy.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_PP_DD_DEAL_LABEL", + "message": "PROGRAM NAME refers to the services being provided through PROGRAM NAME website, mobile App, OTHER CHANNELS AS RELEVANT.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_PP_DO_WE_COLLECT_THIS_DATA_INFO_LABEL", + "message": "We collect data directly from you (when you use our services) as and when you register and login into the app/website. We may also collect data from Union, State, and Local governments, including their agents/employees, as well as receive data that is available openly for public use.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_PP_DO_WE_COLLECT_THIS_DATA_LABEL", + "message": "HOW DO WE COLLECT THIS DATA?", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_PP_DO_WE_STORE_THIS_DATA_INFO_1_1_LABEL", + "message": "Unless indicated otherwise, this data will be retained for a minimum period of AS PER UNION / STATE / ULB LAWS and a maximum period of AS PER UNION / STATE / ULB LAWS. You can review and edit your data, as well as delete your data from the app/website by following the procedures AS PER UNION / STATE / ULB LAWS.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_PP_DO_WE_STORE_THIS_DATA_INFO_1_LABEL", + "message": "Your data is stored in a secure manner. PROGRAM NAME is powered by the DIGIT platform, which has embedded privacy settings (such as encryption), which does not allow your data to be visible to anyone, except persons who are authorised to do so by virtue of their official role. ", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_PP_DO_WE_STORE_THIS_DATA_INFO_2_LABEL", + "message": "You may delete your account any time you wish. In case of deletion, we will remove all your PII from the system, so that it is not visible and/or accessible from any regular operation. However, the PII may be retained in an encrypted manner for the purpose of legal requirements/compliances AS PER UNION / STATE / ULB LAWS from the date of deletion/termination.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_PP_DO_WE_STORE_THIS_DATA_INFO_3_LABEL", + "message": "After deletion, in case you wish to recreate your profile, the same is permissible and none of the previously captured information will be populated automatically. You need to register as a fresh user.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_PP_DO_WE_STORE_THIS_DATA_INFO_4_LABEL", + "message": "If you simply delete/remove the application from your mobile device but do not delete your profile or unregister yourself from the app/website, you shall continue to be a registered user of the app and we shall continue to send you all communications that you have opted for unless and until you opt-out of such communications, or AS PER UNION / STATE / ULB LAW.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_PP_DO_WE_STORE_THIS_DATA_INFO_5_LABEL", + "message": "In case you surrender/disconnect your PROGRAM NAME registered mobile number it is recommended to delete your profile or unregister yourself from the application also.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_PP_DO_WE_STORE_THIS_DATA_INFO_6_LABEL", + "message": " We have data security measures adopted to ensure that users data is safe and away from dangers of cyber/physical harms. More about the data security measures can be read ", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_PP_DO_WE_STORE_THIS_DATA_LABEL", + "message": "HOW DO WE STORE THIS DATA?", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_PP_DO_WE_STORE_THIS_DATA_LINK_HERE_LABEL", + "message": " here. ", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_PP_GRIEVANCES_INFO_LABEL", + "message": "In case of any grievances, you may send your complaints for redressal over Grievance Portal available at ", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_PP_GRIEVANCES_INFO_LINK_LABEL", + "message": "Link", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_PP_GRIEVANCES_LABEL", + "message": "GRIEVANCES", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_PP_HOW_DO_WE_PROCESS_INFO_10_LABEL", + "message": "Payments made through the PROGRAM NAME App/website are processed via secure payment gateways.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_PP_HOW_DO_WE_PROCESS_INFO_11_LABEL", + "message": "We will not process, disclose, or share your data except as described in this policy, or as otherwise authorized by you.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_PP_HOW_DO_WE_PROCESS_INFO_1_LABEL", + "message": "We use this data to serve you with the best civic experience, such as providing digital grievance redressal systems, efficient service delivery, creating dashboards of ULB activities, etc. Data is only processed on the basis of a legal mandate and for a legitimate and necessary purpose (to deliver to you the services you are requesting, and to make improvements in service delivery and administration, as well as any other purposes specified by law).", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_PP_HOW_DO_WE_PROCESS_INFO_2_LABEL", + "message": "We process data which is necessary to provide you with the services you are requesting", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_PP_HOW_DO_WE_PROCESS_INFO_3_LABEL", + "message": "We may process, disclose, or share certain metadata, as well as aggregated and anonymised data, in order to assess and improve the status of such service delivery over time.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_PP_HOW_DO_WE_PROCESS_INFO_4_LABEL", + "message": "We may disclose or share this data to/with employees and/or contractors of the urban local body, state government, or other government agencies, service providers, whose role requires them to view or use this information in order to perform their official duties, including providing you the service(s) you are requesting.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_PP_HOW_DO_WE_PROCESS_INFO_5_LABEL", + "message": "Data processed or shared while resolving any disputes that may arise with respect to the transactions/deals that you may conduct using the app/website.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_PP_HOW_DO_WE_PROCESS_INFO_6_LABEL", + "message": "Data processed or shared for monitoring user activity and preferences as evidence from user’s activity on app to provide a better experience in future.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_PP_HOW_DO_WE_PROCESS_INFO_7_LABEL", + "message": "Detecting, investigating and preventing activities that may violate our policies or that may be illegal or unlawful.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_PP_HOW_DO_WE_PROCESS_INFO_8_LABEL", + "message": "Conducting research or analysing of the user preferences and demographics as statistical-masked data and not as individual data.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_PP_HOW_DO_WE_PROCESS_INFO_9_LABEL", + "message": "We may disclose or share this data in order to comply with the law or any legal process, including when required in judicial, arbitral, or administrative proceedings.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_PP_HOW_DO_WE_PROCESS_LABEL", + "message": "WHY AND HOW DO WE PROCESS, DISCLOSE, AND/OR SHARE THIS DATA?", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_PP_HOW_DO_WE_PROTECT_INFO_LABEL", + "message": "By default, PII is maintained in a masked format. Persons with the appropriate authorisation can put in a request for this data to be unmasked. We log each such request, thus creating a non-repudiable and auditable trail of each such access to PII.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_PP_HOW_DO_WE_PROTECT_LABEL", + "message": "HOW DO WE PROTECT PERSONALLY IDENTIFIABLE INFORMATION (PII)?", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_PP_POWERED_BY_DIGIT_LABEL", + "message": "PROGRAM NAME is a collaboration between PARTNER(S) NAME(S) and eGovernments Foundation. It is powered by DIGIT, which is an open-source software platform developed by eGovernments Foundation.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_PP_PRIVANCY_SECURITY_LABEL", + "message": "[PROGRAM NAME] (“we” or “us” or “our”) respects the privacy of our users (“user” or “you” also referred to as ‘your’). Hence, we maintain the highest standards for secure activities , user information/data privacy and security.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_PP_REFERS_LABEL", + "message": "Through PROGRAM NAME, you can access and avail services offered by STATE OR ULB NAME Government departments, Central Government department, Local bodies & their agencies and corporate/private bodies (utility services) (Service Providers). You can use PROGRAM NAME website / application / services in different ways such as, service discovery, availing services, registering grievances, and so on.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_PRIVACYPOLICY_HEADER", + "message": "Privacy Policy", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_PRIVACY_PLOICY_DESCRIBES_LABEL", + "message": "This Privacy Policy describes and determines how we deal with your personal and usage information in accordance with the applicable laws of India.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_PRIVACY_POLICY_", + "message": " Privacy Policy", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_PROCESS_DISCLOSE_SHARE_CONDUCTING_LABEL", + "message": "Conducting research or analysing of the user preferences and demographics as statistical-masked data and not as individual data.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_PROCESS_DISCLOSE_SHARE_DETECTING_LABEL", + "message": "Detecting, investigating and preventing activities that may violate our policies or that may be illegal or unlawful.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_PROCESS_DISCLOSE_SHARE_EMPLOYEES_LABEL", + "message": "We may disclose or share this data to/with employees and/or contractors of the urban local body, state government, or other government agencies, service providers, whose role requires them to view or use this information in order to perform their official duties, including providing you the service(s) you are requesting. ", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_PROCESS_DISCLOSE_SHARE_INFO_LABEL", + "message": "We use this data to serve you with the best civic experience, such as providing digital grievance redressal systems, efficient service delivery, creating dashboards of ULB activities, etc. Data is only processed on the basis of a legal mandate and for a legitimate and necessary purpose (to deliver to you the services you are requesting, and to make improvements in service delivery and administration, as well as any other purposes specified by law).", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_PROCESS_DISCLOSE_SHARE_LABEL", + "message": "WHY AND HOW DO WE PROCESS, DISCLOSE, AND/OR SHARE THIS DATA?", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_PROCESS_DISCLOSE_SHARE_METADATA_LABEL", + "message": "We may process, disclose, or share certain metadata, as well as aggregated and anonymised data, in order to assess and improve the status of such service delivery over time.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_PROCESS_DISCLOSE_SHARE_MONITIRING_LABEL", + "message": "Data processed or shared for monitoring user activity and preferences as evidence from user’s activity on app to provide a better experience in future.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_PROCESS_DISCLOSE_SHARE_NOT_SHARE_LABEL", + "message": "We will not process, disclose, or share your data except as described in this policy, or as otherwise authorized by you.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_PROCESS_DISCLOSE_SHARE_ORDER_TO_COMPLY_LABEL", + "message": "We may disclose or share this data in order to comply with the law or any legal process, including when required in judicial, arbitral, or administrative proceedings.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_PROCESS_DISCLOSE_SHARE_PAYMENTS_LABEL", + "message": "Payments made through the Urban DIGIT App/website are processed via secure payment gateways.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_PROCESS_DISCLOSE_SHARE_PROVIDE_SERVICES_LABEL", + "message": "We process data which is necessary to provide you with the services you are requesting", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_PROCESS_DISCLOSE_SHARE_RESOLVING_LABEL", + "message": "Data processed or shared while resolving any disputes that may arise with respect to the transactions/deals that you may conduct using the app/website.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_PROTECT_PERSONALLY_INFO_LABEL", + "message": "By default, PII is maintained in a masked format. Persons with the appropriate authorisation can put in a request for this data to be unmasked. We log each such request, thus creating a non-repudiable and auditable trail of each such access to PII.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_PROTECT_PERSONALLY_LABEL", + "message": "HOW DO WE PROTECT PERSONALLY IDENTIFIABLE INFORMATION (PII)?", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_RESPECT_PRIVACY_OF_USERS_LABEL", + "message": "We respect the privacy of our users. Hence, we maintain the highest standards for secure activities , user information/data privacy and security.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_STORE_DELETE_YOUR_ACCOUNT_LABEL", + "message": "You may delete your account any time you wish. In case of deletion, we will remove all your PII from the system, so that it is not visible and/or accessible from any regular operation. However, the PII may be retained in an encrypted manner for the purpose of legal requirements/compliances {AS PER UNION / STATE / ULB LAWS} from the date of deletion/termination.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_STORE_DISCONNECT_LABEL", + "message": "In case you surrender/disconnect your registered mobile number it is recommended to delete your profile or unregister yourself from the application also.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_STORE_RECREATE_PROFILE_LABEL", + "message": "After deletion, in case you wish to recreate your profile, the same is permissible and none of the previously captured information will be populated automatically. You need to register as a fresh user.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_STORE_REVIEW_EDIT_LABEL", + "message": "You can review and edit your data, as well as delete your data from the app/website by following the procedures {AS PER UNION / STATE / ULB LAWS}.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_STORE_SECURE_MANNER_LABEL", + "message": "Your data is stored in a secure manner. DIGIT platform, which has embedded privacy settings (such as encryption), which does not allow your data to be visible to anyone, except persons who are authorized to do so by virtue of their official role. Unless indicated otherwise, this data will be retained for a minimum period of {AS PER UNION / STATE / ULB LAWS} and a maximum period of {AS PER UNION / STATE / ULB LAWS}. ", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_STORE_SECURITY_MEASURES_LABEL", + "message": "We have data security measures adopted to ensure that users data is safe and away from dangers of cyber/physical harms. ", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_STORE_THIS_DATA_LABEL", + "message": "HOW DO WE STORE THIS DATA?", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_STORE_UNREGISTER_LABEL", + "message": "If you simply delete/remove the application from your mobile device but do not delete your profile or unregister yourself from the app/website, you shall continue to be a registered user of the app and we shall continue to send you all communications that you have opted for unless and until you opt-out of such communications, or {AS PER UNION / STATE / ULB LAW}.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CCF_TERM_OF_USE_", + "message": " Terms Of Use", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CE_DCOUMENT_UPLOADED_ON", + "message": "Uploaded on", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CE_DOCUMENTS_NOT_FOUND", + "message": "No Documents found", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CE_DOCUMENT_DETAILS", + "message": "Document Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CE_DOCUMENT_DOWNLOAD_LINK", + "message": "Download", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CE_DOCUMENT_OPEN_LINK", + "message": "Link", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CE_DOCUMENT_VIEW_LINK", + "message": "View", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CE_NOTICES_HEADER", + "message": "Notices", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CE_SERACH_DOCUMENTS", + "message": "Search documents", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CE_TABLE_DOCUMENT_LINK", + "message": "Attachment/Link", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CE_TABLE_DOCUMENT_NAME", + "message": "Document Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CE_TABLE_DOCUMENT_POSTED_BY", + "message": "Posted By", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CHAIN_MAN", + "message": "Chain Man", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CHALLANSTATUSREGISTRY", + "message": "Challan Register", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CHALLAN_DETAILS", + "message": "Challan Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CHALLAN_VALIDITY", + "message": "Validity of challan is", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CHANNELSREPORT", + "message": "Channels Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CHECKBOX_ANSWER_TYPE", + "message": "Check boxes", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CHEQUE", + "message": "Cheque", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CHOOSE_AN_ACTION", + "message": "Choose an Action", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CHOOSE_FILE", + "message": "Choose File", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN", + "message": "Online", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZENACTIONREQUIRED", + "message": "Pending for Citizen Action", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZENACTIONREQUIRED-DV", + "message": "Citizen Action Required From DV", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_ACTION_PENDING_AT_DOC_VERIF", + "message": "Citizen Action Pending At Document Verification", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_ACTION_PENDING_AT_FI_VERIF", + "message": "Citizen Action Pending At FI Verification", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_ACTION_PENDING_AT_NOC_VERIF", + "message": "Citizen Action Pending At NOC Verification", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_APPROVAL_INPROCESS", + "message": "Citizen Approval Inprogress", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_CHARTER_DOCUMENT", + "message": "Citizen Charter Document", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_CHARTER_DOC_DESC", + "message": "Citizen Charter Document description.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_CONSENT_FORM_PP_ACCESS_AVAIL_LABEL", + "message": "Through PROGRAM NAME, you can access and avail services offered by STATE OR ULB NAME Government departments, Central Government department, Local bodies & their agencies and corporate/private bodies (utility services) (Service Providers). You can use PROGRAM NAME website / application / services in different ways such as, service discovery, availing services, registering grievances, and so on.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_CONSENT_FORM_PP_DD_DEAL_LABEL", + "message": "This Privacy Policy describes and determines how we deal with your personal and usage information in accordance with the applicable laws of India.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_CONSENT_FORM_PP_POWERED_BY_DIGIT_LABEL", + "message": "PROGRAM NAME is a collaboration between PARTNER(S) NAME(S) and eGovernments Foundation. It is powered by DIGIT, which is an open-source software platform developed by eGovernments Foundation.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_CONSENT_FORM_PP_PRIVANCY_SECURITY_LABEL", + "message": "{PROGRAM NAME} (“we” or “us” or “our”) respects the privacy of our users (“user” or “you” also referred to as ‘your’). Hence, we maintain the highest standards for secure activities , user information/data privacy and security.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_CONSENT_FORM_PP_REFERS_LABEL", + "message": "PROGRAM NAME refers to the services being provided through PROGRAM NAME website, mobile App, OTHER CHANNELS AS RELEVANT.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_FAILURE_BPAREG_PAYMENT_MESSAGE", + "message": "Payment has failed!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_FAILURE_BPAREG_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding Payment failure has been sent to the registered Mobile No. of the user/owner.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_FAILURE_BPA_LOW_RISK_PERMIT_FEE_PAYMENT_MESSAGE", + "message": "Payment has failed!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_FAILURE_BPA_LOW_RISK_PERMIT_FEE_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding payment failure has been sent to the registered Mobile No. of the user/owner.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_FAILURE_BPA_NC_APP_FEE_PAYMENT_MESSAGE", + "message": "Payment has failed!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_FAILURE_BPA_NC_APP_FEE_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding payment failure has been sent to the registered Mobile No. of the user/owner.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_FAILURE_BPA_NC_SAN_FEE_PAYMENT_MESSAGE", + "message": "Payment has failed!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_FAILURE_BPA_NC_SAN_FEE_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding payment failure has been sent to the registered Mobile No. of the user/owner.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_FAILURE_COMMON_PAYMENT_MESSAGE", + "message": "Payment Failed", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_FAILURE_DEFALUT_PAYMENT_MESSAGE", + "message": "Payment has failed!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_FAILURE_DEFALUT_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding payment failure has been sent to property owner at registered Mobile No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_FAILURE_DEFAULT_PAYMENT_MESSAGE", + "message": "Payment has failed!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_FAILURE_DEFAULT_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding payment failure has been sent at the registered Mobile No. of the user/owner.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_FAILURE_PT_MUTATION_PAYMENT_MESSAGE", + "message": "Payment has failed!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_FAILURE_PT_MUTATION_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding payment failure has been sent to property owner at registered Mobile No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_FAILURE_PT_PAYMENT_MESSAGE", + "message": "Payment has failed!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_FAILURE_PT_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding payment failure has been sent to property owner at registered Mobile No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_FAILURE_SW.ONE_TIME_FEE_PAYMENT_MESSAGE", + "message": "Payment has failed!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_FAILURE_SW.ONE_TIME_FEE_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding Payment failure has been sent to the registered Mobile No. of the user/owner.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_FAILURE_SW_ONE_TIME_FEE_PAYMENT_MESSAGE", + "message": "Payment has failed!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_FAILURE_SW_ONE_TIME_FEE_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding Payment failure has been sent to the registered Mobile No. of the user/owner.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_FAILURE_SW_PAYMENT_MESSAGE", + "message": "Payment has failed!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_FAILURE_SW_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding Payment failure has been sent to the registered Mobile No. of the user/owner.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_FAILURE_TL_PAYMENT_MESSAGE", + "message": "Payment has failed!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_FAILURE_TL_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding payment failure has been sent to property owner at registered Mobile No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_FAILURE_WS.ONE_TIME_FEE_PAYMENT_MESSAGE", + "message": "Payment has failed!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_FAILURE_WS.ONE_TIME_FEE_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding Payment failure has been sent to the registered Mobile No. of the user/owner.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_FAILURE_WS_ONE_TIME_FEE_PAYMENT_MESSAGE", + "message": "Payment has failed!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_FAILURE_WS_ONE_TIME_FEE_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding Payment failure has been sent to the registered Mobile No. of the user/owner.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_FAILURE_WS_PAYMENT_MESSAGE", + "message": "Payment has failed!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_FAILURE_WS_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding Payment failure has been sent to the registered Mobile No. of the user/owner.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_FEEDBACK_PENDING", + "message": "Pending for Citizen Feedback", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SERVICE_CENTER", + "message": "Citizen Service Center", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_ADVT_GAS_BALLOON_ADVERTISEMENT_PAYMENT_MESSAGE", + "message": "Payment has been collected successfully!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_ADVT_GAS_BALLOON_ADVERTISEMENT_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding Payment Collection has been sent to the registered Mobile No. of the user/owner.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_ADVT_GAS_BALLOON_ADVERTISEMENT_PAYMENT_RECEIPT_NO", + "message": "Receipt No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_ADVT_HOARDINGS_PAYMENT_MESSAGE", + "message": "Payment Successful", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_ADVT_HOARDINGS_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding payment is shared with owner at registered mobile number.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_ADVT_HOARDINGS_PAYMENT_RECEIPT_NO", + "message": "Receipt No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_ADVT_LIGHT_WALA_BOARD_PAYMENT_MESSAGE", + "message": "Payment has been collected successfully!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_ADVT_LIGHT_WALA_BOARD_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding Payment Collection has been sent to the registered Mobile No. of the user/owner.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_ADVT_LIGHT_WALA_BOARD_PAYMENT_RECEIPT_NO", + "message": "Receipt No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_ADVT_UNIPOLLS_PAYMENT_MESSAGE", + "message": "Payment has been collected successfully!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_ADVT_UNIPOLLS_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding Payment Collection has been sent to the registered Mobile No. of the user/owner.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_ADVT_UNIPOLLS_PAYMENT_RECEIPT_NO", + "message": "Receipt No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_ADVT_WALL_PAINT_ADVERTISEMENT_PAYMENT_MESSAGE", + "message": "Payment has been collected successfully!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_ADVT_WALL_PAINT_ADVERTISEMENT_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding Payment Collection has been sent to the registered Mobile No. of the user/owner.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_ADVT_WALL_PAINT_ADVERTISEMENT_PAYMENT_RECEIPT_NO", + "message": "Receipt No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_BPAREG_PAYMENT_RECEIPT_NO", + "message": "Payment Receipt No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_BPA_LOW_RISK_PERMIT_FEE_PAYMENT_MESSAGE", + "message": "Payment has been paid successfully!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_BPA_LOW_RISK_PERMIT_FEE_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding Payment has been sent to the registered Mobile No. of the user/owner.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_BPA_LOW_RISK_PERMIT_FEE_PAYMENT_RECEIPT_NO", + "message": "Payment Receipt No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_BPA_NC_APP_FEE_PAYMENT_MESSAGE", + "message": "Payment has been paid successfully!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_BPA_NC_APP_FEE_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding Payment has been sent to the registered Mobile No. of the user/owner.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_BPA_NC_APP_FEE_PAYMENT_RECEIPT_NO", + "message": "Payment Receipt No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_BPA_NC_APP_FEE_SUPERVISOR_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding payment completion has been sent to the registered Mobile No. of the user/owner.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_BPA_NC_OC_APP_FEE_PAYMENT_MESSAGE", + "message": "Payment has been paid successfully!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_BPA_NC_OC_APP_FEE_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding Payment has been sent to the registered Mobile No. of the user/owner.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_BPA_NC_OC_APP_FEE_PAYMENT_RECEIPT_NO", + "message": "Payment Receipt No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_BPA_NC_OC_SAN_FEE_PAYMENT_MESSAGE", + "message": "Payment has been paid successfully!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_BPA_NC_OC_SAN_FEE_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding Payment has been sent to the registered Mobile No. of the user/owner.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_BPA_NC_OC_SAN_FEE_PAYMENT_RECEIPT_NO", + "message": "Payment Receipt No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_BPA_NC_SAN_FEE_PAYMENT_MESSAGE", + "message": "Payment has been paid successfully!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_BPA_NC_SAN_FEE_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding Payment has been sent to the registered Mobile No. of the user/owner.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_BPA_NC_SAN_FEE_PAYMENT_RECEIPT_NO", + "message": "Payment Receipt No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_DEFALUT_PAYMENT_MESSAGE", + "message": "Payment has been paid successfully!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_DEFALUT_PAYMENT_MESSAGE_DETAIL", + "message": "A Notification regarding the payment has been sent to the applicant's mobile number.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_DEFALUT_PAYMENT_RECEIPT_NO", + "message": "Payment Receipt No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_FIRENOC_PAYMENT_MESSAGE", + "message": "Payment has been paid successfully!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_FIRENOC_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding Payment failure has been sent to the registered Mobile No. of the user/owner.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_FIRENOC_PAYMENT_RECEIPT_NO", + "message": "Payment Receipt No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_FSM_TRIP_CHARGES_PAYMENT_MESSAGE_DETAIL", + "message": "Receipt No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_PT_MUTATION_PAYMENT_MESSAGE", + "message": "Payment has been paid successfully!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_PT_MUTATION_PAYMENT_MESSAGE_DETAIL", + "message": "A Notification regarding the payment has been sent to the applicant's mobile number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_PT_MUTATION_PAYMENT_RECEIPT_NO", + "message": "Payment Receipt No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_PT_PAYMENT_MESSAGE", + "message": "Payment has been paid successfully!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_PT_PAYMENT_MESSAGE_DETAIL", + "message": "A Notification regarding the payment has been sent to the applicant's mobile number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_PT_PAYMENT_RECEIPT_NO", + "message": "Payment Receipt No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_SW.ONE_TIME_FEE_PAYMENT_MESSAGE", + "message": "Payment has been collected successfully!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_SW.ONE_TIME_FEE_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding Payment Collection has been sent to the registered Mobile No. of the user/owner.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_SW.ONE_TIME_FEE_PAYMENT_RECEIPT_NO", + "message": "Payment Receipt No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_SW_ONE_TIME_FEE_PAYMENT_MESSAGE", + "message": "Payment has been collected successfully!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_SW_ONE_TIME_FEE_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding Payment Collection has been sent to the registered Mobile No. of the user/owner.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_SW_ONE_TIME_FEE_PAYMENT_RECEIPT_NO", + "message": "Payment Receipt No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_SW_PAYMENT_MESSAGE", + "message": "Payment has been collected successfully!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_SW_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding Payment Collection has been sent to the registered Mobile No. of the user/owner.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_SW_PAYMENT_RECEIPT_NO", + "message": "Payment Receipt No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_TL_PAYMENT_MESSAGE", + "message": "Payment has been paid successfully!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_TL_PAYMENT_MESSAGE_DETAIL", + "message": "A Notification regarding the payment has been sent to the applicant's mobile number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_TL_PAYMENT_RECEIPT_NO", + "message": "Payment Receipt No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_TX_NO_DUES_CERTIFICATE_PAYMENT_MESSAGE", + "message": "Payment Successful", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_TX_NO_DUES_CERTIFICATE_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding payment is shared with owner at registered mobile number.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_TX_NO_DUES_CERTIFICATE_PAYMENT_RECEIPT_NO", + "message": "Receipt No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_TX_TRANSFER_PROPERTY_FEES_PAYMENT_MESSAGE", + "message": "Payment has been collected successfully!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_TX_TRANSFER_PROPERTY_FEES_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding Payment Collection has been sent to the registered Mobile No. of the user/owner.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_TX_TRANSFER_PROPERTY_FEES_PAYMENT_RECEIPT_NO", + "message": "Receipt No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_TX_TS1_COPY_REGISTER_FOR_OLD_SURVEY_PAYMENT_MESSAGE", + "message": "Payment has been collected successfully!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_TX_TS1_COPY_REGISTER_FOR_OLD_SURVEY_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding Payment Collection has been sent to the registered Mobile No. of the user/owner.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_TX_TS1_COPY_REGISTER_FOR_OLD_SURVEY_PAYMENT_RECEIPT_NO", + "message": "Receipt No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_UC_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding payment has been sent to property owner at registered Mobile No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_WS.ONE_TIME_FEE_PAYMENT_MESSAGE", + "message": "Payment has been collected successfully!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_WS.ONE_TIME_FEE_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding Payment Collection has been sent to the registered Mobile No. of the user/owner.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_WS.ONE_TIME_FEE_PAYMENT_RECEIPT_NO", + "message": "Payment Receipt No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_WS_ONE_TIME_FEE_PAYMENT_MESSAGE", + "message": "Payment has been collected successfully!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_WS_ONE_TIME_FEE_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding Payment Collection has been sent to the registered Mobile No. of the user/owner.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_WS_ONE_TIME_FEE_PAYMENT_RECEIPT_NO", + "message": "Payment Receipt No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_WS_PAYMENT_MESSAGE", + "message": "Payment has been collected successfully!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_WS_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding Payment Collection has been sent to the registered Mobile No. of the user/owner.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITIZEN_SUCCESS_WS_PAYMENT_RECEIPT_NO", + "message": "Payment Receipt No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CITY_IS_REQUIRED", + "message": "City is required", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CLEANER", + "message": "Cleaner", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CLEAR_SEARCH_LINk", + "message": "Clear Search", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CLICK_TO_ADD_PHOTO", + "message": "Click to add photo", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CMN_ACK_CORPORATION_HEADER", + "message": "Municipal Corporation", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CMN_NOOPTION", + "message": "No Options", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CMN_OPTION", + "message": "Option", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COLLECTED_IN_FORM_OF_CHALLANS_IN_LAST_12_MONTHS", + "message": "collected in form of challans in the last 12 months.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COLLECTIONREPORT", + "message": "Collection Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMOM_CREDIT/COMMON_DEBIT_CARD", + "message": " Credit/Debit Card", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_ACTION_TEST_COLLAPSE", + "message": "Collapse", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_ACTION_TEST_EXPAND_MENU", + "message": "Expand Menu", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_ALL", + "message": "All", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_APPLICANT_GENDER", + "message": "Applicant Gender", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_APPLIED", + "message": "Pending for Document Verification", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_APPROVED", + "message": "Approved", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_ARREARS", + "message": "Arrears", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_ARREARS_TOTAL", + "message": "Arrears", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_ASSIGNEE", + "message": "Assignee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_BENEFICIARY_DETAILS", + "message": "Beneficiary Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_BOTTOM_NAVIGATION_HOME", + "message": "Home", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_BRANCH_NAME", + "message": "Branch ", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_BUTTON_BACK", + "message": "Back", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_BUTTON_HOME", + "message": "GO TO HOME", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_CANNOT_MODIFY_PROJECT_EST_CREATED", + "message": "Estimate is prepared for the project, hence the details can not be modified.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_CASH", + "message": "CASH", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_CBO_ID", + "message": "CBO ID", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_CERTIFY_ONE", + "message": "I certify that appropriate amount of work has been completed. Muster roll has been verified against Measurement Book.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_CERTIFY_TWO", + "message": ": Once approved Payment Advice will be generated and send to JIT-FS for payment processing.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_CHECK_FORWARD", + "message": "Create and Forward", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_CHEQUE", + "message": "CHEQUE", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_CITIZENACTIONREQUIRED", + "message": "Pending for Citizen Action", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_CREATE_CONTRACT", + "message": "Create Work Order", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_CREATE_ESTIMATE", + "message": "Create Estimate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_CREDIT_DEBIT_CARD", + "message": "Credit/DebitCard", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_DAY", + "message": "day", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_DAYS", + "message": "days", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_DD", + "message": "DD", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_DEDUCTIONS", + "message": "Deductions", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_DESC", + "message": "Description", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_DESGN_OF_OFFICER_IN_CHARGE", + "message": "Designation of officer In-charge", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_DOC_DATA_NOT_FOUND", + "message": "Document not found!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_DOWNLOAD", + "message": "Download", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_DOWNLOAD_RECEIPT", + "message": "DOWNLOAD / VIEW RECEIPT", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_DSS_VIEW_DASH_BOARD_LABEL", + "message": "View Dashboard", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_EDIT", + "message": "Edit", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_END_DATE_SHOULD_BE_GREATER_THAN_START_DATE", + "message": "End Date should be more than Start Date.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_ENTER_VALID_GEO_LOCATION", + "message": "Please enter valid Geo Location.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_ERROR_FETCHING_BILL_DETAILS", + "message": "Error fetching Bill details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_ERROR_FETCHING_DATA", + "message": "Error fetching data", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_ERROR_FETCHING_ESTIMATE_DETAILS", + "message": "Error fetching Estimate details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_ERROR_FETCHING_MUSTER_DETAILS", + "message": "Error fetching Muster details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_ERROR_FETCHING_ORG_DETAILS", + "message": "Error fetching Organisation details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_ERROR_FETCHING_WAGE_SEEKER_DETAILS", + "message": "Error fetching Wage Seeker details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_ESTIMATE_NOT_FOUND", + "message": "Estimate not found", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_EVENTS_LABEL", + "message": "Events", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_FIELDINSPECTION", + "message": "Pending for Field Inspection", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_FILE_COMPONENT_BANNER", + "message": "Only jpg, pdf, doc, docx, xls, xlsx files can be uploaded. File size should not exceed 5 MB.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_FINANCIAL_DETAILS", + "message": "Financial Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_GALLERY_LABEL", + "message": "Gallery", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_GENDER_FEMALE", + "message": "Female", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_GENDER_MALE", + "message": "Male", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_GENDER_OTHER", + "message": "Other", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_GENDER_OTHERS", + "message": "Others", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_GENDER_TRANSGENDER", + "message": "Transgender", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_GENERATE_RECEIPT", + "message": "Generate Receipt", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_GO_TO_INBOX", + "message": "Go to Inbox", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_GUARDIAN_NAME", + "message": "Father / Husband Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_HOW_IT_WORKS", + "message": "How it works?", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_IFSC_CODE", + "message": "IFSC Code", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_INBOX_ASSIGNED_TO_ALL", + "message": "Assigned to all", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_INBOX_ASSIGNED_TO_ME", + "message": "Assigned to me", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_INBOX_NO_DATA", + "message": "No results found !", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_INBOX_ROWS_LABEL", + "message": "Rows per page:", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_INBOX_TAB_ALL", + "message": "All", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_INBOX_TAB_ASSIGNED_TO_ME", + "message": "Assigned to me", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_INBOX_TAB_ESCALATED", + "message": "Esclated", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_INITIATED", + "message": "Initiated", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_LABOUR_AND_MATERIAL_ANALYSIS", + "message": "Labour & Material Analysis", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_LOCALITY", + "message": "Locality", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_LOCATION_DETAILS", + "message": "Address Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MAKE_PAYMENT", + "message": "Make Payment", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MANDATORY_MISSING_ERROR", + "message": "Please select the mandatory search field", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_A", + "message": "A", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_APPROVED", + "message": "Approved", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_B", + "message": "B", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_BILLCREATED", + "message": "Bill Created", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_C", + "message": "C", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DEPARTMENT_ACC01", + "message": "ACCOUNTS", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DEPARTMENT_DEPT_1", + "message": "Street Lights", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DEPARTMENT_DEPT_10", + "message": "Help Desk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DEPARTMENT_DEPT_11", + "message": "Housing and Urban Development", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DEPARTMENT_DEPT_12", + "message": "Birth and Death Branch", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DEPARTMENT_DEPT_13", + "message": "Tax Branch", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DEPARTMENT_DEPT_14", + "message": "Civil", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DEPARTMENT_DEPT_15", + "message": "Engineering Branch (O&M - W&S)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DEPARTMENT_DEPT_16", + "message": "Health Branch", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DEPARTMENT_DEPT_17", + "message": "Tehbezari branch (Encroachments)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DEPARTMENT_DEPT_18", + "message": "Engineering Branch (Electrical)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DEPARTMENT_DEPT_19", + "message": "Advertisment Tax Branch", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DEPARTMENT_DEPT_2", + "message": "Building & Roads", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DEPARTMENT_DEPT_20", + "message": "Complaint Branch", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DEPARTMENT_DEPT_21", + "message": "Sanitation Branch", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DEPARTMENT_DEPT_22", + "message": "Engineering Branch (Mechanical)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DEPARTMENT_DEPT_23", + "message": "Tehbazari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DEPARTMENT_DEPT_24", + "message": "Fire Brigade", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DEPARTMENT_DEPT_25", + "message": "Accounts Branch", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DEPARTMENT_DEPT_26", + "message": "Rent", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DEPARTMENT_DEPT_27", + "message": "License Branch", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DEPARTMENT_DEPT_28", + "message": "Property Branch", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DEPARTMENT_DEPT_29", + "message": "Receipt and Dispatch Branch", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DEPARTMENT_DEPT_3", + "message": "Health & Sanitation", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DEPARTMENT_DEPT_30", + "message": "Tehbazari and Property Branch", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DEPARTMENT_DEPT_31", + "message": "Pension and HFA etc", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DEPARTMENT_DEPT_32", + "message": "Land Branch", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DEPARTMENT_DEPT_33", + "message": "Property Tax Branch", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DEPARTMENT_DEPT_34", + "message": "Establishment Branch", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DEPARTMENT_DEPT_35", + "message": "Works Branch", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DEPARTMENT_DEPT_36", + "message": "GIS Branch", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DEPARTMENT_DEPT_37", + "message": "Electrical Branch", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DEPARTMENT_DEPT_38", + "message": "General Branch", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DEPARTMENT_DEPT_39", + "message": "Court Case Branch", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DEPARTMENT_DEPT_4", + "message": "Operation & Maintenance", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DEPARTMENT_DEPT_40", + "message": "Tehbezari branch - for Encroachments", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DEPARTMENT_DEPT_41", + "message": "Water Supply and Sewerage", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DEPARTMENT_DEPT_42", + "message": "Executive Officer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DEPARTMENT_DEPT_43", + "message": "Property and House Tax", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DEPARTMENT_DEPT_44", + "message": "Purchaser Branch", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DEPARTMENT_DEPT_45", + "message": "Engineering Branch (Civil - B&R", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DEPARTMENT_DEPT_47", + "message": "Property Tax & Rent & Tehbazari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DEPARTMENT_DEPT_49", + "message": "BPL", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DEPARTMENT_DEPT_5", + "message": "Hotriculture", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DEPARTMENT_DEPT_51", + "message": "Executive Agency", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DEPARTMENT_DEPT_52", + "message": "Library", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DEPARTMENT_DEPT_6", + "message": "Building Branch", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DEPARTMENT_DEPT_7", + "message": "Citizen service desk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DEPARTMENT_DEPT_8", + "message": "Complaint Cell", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DEPARTMENT_DEPT_9", + "message": "Secretary/General Administration Branch", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DEPARTMENT_DEPT_LG", + "message": "Legal Branch", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DEPARTMENT_DEPT_TP", + "message": "Town Planning", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DEPARTMENT_ENG", + "message": "Accounts Branch", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DEPARTMENT_PHS01", + "message": "PUBLIC HEALTH AND SANITATION", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DEPARTMENT_PWSSB", + "message": "PWSSB", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DEPARTMENT_REV01", + "message": "REVENUE", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DEPARTMENT_TP01", + "message": "TOWN PLANNING", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_ACC_AO", + "message": "Accounts Officer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_ACC_JAO", + "message": "Junior Accounts Officer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_ADM_ADMC", + "message": "Additional Commissioner", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_ADM_AEO", + "message": "Assistant Executive Officer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_ADM_AMC", + "message": "Assistant Commissioner", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_ADM_DMC", + "message": "Deputy Commissioner", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_ADM_EO", + "message": "Executive Officer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_ADM_MC", + "message": "Commissioner", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_ADP01", + "message": "Assistant Director, Planning", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_AE01", + "message": "Assistant Engineer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_AHDO01", + "message": "Assistant Horticulture Development Officer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_AHO01", + "message": "Assistant Health Officer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_AHO02", + "message": "Animal Husbandry Officer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_AME01", + "message": "Amen", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_AO", + "message": "Accounts Officer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_AO01", + "message": "Accounts Officer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_AVEO01", + "message": "Assistant Vigilance and Enforcement Officer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_CCI01", + "message": "Chief Cleanliness Inspector", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_CE", + "message": "Chief Engineer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_CI01", + "message": "Cleanliness Inspector", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_CLERK", + "message": "Clerk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_CMFA01", + "message": "Chief Municipal Finance and Accounts Officer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_COMM", + "message": "Commissioner", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DDPA01", + "message": "Deputy Director, Planning and Architecture", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_01", + "message": "Superintending Engineer ( B&R)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_02", + "message": "Corporation Engineer (B&R)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_03", + "message": "Asst. Engineer ( B&R)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_04", + "message": "Junior Engineer ( B&R)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_05", + "message": "Land Scape Officer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_06", + "message": "Superintending Engineer ( O&M)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_07", + "message": "Corporation Engineer (O&M)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_08", + "message": "Asst. Engineer ( O&M)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_09", + "message": "Junior Engineer ( O&M)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_10", + "message": "Superintending Engineer ( Light)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_100", + "message": "Computer Opertor", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_1001", + "message": "Deputy Controller Finance and Accounts", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_101", + "message": "Steno", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_102", + "message": "Plumber", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_103", + "message": "Pump Operator", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_104", + "message": "Court Clerk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_105", + "message": "Fitter Coolie", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_106", + "message": "Sub Divisional Engineer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_107", + "message": "Sub Fire Officer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_108", + "message": "Restorar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_109", + "message": "Senior Scale Stenographer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_11", + "message": "Corporation Engineer (Light)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_110", + "message": "Mali-Cum-Chounkidar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_111", + "message": "Mali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_112", + "message": "Beldar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_113", + "message": "Sanitory Supervisor", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_114", + "message": "Fiter Cooli", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_115", + "message": "Junior Technician", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_116", + "message": "Sewerman", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_117", + "message": "Steno/Personal Assistant", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_118", + "message": "Architect", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_119", + "message": "Site Engineer/Contractor", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_12", + "message": "Junior Engineer ( Light)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_120", + "message": "Tractor Driver", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_121", + "message": "Trolley Man", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_123", + "message": "peon", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_124", + "message": "Bill Distributor", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_125", + "message": "Sewadar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_13", + "message": "Health Officer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_14", + "message": "Medical Officer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_15", + "message": "Chief Sanitary Inspector", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_16", + "message": "Sanitary Inspector", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_17", + "message": "Sanitary Supervisor", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_18", + "message": "Senior Town Planner", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_19", + "message": "Municipal Town Planner", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_20", + "message": "Asst. Town Planner", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_21", + "message": "Building Inspector", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_22", + "message": "Junior Enginer ( Horticulutre)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_23", + "message": "Citizen service representative", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_24", + "message": "Assistant Commissioner", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_25", + "message": "Assistant Engineer (Light)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_26", + "message": "Secretary", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_27", + "message": "Computer Operator", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_28", + "message": "In Charge/DBA", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_33", + "message": "Baildar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_34", + "message": "Junior Assistant", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_35", + "message": "Inspector", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_36", + "message": "Assistant Engineer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_37", + "message": "Surveyor", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_38", + "message": "Assistant Corporation Engg.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_39", + "message": "Head Draftsman", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_40", + "message": "General Inspector", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_41", + "message": "Draftsman", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_42", + "message": "Superintending Engineer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_43", + "message": "Superitendent", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_44", + "message": "Junior Draftsman", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_45", + "message": "Assistant Town Planner", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_46", + "message": "Building inspector(Technical)/Draftsman", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_47", + "message": "Superintendent", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_48", + "message": "Data entry operator", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_49", + "message": "Assistant Municipal Engineering", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_50", + "message": "Sanitary Inspector", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_51", + "message": "Commissioner", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_52", + "message": "Municipal Engineer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_53", + "message": "Executive Engineer/Municipal Engineer/Corporation Engineer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_54", + "message": "Junior.Assistant", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_55", + "message": "Fireman", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_56", + "message": "Deputy Controller (Finance & Accounts)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_57", + "message": "Corporation Engineer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_58", + "message": "Accountant", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_59", + "message": "Sanitary Supervisor", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_60", + "message": "Draftman", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_61", + "message": "Data Entry Operator", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_62", + "message": "Inspector/Senior Assistant", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_63", + "message": "Fire Station Officer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_64", + "message": "INSPECTOR", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_65", + "message": "Assistant Corporation Engineer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_66", + "message": "Computer Programmer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_67", + "message": "Corporation Engineer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_68", + "message": "Asistant Commisstioner", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_69", + "message": "Executive officer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_70", + "message": "ALM (Assistant Line Man)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_71", + "message": "Sub-Divisional Engineer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_72", + "message": "Supervisor", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_73", + "message": "GIS EXPERT", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_74", + "message": "Local Registrar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_75", + "message": "Tax Collector", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_76", + "message": "Building Superintendent", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_77", + "message": "Sanitory Inspector", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_78", + "message": "Additional Local Registrar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_79", + "message": "Superintendent Engineer (Councils)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_80", + "message": "Senior Assistant", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_81", + "message": "Chief Sanitory Inspector", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_82", + "message": "Sub Registrar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_83", + "message": "Legal Assistant", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_84", + "message": "Electrician", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_85", + "message": "Assistant Municipal Engineer ( Civil )", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_86", + "message": "Junior Engineer (Building)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_87", + "message": "Computer in Birth and Death Branch", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_88", + "message": "Junior Engineer (Electrical)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_89", + "message": "Executive Officer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_90", + "message": "Peon", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_91", + "message": "Municipal Engineer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_92", + "message": "Driver", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_93", + "message": "Sectional Officer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_94", + "message": "Sweeper", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_95", + "message": "Watchman", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_96", + "message": "Pump Opertor", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_97", + "message": "Clerk-cum- computer opertor", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_98", + "message": "Assistant Municipal Engineer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESIG_99", + "message": "Assistant Pump Operator", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DPA01", + "message": "Director, Planning and Architecture", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DRAFT01", + "message": "Draftsman", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_EO01", + "message": "Enforcement Officer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_EO02", + "message": "Executive Officer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_FO01", + "message": "Finance Officer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_HC01", + "message": "Head Clerk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_JE01", + "message": "Junior Engineer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_JE_PWSSB", + "message": "Junior Engineer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_JMC01", + "message": "Joint Municipal Commissioner", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_LDC01", + "message": "Lower Division Clerk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_MA01", + "message": "Municipal Administrator", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_MCS01", + "message": "Municipal corporation Secretary", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_MS01", + "message": "Municipal Secretary", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_OS01", + "message": "Offices Superintendent", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_RI01", + "message": "Revenue Inspector", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_RO01", + "message": "Revenue Officer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_SAMC01", + "message": "Senior Additional Municipal Commissioner", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_SDO_PWSSB", + "message": "Sub Division Officer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_SK01", + "message": "Store Keeper", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_SUR01", + "message": "Surveyor", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_TA01", + "message": "Town Architect", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_Tax", + "message": "Ward Officer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_UDC01", + "message": "Upper Division Clerk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_WIR", + "message": "WIR", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_WRK_ACCE", + "message": "Account Expert (MUKTA)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_WRK_AE", + "message": "Assistant Enginner", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_WRK_AEE", + "message": "Assistant Executive Engineer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_WRK_AM", + "message": "Ameen", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_WRK_CE", + "message": "City Enginner", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_WRK_DA", + "message": "Dealing Assistant", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_WRK_DEE", + "message": "Deputy Executive Engineer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_WRK_EE", + "message": "Executive Engineer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_WRK_IE", + "message": "Implementation Expert (MUKTA)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_WRK_JE", + "message": "Junior Enginner", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_WRK_ME", + "message": "Municipal Engineer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_WRK_PC", + "message": "Program Coordinator (MUKTA)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_WRK_RI", + "message": "Revenue Inspector", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_XEN_PWSSB", + "message": "Executive Engineer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DOCUMENTTYPE_OWNERIDPROOF", + "message": "Owner's ID Proof", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DOCUMENTTYPE_OWNERSHIPPROOF", + "message": "Ownership Proof", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_ORG_CBO", + "message": "Community Based Organization", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_ORG_VEN", + "message": "Vendor/ Supplier", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_COMPANY", + "message": "Company", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_COMPANY_LIMITEDLIABILITYPARTNERSHIP", + "message": "Limited Liability Partnership", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_COMPANY_ONEPERSONCOMPANY", + "message": "One Person Company", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_COMPANY_PARTNERSHIPFIRM", + "message": "Partnership Firm", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_COMPANY_PRIVATELIMITEDCOMPANY", + "message": "Private Limited Company", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_COMPANY_PROPRIETORSHIP", + "message": "Proprietorship", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_COMPANY_PUBLICLIMITEDCOMPANY", + "message": "Public Limited Company", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_COMPANY_SECTION8COMPANY", + "message": "Section 8 Company", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_GOVERNMENT", + "message": "Government", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_GOVERNMENT_CENTRALGOVERNMENT", + "message": "Central Government", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_GOVERNMENT_LOCALGOVERNMENT", + "message": "Local Government", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_GOVERNMENT_RURALLOCALGOVERNMENT", + "message": "Rural Local Government", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_GOVERNMENT_STATEGOVERNMENT", + "message": "State Government", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_INDIVIDUAL", + "message": "Individual", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_INDIVIDUAL_MULTIPLEOWNER", + "message": "Multiple Owner", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_INDIVIDUAL_MULTIPLEOWNERS", + "message": "Multiple Owners", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_INDIVIDUAL_SINGLEOWNER", + "message": "Single Owner", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_INSTITUTIONALCOMPANY", + "message": "Company", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_INSTITUTIONALCOMPANY_LIMITEDLIABILITYPARTNERSHIP", + "message": "Limited Liability Partnership", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_INSTITUTIONALCOMPANY_ONEPERSONCOMPANY", + "message": "One Person Company", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_INSTITUTIONALCOMPANY_PARTNERSHIPFIRM", + "message": "Partnership Firm", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_INSTITUTIONALCOMPANY_PRIVATELIMITEDCOMPANY", + "message": "Private Limited Company", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_INSTITUTIONALCOMPANY_PROPRIETORSHIP", + "message": "Proprietorship", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_INSTITUTIONALCOMPANY_PUBLICLIMITEDCOMPANY", + "message": "Public Limited Company", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_INSTITUTIONALCOMPANY_SECTION8COMPANY", + "message": "Section 8 Company", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_INSTITUTIONALGOVERNMENT", + "message": "Institutional - Government", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_INSTITUTIONALGOVERNMENT_CENTRALGOVERNMENT", + "message": "Central Government", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_INSTITUTIONALGOVERNMENT_LOCALGOVERNMENT", + "message": "Local Government", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_INSTITUTIONALGOVERNMENT_OTHERGOVERNMENTINSTITUITION", + "message": "Others - Government Institution", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_INSTITUTIONALGOVERNMENT_RURALLOCALGOVERNMENT", + "message": "Rural Local Government", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_INSTITUTIONALGOVERNMENT_STATEGOVERNMENT", + "message": "State Government", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_INSTITUTIONALGOVERNMENT_ULBGOVERNMENT", + "message": "ULB Government", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_INSTITUTIONALPRIVATE", + "message": "Institutional - Private", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_INSTITUTIONALPRIVATE_NGO", + "message": "NGO", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_INSTITUTIONALPRIVATE_OTHERSPRIVATEINSTITUITION", + "message": "Others - Private Institution", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_INSTITUTIONALPRIVATE_PRIVATEBOARD", + "message": "Private board", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_INSTITUTIONALPRIVATE_PRIVATECOMPANY", + "message": "Private Company", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_INSTITUTIONALPRIVATE_PRIVATETRUST", + "message": "Private Trust", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_INSTITUTIONALSOCIETY", + "message": "Society", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_INSTITUTIONALSOCIETY_HOUSINGSOCIETY", + "message": "Housing Society", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_INSTITUTIONALSOCIETY_SELFHELPGROUP", + "message": "Self Help Group", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_INSTITUTIONALTRUST", + "message": "Trust", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_INSTITUTIONALTRUST_PRIVATETRUST", + "message": "Private Trust", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_INSTITUTIONALTRUST_PUBLICTRUST", + "message": "Public Trust", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_INSTITUTIONALTRUST_RELIGIOUSTRUST", + "message": "Religious Trust", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_SOCIETY", + "message": "Society", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_SOCIETY_HOUSINGSOCIETY", + "message": "Housing Society", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_SOCIETY_SELFHELPGROUP", + "message": "Self Help Group", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_TRUST", + "message": "Trust", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_TRUST_PRIVATETRUST", + "message": "Private Trust", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_TRUST_PUBLICTRUST", + "message": "Public Trust", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_TRUST_RELIGIOUSTRUST", + "message": "Religious Trust", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERTYPE_AUTHORIZEDSIGNATORY", + "message": "Authorized Signatory", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERTYPE_BPL", + "message": "Below Poverty Line", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERTYPE_DEFENSE", + "message": "Defense Personnel", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERTYPE_DIRECTOR", + "message": "Director", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERTYPE_FATHER", + "message": "Father", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERTYPE_FREEDOMFIGHTER", + "message": "Freedom Fighter", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERTYPE_GENERAL", + "message": "General", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERTYPE_HANDICAPPED", + "message": "Handicapped Person", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERTYPE_HUSBAND", + "message": "Husband", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERTYPE_NA", + "message": "NA", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERTYPE_NONE", + "message": "None of the above", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERTYPE_PARTNER", + "message": "Partner", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERTYPE_PROPRIETOR", + "message": "Proprietor", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERTYPE_WIDOW", + "message": "Widow", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_PAYME NTMODE_CARD", + "message": "Card", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_PAYMENTMODE_CARD", + "message": "Credit /Debit Card", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_PAYMENTMODE_CASH", + "message": "Cash", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_PAYMENTMODE_CHEQUE", + "message": "Cheque", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_PAYMENTMODE_CREDIT/DEBIT CARD", + "message": "Credit/Debit Card", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_PAYMENTMODE_CREDIT/DEBIT_CARD", + "message": "Credit/Debit Card", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_PAYMENTMODE_DD", + "message": "DD", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_PAYMENTMODE_NEFT", + "message": "Neft", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_PAYMENTMODE_OFFLINE_NEFT", + "message": "NEFT", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_PAYMENTMODE_OFFLINE_RTGS", + "message": "RTGS", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_PAYMENTMODE_ONLINE", + "message": "Online", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_PAYMENTMODE_POSTAL_ORDER", + "message": "Postal Order", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_PAYMENTMODE_RTGS", + "message": "RTGS", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_SOCIAL_GENERAL", + "message": "General", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_SOCIAL_OBC", + "message": "OBC", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_SOCIAL_OTHER", + "message": "OTHER", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_SOCIAL_SC", + "message": "SC", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_SOCIAL_ST", + "message": "ST", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_STRUCTURETYPE_IMMOVABLE", + "message": "Immovable", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_STRUCTURETYPE_IMMOVABLE_GARAGE", + "message": "Garage", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_STRUCTURETYPE_IMMOVABLE_GODOWN", + "message": "Godown", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_STRUCTURETYPE_IMMOVABLE_INDUSTRIALUNIT", + "message": "Industrial Unit", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_STRUCTURETYPE_IMMOVABLE_KUTCHA", + "message": "Kutcha", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_STRUCTURETYPE_IMMOVABLE_OPENLAND", + "message": "Open Land", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_STRUCTURETYPE_IMMOVABLE_OPENSPACEOFBUILDING", + "message": "Open Space of Building", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_STRUCTURETYPE_IMMOVABLE_OTHERPERMISES", + "message": "Other permises", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_STRUCTURETYPE_IMMOVABLE_PUCCA", + "message": "Pucca", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_STRUCTURETYPE_IMMOVABLE_SHED", + "message": "Shed", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_STRUCTURETYPE_IMMOVABLE_SHOP", + "message": "Shop", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_STRUCTURETYPE_IMMOVABLE_WORKSHOP", + "message": "Workshop", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_STRUCTURETYPE_MOVABLE", + "message": "Movable", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_STRUCTURETYPE_MOVABLE_HDV", + "message": "Hand Driven Vehicle", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_STRUCTURETYPE_MOVABLE_MDV", + "message": "Motor Driven Vehicle", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_SUBMITTED", + "message": "Submitted", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_SUBORG_ALF", + "message": "Area Level Federation", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_SUBORG_CLF", + "message": "Community Level Federation", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_SUBORG_CMS", + "message": "Construction Material Supplier", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_SUBORG_MSG", + "message": "Mission Shakti Group", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_SUBORG_NA", + "message": "Not Applicable", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_SUBORG_SDA", + "message": "Slum Dwellers Association", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_UOM_HP", + "message": "H.P.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_YET_TO_APPROVE", + "message": "Yet to approve", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_null", + "message": "NA", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTER_DESIGNATION_WRK_EE", + "message": "Executive Engineer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MATERIAL_COST", + "message": "Material cost:(₹) ", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MATERS_SOCIAL_GENERAL", + "message": "General", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MATER_S_A", + "message": "Class A", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MATER_S_B", + "message": "Class B", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MATER_S_C", + "message": "Class C", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MATER_S_D", + "message": "Class D", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MATER_S_NA", + "message": "Not Applicable", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MODIFY_PROJECT", + "message": "Modify Project", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MODIFY_WO", + "message": "Modify Work Order", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MUSTER_RUPEE", + "message": "₹", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_MYCITY_LABEL", + "message": "My City", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_NA", + "message": "NA", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_NAME", + "message": "Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_NAME_OF_CBO", + "message": "Name of CBO", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_NAME_OF_OFFICER_IN_CHARGE", + "message": "Name of officer In-charge", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_NEFT", + "message": "NEFT", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_NON_RECEIPT_OF_PENSIONS_DISABLED_ELDERLY_ETC", + "message": "Non-Receipt of Pensions - Disabled", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_NO_RESULTS_FOUND", + "message": "No Results Found", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_ORG_ID", + "message": "Organisation ID", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_ORG_NAME", + "message": "Organisation Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_OTHER", + "message": "Other", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_OWNER", + "message": "Owner", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_PATTERN_ERR_MSG_MUSTER_ID", + "message": "Please enter valid Muster Id", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_PATTERN_ERR_MSG_PROJECT_COMP_PERIOD", + "message": "Please enter valid project completion period", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_PATTERN_ERR_MSG_PROJECT_WO_AMT", + "message": "Please enter valid Work Order Amount", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_PAYABLE_AMOUNT", + "message": "Payable Amount", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_PAYBLE_AMOUNT", + "message": "Payble Amount", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_PAYBLE_Amount", + "message": "Payble Amount", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_PAYMENT_HEAD", + "message": "Payment", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_PAY_SCREEN_HEADER", + "message": "Payment Information", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_PAY_SREEN_HEADER", + "message": "Payment information", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_PENDINGAPPROVAL", + "message": "Pending for Approval", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_PENDINGPAYMENT", + "message": "Pending Payment", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_PHOTOGRAPH", + "message": "Photograph", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_PINCODE_VALIDATION", + "message": "Pincode should be of 6 digits", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_POSTAL_ORDER", + "message": "Postal Order", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_PRINT_RECEIPT", + "message": "PRINT RECEIPT", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_PROJECT_COMP_PERIOD_DAYS", + "message": "Project completion period", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_PROJECT_NOT_FOUND", + "message": "Project not found", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_PROPSUBUSGTYPE_NONRESIDENTIAL_COMMERCIAL_ENTERTAINMENT_GAMINGCENTRE", + "message": "Gaming Centre", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_PROPSUBUSGTYPE_NONRESIDENTIAL_COMMERCIAL_EVENTSPACES_COMMUNITYHALLS", + "message": "Comunity Halls", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_PROPSUBUSGTYPE_NONRESIDENTIAL_COMMERCIAL_FOODJOINTS_OTHERFOODOUTLETS", + "message": "Other Food Outlets", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_PROPSUBUSGTYPE_NONRESIDENTIAL_COMMERCIAL_HOTELS_2STARORBELOW", + "message": "2 Star or Below", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_PROPSUBUSGTYPE_NONRESIDENTIAL_COMMERCIAL_HOTELS_3STARANDABOVE", + "message": "3 Star or Below", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_PROPSUBUSGTYPE_NONRESIDENTIAL_COMMERCIAL_HOTELS_RESORTS", + "message": "Resorts", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_PROPSUBUSGTYPE_NONRESIDENTIAL_COMMERCIAL_MEDICALFACILITY_DISPENSARY", + "message": "Dispensary", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_PROPSUBUSGTYPE_NONRESIDENTIAL_COMMERCIAL_MEDICALFACILITY_HOSPITAL", + "message": "Hospital", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_PROPSUBUSGTYPE_NONRESIDENTIAL_COMMERCIAL_OFFICESPACES_OFFICESPACES", + "message": "Office Spaces", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_PROPSUBUSGTYPE_NONRESIDENTIAL_COMMERCIAL_RETAIL_ESTABLISHMENTINMALLS", + "message": "Establishment in Malls", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_PROPSUBUSGTYPE_NONRESIDENTIAL_COMMERCIAL_RETAIL_ESTABLISHMENTINMULTIPLEX", + "message": "Establishment in Multiplex", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_PROPSUBUSGTYPE_NONRESIDENTIAL_COMMERCIAL_RETAIL_GROCERY&SUPERMARKETS", + "message": "Grocery & Supermarkets", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_PROPSUBUSGTYPE_NONRESIDENTIAL_COMMERCIAL_RETAIL_OTHERRETAILSTORES", + "message": "Other Retail Stores", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_PROPSUBUSGTYPE_NONRESIDENTIAL_INDUSTRIAL_MALLS", + "message": "Malls", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_PROPSUBUSGTYPE_NONRESIDENTIAL_INDUSTRIAL_SHOWROOM", + "message": "Showroom", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_PROPSUBUSGTYPE_NONRESIDENTIAL_INSTITUTIONAL_RESIDENTIAL", + "message": "Residential", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_PROPSUBUSGTYPE_RESIDENTIAL", + "message": "Residential", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_PROPTYPE_BUILTUP_INDEPENDENTPROPERTY", + "message": "Independent Building", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_PROPTYPE_BUILTUP_SHAREDPROPERTY", + "message": "Flat/Part of the building", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_PROPTYPE_VACANT", + "message": "Vacant Land", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_PROPUSGTYPE_NONRESIDENTIAL_INSTITUTIONAL_PUBLICFACILITY_COMMUNITYHALL", + "message": "Community Hall", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_PROPUSGTYPE_NONRESIDENTIAL_MIXED", + "message": "Mixed", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_PURCHASE_BILL", + "message": "Purchase Bill", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_RELATION_HUSBAND", + "message": "Husband", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_REMOVE_LABEL", + "message": "Remove", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_RESPONSE", + "message": "Search Estimates", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_RESPONSE_SUCCESS_MESSAGE_CANCEL_BILL", + "message": "The notification along with your application number is sent to your applicant’s mobile number. Applicant can track the application status using mobile or web app.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_RETRY", + "message": "RETRY", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_RE_ENTER_ACCOUNT_NO", + "message": "Re-enter account number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_ROLE_OF_CBO", + "message": "Role Of CBO", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_RTGS", + "message": "RTGS", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_SEARCH_SERVICE_INFORMATION", + "message": "Search Service", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_SELECTED", + "message": "Selected", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_SELECT_LOCALITY", + "message": "Select Locality", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_SELECT_SKILL", + "message": "Select Skills", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_SELECT_WARD", + "message": "Select Ward", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_SLA_DAYS", + "message": "SLA days remaining", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_SOCIAL_CATEGORY", + "message": "Social Category", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_START_DATE_SHOULD_BE_LESS_THAN_END_DATE", + "message": "Start Date should be less than End Date.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_SUBDIVISION_MUNICIPAL_CORPORATION", + "message": "Municipal Corporation", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_TABLE_ALL", + "message": "All", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_TABLE_DOWNLOAD_CSV", + "message": "Download CSV", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_TABLE_FILTER", + "message": "Filter Table", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_TABLE_FILTERS", + "message": "FILTERS", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_TABLE_NEXT_PAGE", + "message": "Next Page", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_TABLE_NO_RECORD_FOUND", + "message": "Sorry, no matching records found", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_TABLE_PREVIOUS_PAGE", + "message": "Previous Page", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_TABLE_PRINT", + "message": "Print", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_TABLE_RESET", + "message": "RESET", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_TABLE_ROWS_PER_PAGE", + "message": "Rows per page:", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_TABLE_SEARCH", + "message": "Search", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_TABLE_SEARCH_RESULT", + "message": "Search Result", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_TABLE_SEARCH_RESULT_PAYMENTS", + "message": "Search Results for Payments", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_TABLE_SEARCH_RESULT_RECIEPT", + "message": "Search Results for Receipt", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_TABLE_SHOW_COLUMNS", + "message": "Show Columns", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_TABLE_SHOW_HIDE_TABLE", + "message": "Show/Hide Table Columns", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_TABLE_SORT", + "message": "Sort", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_TABLE_VIEW_COLUMNS", + "message": "View Columns", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_TERMS_&_CONDITIONS", + "message": "Terms & Conditions", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_TERMS_AND_CONDITIONS", + "message": "Terms & Conditions", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_TOTAL", + "message": "Total", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_VALIDITY", + "message": "Validity", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_VIEW_BILLS", + "message": "View Bills", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_VIEW_COMMUNITY_ORG", + "message": "View Community Organisation", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_VIEW_ESTIMATE", + "message": "View Estimate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_WARD", + "message": "Ward", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_WORKFLOW_STATES", + "message": "Workflow State", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_WORK_ORDER_AMT_RS", + "message": "Work Order Amount", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_WO_DETAILS", + "message": "Work Order Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_WO_NOT_FOUND", + "message": "Work Order not found", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_YEAR", + "message": "year", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMMON_YEARS", + "message": "years", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMPLAINTS_RESOLVED_IN_LAST_30_DAYS", + "message": " complaints resolved in the last 30 days", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMPLETED", + "message": "Completed", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COMPLETED_LABEL", + "message": "Completed", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CONFIRM_DELETE_DOC", + "message": "Confirm Delete Document", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CONFIRM_DELETE_MSG", + "message": "Please confirm is you want to delete the ", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CONSUMED", + "message": "Consumed", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CONSUMERDETAILS", + "message": "Consumer Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CONTACT_ADMINISTRATOR_FOR_PASSWORD", + "message": "Please contact administrator to reset password", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CONTRACTS_MODIFIED", + "message": "Work Order modified successfully", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COOMON_INITIATED", + "message": "Initiated", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "COOMON_PENDINGPAYMENT", + "message": "Pending Payment", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_ANOTHER_OTP", + "message": "Request another OTP in", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_BACK_BUTTON", + "message": "Back", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_BUTTON_ACCEPT", + "message": "Accept", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_BUTTON_BACK", + "message": "Go Back", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_BUTTON_CONFIRM", + "message": "Confirm", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_BUTTON_DECLINE", + "message": "Decline", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_CHANGEPASSWORD_EXISTINGPASSWORD", + "message": "Current Password", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_CHANGEPASSWORD_EXISTINGPASSWORD_INVALIDMSG", + "message": "Invalid Current Password", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_CHANGEPASSWORD_EXISTINGPASSWORD_PLACEHOLDER", + "message": "Enter current password", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_CHANGE_TENANT", + "message": "Do you want to change the City?", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_CHANGE_TENANT_CANCEL", + "message": "Cancel", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_CHANGE_TENANT_DESCRIPTION", + "message": "You will be redirected to the home page", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_CHANGE_TENANT_OK", + "message": "Ok", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_AADHAAR", + "message": "Aadhaar Number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_ACCOUNT_NO", + "message": "Account number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_ACCOUNT_TYPE", + "message": "Account Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_APPLICANT_ADDRESS_INVALID", + "message": "Invalid Address", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_APPLICANT_MOBILE_NUMBER_INVALID", + "message": "Invalid Mobile Number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_APPLICANT_NAME_INVALID", + "message": "Please provide a valid name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_BACK_HOME_BUTTON", + "message": "Back to Home", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_BANK_ACCOUNT_NO", + "message": "Bank Account No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_CANCEL", + "message": "Cancel", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_CHANGE_PASSWORD", + "message": "Change Password", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_CHECK_MESSAGE", + "message": "Please check your messages", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_CITY", + "message": "City", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_CITY *", + "message": "City", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_CITY_PLACEHOLDER", + "message": "Select your city", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_CONTINUE", + "message": "Continue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_CURRENT", + "message": "Current", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_DATES", + "message": "Dates", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_DOOR_INVALID", + "message": "Invalid Door Number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_EMAIL", + "message": "Email", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_FATHER", + "message": "Father", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_FEMALE", + "message": "Female", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_FORGOT_PASSWORD", + "message": "Forgot Password?", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_FORGOT_PASSWORD_LABEL", + "message": "Forgot Password?", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_FORGOT_PASSWORD_LABEL,", + "message": "Forgot Password?", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_GENDER", + "message": "Gender", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_GENDER_FEMALE", + "message": "Female", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_GENDER_MALE", + "message": "Male", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_GENDER_TRANSGENDER", + "message": "Transgender", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_GENERAL", + "message": "General", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_GOTOHOME", + "message": "GO TO HOME", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_GO_TO_HOME", + "message": "Go back to home page", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_HUSBAND", + "message": "Husband", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_LOCALITY", + "message": "Locality", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_LOGIN", + "message": "Login", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_LOGOUT", + "message": "Logout", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_MALE", + "message": "Male", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_MOBILE_ERROR", + "message": "Please provide a valid mobile number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_MOBILE_NUMBER", + "message": "Mobile Number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_MOBILE_NUMBER,", + "message": "Mobile Number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_MOBILE_NUMBER_PLACEHOLDER", + "message": "Enter Citizen's Mobile No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_NAME", + "message": "Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_NAME_LENGTHMSG", + "message": "Name should be less than 100 characters", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_NAME_PLACEHOLDER", + "message": "Enter your name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_NAME_VALIDMSG", + "message": "Please enter a valid Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_OBC", + "message": "OBC", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_PHONENO_INVALIDMSG", + "message": "Invalid Mobile Number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_PHONENO_REGISTREDMSG", + "message": "Mobile Number is already Registered", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_PHONE_NUMBER", + "message": "Phone Number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_PHONE_NUMBER_PLACEHOLDER", + "message": "Enter your mobile number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_PICK", + "message": "Pick", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_PINCODE", + "message": "Pincode", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_PINCODE_INVALID", + "message": "Please provide a valid pincode", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_PROFILE_CITY", + "message": "City", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_PROFILE_CONFIRM_PASSWORD", + "message": "Confirm New Password:", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_PROFILE_CONFIRM_PASSWORD,", + "message": "Confirm New Password:", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_PROFILE_CURRENT_PASSWORD", + "message": "Current Password:", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_PROFILE_CURRENT_PASSWORD,", + "message": "Current Password:", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_PROFILE_EDIT", + "message": "Edit Profile", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_PROFILE_EMAIL", + "message": "Email", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_PROFILE_EMAIL_INVALID", + "message": "Invalid Email", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_PROFILE_ERROR_PASSWORD_NOT_MATCH", + "message": "Passwords dont match", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_PROFILE_FILE_UPLOAD_ERROR", + "message": "An error occurred while uploading the file", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_PROFILE_GENDER", + "message": "Gender", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_PROFILE_INVALID_FILE_INPUT", + "message": "Please upload a valid file to upload", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_PROFILE_MAXIMUM_UPLOAD_SIZE_EXCEEDED", + "message": "Please upload a file less than 1 MB", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_PROFILE_MOBILE_NUMBER", + "message": "Mobile no.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_PROFILE_MOBILE_NUMBER_INVALID", + "message": "Please enter a valid mobile number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_PROFILE_NAME", + "message": "Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_PROFILE_NAME_ERROR_MESSAGE", + "message": "Please enter a valid name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_PROFILE_NAME_INVALID", + "message": "Please enter a valid name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_PROFILE_NEW_PASSWORD", + "message": "New Password:", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_PROFILE_NEW_PASSWORD,", + "message": "New Password:", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_PROFILE_PASSWORD_INVALID", + "message": "Invalid password", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_PROFILE_PASSWORD_MISMATCH", + "message": "Passwords don't match", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_PROFILE_UPDATE_ERROR_WITH_PASSWORD", + "message": "Password must be 8 to 15 characters long and can include alphanumeric characters (a-z, A-Z, 0-9) along with the special characters @, #, $, and %.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_PROFILE_UPDATE_SUCCESS", + "message": "Profile updated successfully", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_PROFILE_UPDATE_SUCCESS_WITH_PASSWORD", + "message": "Profile and password updated successfully", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_RELATIONSHIP", + "message": "Relationship", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_REQUIRED_ERRMSG", + "message": "Required", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_RESET_PASSWORD_LABEL", + "message": "Reset Password", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_RESET_PASSWORD_LABEL,", + "message": "Reset Password", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_SAVE", + "message": "Save", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_SAVINGS", + "message": "Savings", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_SC", + "message": "SC", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_SEARCH_COMPLAINT", + "message": "Search Complaint", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_SKIP_CONTINUE", + "message": "Skip And Continue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_ST", + "message": "ST", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_STATUS", + "message": "Status", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_STREET_INVALID", + "message": "Invalid Street Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_SUBMIT", + "message": "Submit", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_TRANSGENDER", + "message": "Transgender", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_USERNAME_INVALIDMSG", + "message": "Please enter a valid user name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_WARD", + "message": "Ward", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_DOB", + "message": "Date of birth", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_DOOR_NO", + "message": "Door No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_EMPLOYEE_OTP_CHECK_MESSAGE", + "message": "Please check your messages for the OTP & then set a new password.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_FRI", + "message": "Fri", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_LOGIN_CONFIRM_NEW_PASSWORD", + "message": "Confirm New Password ", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_LOGIN_CONFIRM_NEW_PASSWORD,", + "message": "Confirm New Password ", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_LOGIN_CONNFIRM_NEW_PASSWORD_PLACEHOLDER", + "message": "Confirm new password ", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_LOGIN_NEW_PASSWORD", + "message": "New Password ", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_LOGIN_NEW_PASSWORD,", + "message": "New Password ", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_LOGIN_NEW_PASSWORD_PLACEHOLDER", + "message": "Enter your new password", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_LOGIN_NO_ACCOUNT", + "message": "Don’t have an account?", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_LOGIN_PASSWORD", + "message": "Password", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_LOGIN_PASSWORD *", + "message": "Password", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_LOGIN_PASSWORD_ERRORMSG", + "message": "Password is Incorrect", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_LOGIN_PASSWORD_PLACEHOLDER", + "message": "Enter your Password", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_LOGIN_USERNAME", + "message": "User Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_LOGIN_USERNAME *", + "message": "User Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_LOGIN_USERNAME_PLACEHOLDER", + "message": "Enter your Employee ID", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_LOGOUTPOPUP_CANCEL", + "message": "CANCEL", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_LOGOUTPOPUP_CONFIRM", + "message": "Are you sure you want to logout?", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_LOGOUTPOPUP_LOGOUT", + "message": "LOGOUT", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_LOGOUTPOPUP_NO", + "message": "No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_LOGOUTPOPUP_YES", + "message": "Yes", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_LOGOUT_CANCEL", + "message": "Cancel", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_LOGOUT_MESSAGE", + "message": "Logout", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_LOGOUT_MESSAGE?", + "message": " ", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_LOGOUT_MOBILE_CONFIRMATION_MESSAGE", + "message": "Are you sure you want to Logout?", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_LOGOUT_MOBILE_CONFIRMATION_MESSAGE ", + "message": "Are you sure you want to Logout?", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_LOGOUT_WEB_CANCEL", + "message": "Cancel", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_LOGOUT_WEB_CONFIRMATION_MESSAGE", + "message": "Are you sure you want to", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_LOGOUT_WEB_HEADER", + "message": "Logout", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_LOGOUT_WEB_NO", + "message": "Cancel", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_LOGOUT_WEB_YES", + "message": "Yes, Logout", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_MON", + "message": "Mon", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_MSG_WARNING", + "message": "Warning!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_NO", + "message": "No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_NOT_FOUND", + "message": "This page is not available.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_OTP_ERRORMSG", + "message": "Invalid OTP", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_OTP_GET_STARTED", + "message": "GET STARTED", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_OTP_HEADING", + "message": "ENTER OTP", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_OTP_NOT_RECEIVE", + "message": "Didn’t receive OTP?", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_OTP_OTP", + "message": "OTP", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_OTP_PLACEHOLDER", + "message": "Enter OTP", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_OTP_RESEND", + "message": "RESEND", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_OTP_SECONDS", + "message": "seconds", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_OTP_SENT_MESSAGE", + "message": "An OTP has been sent to :", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_REGISTER_HAVE_ACCOUNT", + "message": "Have an account?", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_REGISTER_HEADING", + "message": "REGISTER", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_SAT", + "message": "Sat", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_SEARCH_BY_MOBILE", + "message": "Search by Mobile Number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_SEARCH_BY_NAME", + "message": "Search by Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_SEARCH_BY_NAME_AADHAAR", + "message": "Search by Name / Aadhaar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_SEARCH_BY_NAME_MOBILE_NO", + "message": "Search By Name / Mobile No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_SOMETHIN%%%#@!#$%^&G_WENT_WRONG", + "message": "Something went wrong!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_SOMETHING_WENT_WRONG", + "message": "Something went wrong", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_STREET_NAME", + "message": "Street Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_SUN", + "message": "Sun", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_THU", + "message": "Thu", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_TUE", + "message": "Tue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_UNDER_MAINTENANCE", + "message": "Under Maintenance!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_UNMASK_DATA", + "message": "Unmask Data", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_WED", + "message": "Wed", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORE_YES", + "message": "Yes", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CORRECTIONPENDING", + "message": "Pending for Citizen Action", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CPT_COMPLETE_PROPERTY_DETAILS", + "message": "View Complete Property Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CPT_CREATE_PROPERTY", + "message": "Create property", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CPT_REG_NEW_PROPERTY", + "message": "Create a New Property", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CPT_SEARCH_PROPERTY", + "message": "Search property", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CPT_SEARCH_PROPERTY_INFO", + "message": "On select , the property owner will get an OTP to his/her registered mobile number. You have to enter the OTP to link the selected property to the current application.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CPT_SELECT_PROPERTY", + "message": "Select Property", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CREATED", + "message": "Application Created", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CREATED_FROM_DATE", + "message": "Created from Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CREATED_TO_DATE", + "message": "Created to Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CREATE_INDIVIDUAL_SUCCESS", + "message": "Wage Seeker Registration Successful", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CREATE_INDIVIDUAL_SUCCESS_SUB_TEXT", + "message": "Wage seeker has been registered successfully with ID {individualID}", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CREATE_NEW_EVENTE_BUTTON_LABEL", + "message": "Create New Event", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CREATE_NOTIFICATION", + "message": "Lab results submitted for plant {Plant Name} for {Output} of {Stage} stage scheduled on {Test Submitted Date} is not as per benchmarks.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CREATE_PROP_ON_NEW_CONN", + "message": "Create Property (On New Connection)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CR_COMMON_DASHBOARD_HEADER", + "message": "Dashboard", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CR_COMMON_HEADER", + "message": "Receipt Cancel", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CR_COMMON_REPORTS_HEADER", + "message": "Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CR_RECEIPTS_SCREENS_UNDER_CONSTRUCTION", + "message": "In progress", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CR_REQUIRED_FIELDS_ERROR_MSG", + "message": "Please fill the mandatory field", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CR_SEARCH_COMMON_HEADER", + "message": "Search Receipt", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CR_TOTAL_RECEIPTS", + "message": "Total Receipts", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_ACTION_ASSIGNEDBYAUTOESCALATION", + "message": "Assigned by auto escalation", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_ACTION_CANCEL", + "message": "Cancel", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_ACTION_CLOSE", + "message": "Close", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_ACTION_CLOSERESOLVEDCOMPLAIN", + "message": "Close resolved complaint", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_ACTION_DECLINEVEHICLE", + "message": "Decline Vehicle", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_ACTION_DISPOSE", + "message": "Submit", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_ACTION_FILEUPLOADED", + "message": "File Uploaded", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_ACTION_NO_FILEUPLOADED", + "message": "No File Uploaded", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_ACTION_READY_FOR_DISPOSAL", + "message": "Submit", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_ADDCOMPLAINT_COMPLAINT_LOCATION", + "message": "Complaint's Location", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_ADDCOMPLAINT_SELECT_GEOLOCATION_HEADER", + "message": "Pin Property Location", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_APPLICATION_DETAILS_ADV_AMOUNT_DUE", + "message": "Advance Amount Due (₹)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_APPLICATION_DETAILS_APPLICATION_DATE", + "message": "Application Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_APPLICATION_DETAILS_APPLICATION_TIMELINE", + "message": "Application Timeline", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_APPLICATION_DETAILS_MAKE_PAYMENT", + "message": "Make Payment", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_APPLICATION_DETAILS_PIT_TYPE", + "message": "Onsite sanitation type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_APPROVED", + "message": "Approved", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_ARREARS_DETAILS", + "message": "Arrear Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_BILL_DUEDATE", + "message": "Due Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_BILL_NO", + "message": "Bill No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_BILL_NOT_FOUND", + "message": "Bill Not Found", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_BILL_PERIOD", + "message": "Billing Period", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_BPA_APPROVE", + "message": "Approve", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_BPA_SEND_TO_ARCHITECT", + "message": "SEND TO ARCHITECT", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_CANCEL", + "message": "Cancel Loading", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_CF_FEEDBACK_RESPONSE", + "message": "Your rating has been recorded successfully.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_CF_RATE_US", + "message": "Rate Us", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_CF_TRACK", + "message": "Track", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_CF_VIEW", + "message": "View", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_CHECK_CHECK_YOUR_ANSWERS", + "message": "Check Your Answers", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_CHECK_CHECK_YOUR_ANSWERS_TEXT", + "message": "If you want to modify any value, click on change in the respective step. It will redirect you to the concerned step where you can make your changes.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMONS_NEXT", + "message": "Next", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_ACTION", + "message": "Action", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_APPROVE", + "message": "Approve", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_ASSIGN", + "message": "Assign", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_ATTACHMENTS", + "message": "Documents", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_BACK", + "message": "Back", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_CANCEL", + "message": "Cancel", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_CHANGE", + "message": "CHANGE", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_CHOOSE_FILE", + "message": "Choose File", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_CHOOSE_GENDER", + "message": "Choose Your Gender", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_CHOOSE_LANGUAGE", + "message": "Choose your language", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_CHOOSE_LOCATION", + "message": "Choose your location", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_CLEAR_SEARCH", + "message": "Clear search", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_CLOSE", + "message": "Close", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_COMPLAINT_RESOLVED", + "message": "Resolved", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_CONNECTION_DETAIL_PAGE", + "message": "View Connection Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_CS_COMMON_CLOSEDAFTERRESOLUTION", + "message": "Closed after resolution", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_DASHBOARD_INFO_UPDATES", + "message": "Information and Updates", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_DECLINEVEHICLE", + "message": "Decline Vehicle", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_DOCUMENTS", + "message": "Documents", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_DOWNLOAD", + "message": "Download", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_DOWNLOAD_APPLICATION", + "message": "Download Application", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_DOWNLOAD_OCCUPANCY_CERTIFICATE", + "message": "Download Occupancy Certificate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_DOWNLOAD_PERMIT_ORDER", + "message": "Download Permit Order", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_DOWNLOAD_RECEIPT", + "message": "Download Reciept", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_EMPLOYEEOTP_CHANGED_PASSWORD_SUCCESS", + "message": "Password changed successfully!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_FILE_A_COMPLAINT", + "message": "File a Complaint", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_FSM_ASSIGN_DSO", + "message": "Assign DSO", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_FSM_ASSING_DSO", + "message": "Pending for DSO Assignment", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_FSM_CANCELED", + "message": "Cancelled", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_FSM_CITIZEN_FEEDBACK_PENDING", + "message": "Pending for Citizen Feedback", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_FSM_COMPLETED", + "message": "Completed", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_FSM_CREATED", + "message": "Created", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_FSM_DISPOSAL_IN_PROGRESS", + "message": "Disposal in Progress", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_FSM_DISPOSED", + "message": "Disposed", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_FSM_DSO_INPROGRESS", + "message": "DSO InProgress", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_FSM_DSO_REJECTED", + "message": "DSO Rejected", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_FSM_PENDING_APPL_FEE_PAYMENT", + "message": "Pending Payment", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_FSM_PENDING_DSO_APPROVAL", + "message": "Pending for DSO Approval", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_FSM_REJECTED", + "message": "Rejected", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_FSM_WAITING_FOR_DISPOSAL", + "message": "Waiting for Disposal", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_GET_DIRECTIONS", + "message": "Get Directions", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_GO_BACK_TO_HOME", + "message": "Go Back To Home", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_HELP", + "message": "Help", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_HELPLINE", + "message": "HELPLINE", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_HOME_COMPLAINTS", + "message": "Citizen Complaint Resolution System", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_INBOX_ALL", + "message": "All", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_INBOX_ARCHITECT", + "message": "Architect", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_INBOX_ASMT", + "message": "Property Assessment", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_INBOX_BPA", + "message": "BPA", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_INBOX_BPA_LOW", + "message": "BPA", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_INBOX_BPA_OC", + "message": "BPA", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_INBOX_BUILDER", + "message": "Builder", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_INBOX_DEACTIVATE-NEWSW1", + "message": "Deactivate Sewerage Connection", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_INBOX_DEACTIVATE-NEWWS1", + "message": "Deactivate Water Connection", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_INBOX_DIRECTRENEWAL", + "message": "Direct Renewal", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_INBOX_DISCONNECTIONSW", + "message": "Disconnect Sewerage Application", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_INBOX_DISCONNECTIONWS", + "message": "Disconnect Water Application", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_INBOX_DISCONNECTSWCONNECTION", + "message": "Disconnect Sewerage Application", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_INBOX_DISCONNECTWSCONNECTION", + "message": "Disconnect Water Application", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_INBOX_EDITRENEWAL", + "message": "Edit Renewal", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_INBOX_ENGINEER", + "message": "Engineer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_INBOX_FIRE", + "message": "NOC", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_INBOX_FIRENOC", + "message": "FIRENOC", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_INBOX_FIRE_NOC_SRV", + "message": "Fire Noc", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_INBOX_FSM", + "message": "Fecal Sludge Management", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_INBOX_MODIFYSWCONNECTION", + "message": "Modify Sewerage Connection", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_INBOX_MODIFYWSCONNECTION", + "message": "Modify Water Connection", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_INBOX_MODULE_ALL", + "message": "Module All", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_INBOX_NEWSW1", + "message": "New Sewerage Application", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_INBOX_NEWTL", + "message": "NewTL", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_INBOX_NEWWS1", + "message": "New Water Application", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_INBOX_PGR", + "message": "Citizen Complaint Resolution System", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_INBOX_PT", + "message": "Property Tax", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_INBOX_PT.CREATE", + "message": "New Property", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_INBOX_PT.LEGACY", + "message": "Legacy Entry", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_INBOX_PT.MUTATION", + "message": "Transfer of Ownership", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_INBOX_PT.UPDATE", + "message": "Transfer of Ownership", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_INBOX_STRUCTURALENGINEER", + "message": "Structural Engineer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_INBOX_TOWNPLANNER", + "message": "Townplanner", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_INFO", + "message": "Info", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_LOCATION_SELECTION_ERROR", + "message": "Please select your Location", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_NEW_SURVEY", + "message": "Add New Survey", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_NEXT", + "message": "Next", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_OBPS", + "message": "Online Building Permit System", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_OR", + "message": "OR", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_PARTICIPATE", + "message": "Participate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_PAY", + "message": "PAY NOW", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_PAYMENT_AMOUNT", + "message": "Payment Amount", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_PAYMENT_COMPLETE", + "message": "Payment Complete", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_PAY_DUES", + "message": "Pay Now", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_PAY_NOW", + "message": "Pay Now", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_PORTAL_LINK", + "message": "Portal Link", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_PRINT_CERTIFICATE", + "message": "Print Certificate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_PRINT_RECEIPT", + "message": "Print Receipt", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_PROCEED", + "message": "Proceed", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_PROCEED_TO_PAY", + "message": "Proceed To Pay", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_RATE", + "message": "Rate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_RECIEPT_NO", + "message": "Reciept No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_REOPEN", + "message": "Re-open", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_REQUIRED", + "message": "Required", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_REQUIRED_ERROR", + "message": "Required field", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_RESOLVED", + "message": "Resolved", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_RETRY", + "message": "Retry", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_REVIEW", + "message": "REVIEW", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_ROWS_PER_PAGE", + "message": "Rows per page", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_SCHEDULE", + "message": "Schedle", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_SEARCH_PLACEHOLDER", + "message": "Search here", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_SELECT_GENDER", + "message": "Select your gender", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_SEND_BACK_TO_CITIZEN", + "message": "SEND BACK TO CITIZEN", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_SEND_TO_ARCHITECT", + "message": "SEND TO ARCHITECT", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_SKIP", + "message": "Skip and Continue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_SUBMIT", + "message": "Submit", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_SURVEYS", + "message": "Surveys", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_THANK_YOU", + "message": "Thank You", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_VIEW", + "message": "View", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_VIEW_APPLICATION", + "message": "VIEW APPLICATION", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_VIEW_ATTACHMENT", + "message": "View Attachment", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_VIEW_HISTORY_LINK", + "message": "View History", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_VIEW_PROPERTY", + "message": "VIEW PROPERTY", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_CONNECTION_ACTIVATED", + "message": "Connection Activated", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_DOWNLOAD_RECEIPT", + "message": "Download Receipt", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_ENTRIES", + "message": "entries", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_EVENT_DETAILS", + "message": "Event Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_FILE_APPLICATION_INFO_LABEL", + "message": "Info", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_FILE_APPLICATION_PINCODE_LABEL", + "message": "Do you know the pincode ?", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_FILE_APPLICATION_PROPERTY_LOCATION_ADDRESS_TEXT", + "message": "Provide Property address", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_FILE_APPLICATION_PROPERTY_LOCATION_CITY_MOHALLA_TEXT", + "message": "Choose the locality of the Property from the list given below.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_FILE_APPLICATION_PROPERTY_LOCATION_DOOR_NO_LABEL", + "message": "Door No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_FILE_APPLICATION_PROPERTY_LOCATION_PROVIDE_LANDMARK_TEXT", + "message": "Provide the landmark to help us reach the property location easily.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_FILE_APPLICATION_PROPERTY_LOCATION_PROVIDE_LANDMARK_TITLE", + "message": "Provide Landmark", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_FILE_APPLICATION_PROPERTY_LOCATION_STREET_NAME_LABEL", + "message": "Street Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_FILE_PROPERTY_FAILED_RESPONSE", + "message": "Applications submission failed", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_FILE_PROPERTY_RESPONSE", + "message": "Application reference is sent to your registered mobile number. You will be notified with the charges for the applied service shortly. Please make the payment using my applications link from home page after you receive the notification", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_FILE_UPLOAD_ERROR", + "message": "Invalid File", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_FSM_APPLICATION_TYPE_ADHOC", + "message": "Adhoc", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_FSM_APPLICATION_TYPE_PERIODIC", + "message": "Periodic", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_GO_BACK_HOME", + "message": "Go Back Home", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_GRAM_PANCHAYAT", + "message": "Gram Panchayat", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_HEADER_EVENTS", + "message": "Events", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_HEADER_MDMS_COMMON", + "message": "MDMS", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_HEADER_MYCITY", + "message": "My City", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_HEADER_NOTIFICATIONS", + "message": "Notifications", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_HEADER_WHATSNEW", + "message": "What’s New", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_HIDE_CARD", + "message": "Hide Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_HOME_APPLY_FOR_DESLUDGING", + "message": "Apply for Emptying of Septic Tank / Pit", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_HOME_FILE_COMPLAINT", + "message": "File Complaint", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_HOME_FSM_SERVICES", + "message": "Faecal Sludge Mgmt", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_HOME_HEADER_CONTACT_US", + "message": "Contact Us", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_HOME_HEADER_HOME", + "message": "Sujog", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_HOME_HEADER_HOW_IT_WORKS", + "message": "How it Works", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_HOME_HEADER_LANGUAGE", + "message": "Language", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_HOME_HEADER_LOCALIZATION", + "message": "Localization", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_HOME_HEADER_PROFILE", + "message": "Edit Profile", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_HOME_MY_APPLICATIONS", + "message": "My Applications", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_HOME_MY_COMPLAINTS", + "message": "My Complaints", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_HOME_PT", + "message": "Property Tax", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_HOME_QUICK_PAY", + "message": "Quick Pay", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_INBOX_CLEAR", + "message": "CLEAR ALL", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_INBOX_LOADING_MSG", + "message": "Loading Inbox", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_INBOX_LOAD_ALL", + "message": "Load all record", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_INBOX_LOCALITY_FILTER", + "message": "Locality", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_INBOX_MDMS_FETCH_ERROR", + "message": "Session Expired Login Again", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_INBOX_MODULE_FILTER", + "message": "Module", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_INBOX_SEARCH", + "message": "Search", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_INBOX_SEARCH_PLACEHOLDER", + "message": "Enter a Keyword to search", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_INBOX_SELECT_ALL", + "message": "All", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_INBOX_STATEA_LOADING_MSG", + "message": "Loading Inbox", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_INBOX_STATUS_FILTER", + "message": "Status", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_INFO_DELETE", + "message": "Delete", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_INITIATED", + "message": "Initiated", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_INVALID_INPUT", + "message": "Invalid input", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_INVALID_OTP", + "message": "Invalid OTP", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_LANDING_PAGE_COMPLAINTS_DESCRIPTION", + "message": "mSeva Complaints offers an easy to use interface which enables you to lodge civic works related complaints. It also lets you track the status of your complaint and facilitates direct interaction with your municipality till its resolution.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_LANDING_PAGE_NOC_DESCRIPTION", + "message": "You can apply for Pre-construction (Provisional) and Post Construction (New) Fire NOC online and track status of your application.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_LANDING_PAGE_PROPERTY_TAX_DESCRIPTION", + "message": "Assess", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_LANDING_PAGE_TRADE_LICENSE_DESCRIPTION", + "message": "A licensed trade will always enjoy a greater goodwill and attract more customers and investors than unregistered entities. Help your city to plan and support your business. Apply for your Trade License Now!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_LANDING_PAGE_WELCOME_TEXT", + "message": "Welcome", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_LINK_DSO_DASHBOARD", + "message": "DSO Login/ Dashboard", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_LINK_LOGIN_DSO", + "message": "DSO Login", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_LOADING", + "message": "Loading...", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_LOGIN_NAME_TEXT", + "message": "Provide the name of the person to make your experience more personalised", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_LOGIN_OTP", + "message": "OTP Verification", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_LOGIN_OTP_TEXT", + "message": "Enter the OTP sent to", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_LOGIN_OTP_TEXT,", + "message": "Enter the OTP sent to", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_LOGIN_PROVIDE_MOBILE_NUMBER", + "message": "Provide your mobile number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_LOGIN_PROVIDE_NAME", + "message": "Provide your Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_LOGIN_TEXT", + "message": "All the communications regarding the application will be sent to this mobile number.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_MAP_MOVE_PIN", + "message": "Move Pin", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_MAXIMUM_UPLOAD_SIZE_EXCEEDED", + "message": "Upload file size less than 5MB", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_MIN_LENGTH_50", + "message": "Please enter atleast 50 characters", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_MYAPPLICATIONS_NO_APPLICATION", + "message": "No Applications found", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_MYCOMPLAINTS_TRACK", + "message": "TRACK", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_NA", + "message": "NA", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_NO_ARREARS", + "message": "No Arrears", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_OF", + "message": "of", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_OVERDUE_BY_DAY", + "message": "Overdue by {0} day", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_OVERDUE_BY_DAYS", + "message": "Overdue by {0} days", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_PAGINATION_FIRST", + "message": "First", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_PAGINATION_LAST", + "message": "Last", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_PAGINATION_NEXT", + "message": "Next", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_PAGINATION_PREVIOUS", + "message": "Previous", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_PAYMENT_ADV_COLLECTION", + "message": "Advance Amount", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_PAYMENT_AMOUNT_PAID", + "message": "Amount Paid", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_PAYMENT_AMOUNT_PENDING", + "message": "Pending Amount", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_PAYMENT_BILLING_PERIOD", + "message": "Billing Period", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_PAYMENT_BILL_DETAILS", + "message": "Bill Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_PAYMENT_CUSTOM_AMOUNT", + "message": "Custom Amount", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_PAYMENT_FAILURE_MESSAGE", + "message": "Any amount deducted will be processed back in 24 hrs", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_PAYMENT_FULL_AMOUNT", + "message": "Full Amount", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_PAYMENT_INCORRECT_IFSC_CODE_ERROR", + "message": "Please enter correct IFSC Code!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_PAYMENT_REDIRECT_NOTICE", + "message": "You will be redirected to a third-party payment gateway.\nmSeva does not save any credit or debit card details.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_PAYMENT_TOTAL_AMOUNT", + "message": "Total Amount Due", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_PAYMENT_TRANSANCTION_DATE", + "message": "Payment Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_PAYMENT_TRANSANCTION_ID", + "message": "Transaction ID", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_PENDING_APPROVAL_FOR_CONNECTION", + "message": "Pending Approval for Connection", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_PENDING_FOR_APPROVA", + "message": "Pending for Approval", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_PENDING_FOR_APPROVAL", + "message": "Pending for Approval", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_PENDING_FOR_CONNECTION_ACTIVATION", + "message": "Pending for Connection Activation", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_PENDING_FOR_DOCUMENT_VERIFICATION", + "message": "Pending for Document Verification", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_PENDING_FOR_FIELD_INSPECTION", + "message": "Pending for Field Inspection", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_PENDING_FOR_PAYMENT", + "message": "Pending for Payment ", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_PGR_REPORTS_HEADER", + "message": "Reports", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_PROFILE_EMAIL", + "message": "Email Id", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_PROFILE_EMAIL_ERRORMSG", + "message": "Invalid Email Id", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_PROFILE_EMAIL_PLACEHOLDER", + "message": "Enter Your Email Id", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_PROFILE_SAVE", + "message": "Save", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_PROPERTY_APPLICATION_SUCCESS", + "message": "Application Submitted Successfully", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_PROPERTY_FEEDBACK_SUCCESS", + "message": "Thank you for rating us!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_PROPERTY_ID_FORMAT_MUST_BE", + "message": "Property ID format must be ", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_PROPERTY_ID_FORMAT_MUST_BEPG-PT-xxxx-xx-xx-xxxxxx", + "message": "Property ID must be in this format PG-PT-xxxx-xx-xx-xxxxxx", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_PT_HOME_SEARCH_RESULTS_DESC", + "message": "Provide atleast one search parameter.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_PT_NO_PROPERTIES_FOUND", + "message": "No Properties Found", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_READ_LESS", + "message": "Read Less", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_READ_MORE", + "message": "Read More", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_RECORDS", + "message": "records", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_REJECTED", + "message": "Rejected", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_RESEND_ANOTHER_OTP", + "message": "Resend another OTP", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_RESEND_ANOTHER_OTP,", + "message": "Resend another OTP", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_RESEND_OTP", + "message": "Resend OTP", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_RESEND_OTP,", + "message": "Resend OTP", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_RESEND_SECONDS", + "message": "secs", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_RESEND_SECONDS,", + "message": "secs", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_REVIEW_AND_FEEDBACK", + "message": "Rate us", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_SEARCH", + "message": "search", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_SEARCH_RESULTS", + "message": "Search Results", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_SELECTED_TEXT", + "message": "ULB", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_SELECT_CITY_CHOOSE_CITY", + "message": "Choose City", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_SHOW", + "message": "Show", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_SHOWING", + "message": "showing", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_SHOW_CARD", + "message": "View Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_SKIP_CONTINUE", + "message": "Skip and Continue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_SLA_DAY", + "message": "days ago", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_SLA_DAY_ONE", + "message": "{0} day ago", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_SLA_MINUTE", + "message": "{0} minutes ago", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_SLA_MINUTE_ONE", + "message": "{0} minute ago", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_SLA_MONTH", + "message": "{0} months ago", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_SLA_MONTH_ONE", + "message": "{0} month ago", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_SLA_NOW", + "message": "Now", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_SLA_TIME", + "message": "{0} hrs ago", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_SLA_TIME_ONE", + "message": "{0} hr ago", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_SLA_WEEK", + "message": "{0} weeks ago", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_SLA_WEEK_ONE", + "message": "1 week ago", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_STAKEHOLDER_APPLICATION_FAILED", + "message": "Stakeholder Registration Failed", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_SURVEY_RESPONDED", + "message": "Already Responded", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_SURVEY_RESULTS", + "message": "Survey results", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_TITLE_APPLICATION_DETAILS", + "message": "Application Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_TITLE_GENERATE_NOTE", + "message": "Generate Note", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_TITLE_MY_BILLS", + "message": "My Bills", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_TO", + "message": "to", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_TRADE_UPDATE_APPLICATION_SUCCESS", + "message": "Application Updated Successfully", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_VIEW", + "message": "View", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_VIEW_DETAILS", + "message": "View Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_VILLAGE_NAME", + "message": "Village Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_WHAT_WENT_GOOD", + "message": "What went good?", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CS_WHAT_WENT_WRONG", + "message": "What went wrong ?", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CULTURAL", + "message": "Cultural", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "Citya", + "message": "City A", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "Close Financial Year", + "message": "Close Financial Year", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "Code", + "message": "code", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CollectionOperator", + "message": "Collection Operator", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "CollectionOperator_PLACE", + "message": "Collection Operator", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DASHBOARD_CITIZEN_SERVICES_LABEL", + "message": "Citizen Services", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DASHBOARD_LOCAL_INFORMATION_LABEL", + "message": "Local Information", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DASHBOARD_TITLE_FINANCE_ROLLOUT_ADOPTION", + "message": "Finance Rollout & Adoption Dashboard", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DASHBOARD_VIEW_ALL_LABEL", + "message": "VIEW ALL", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DASHBOARD_WHATS_NEW_LABEL", + "message": "What’s New", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DATE_ANSWER_TYPE", + "message": "Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DATE_OF_INCORP", + "message": "Date of Incorporation", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DATE_VALIDATION_MSG", + "message": "To date should be greater then from date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DATE_VALIDATION_VALID_TO_VALID_FROM_MSG", + "message": "Valid To date should be greater than Valid From date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DCOUMENT_DESCRIPTION", + "message": "Document Description", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DDR_STATEA_AMHARA", + "message": "Ethiopia", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DDR_undefined", + "message": "Dire Dawa District", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DEATH_CERT_FEE", + "message": "Death Certificate Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DEFAULTERREPORT", + "message": "Defaulter Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DEFENCE", + "message": "Defence", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DEFENSE", + "message": "Defense Personnel", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DELETE_EVENT_LABEL", + "message": "Delete Event", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DELETE_PUBLIC_MESSAGE", + "message": "Delete Public Message", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DEPOSITED", + "message": "Deposited", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DEPT_REG_NO", + "message": "Department Registration number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DESCRIPTIONREPORT", + "message": "Description Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DESIGNATION", + "message": "Designation", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DIGIT_I_ACCEPT", + "message": "I accept", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DIGIT_I_DO_NOT_ACCEPT", + "message": "I do not accept", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DIGIT_TABLE_OF_CONTENTS", + "message": "Privacy Policy", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DIRECTRENEWAL", + "message": "Direct Renewal", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DIRECTRENEWAL-APPLIED", + "message": "Direct Renewal-Applied", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DIRECTRENEWAL-APPROVED", + "message": "Direct Renewal-Approved", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DIRECTRENEWAL-CANCELLED", + "message": "Direct Renewal-Cancelled", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DIRECTRENEWAL-EXPIRED", + "message": "Direct Renewal-Expired", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DIRECTRENEWAL-MANUALEXPIRED", + "message": "Direct Renewal-Manual Expired", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DIRECTRENEWAL-PENDINGPAYMENT", + "message": "Direct Renewal-Pending For Payment", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DISABLED", + "message": "Disabled", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DISCONNECT_SEWERAGE_CONNECTION", + "message": "Sewerage", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DISCONNECT_SEWERAGE_CONNECTON", + "message": "Sewerage", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DISCONNECT_WATER_CONNECTION", + "message": "Water", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DISHONOURED", + "message": "Dishonoured", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DISPOSAL_IN_PROGRESS", + "message": "Disposal in Progress", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DOB_IS_REQUIRED", + "message": "Date of birth is required", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DOCUMENTS_ATTACH_RESTRICTIONS_SIZE", + "message": "Only jpg, png, doc and pdf files. 5MB max file size.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DOCUMENTS_CATEGORY_CARD_LABEL", + "message": "Document Category", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DOCUMENTS_DOCUMENT_CARD_SECTION_HEADER", + "message": "Documents", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DOCUMENTS_DOCUMENT_HEADER", + "message": "Documents", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DOCUMENTS_EDIT_HEADER", + "message": "Edit", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DOCUMENTVERIFY", + "message": "Pending for Document Verification", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DOCUMENT_CATEGORY", + "message": "Document Category", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DOCUMENT_NAME", + "message": "Document Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DOC_VERIFICATION_INPROGRESS", + "message": "Document Verification In Progress", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DOWNLOAD_RECEIPT_HEADER", + "message": "Download Receipt", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSO_INPROGRESS", + "message": "DSO Inprogress", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSO_REJECTED", + "message": "DSO Rejected", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS", + "message": "Dashboard", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_ABOUT_DASHBOARD", + "message": "About the Dashboard", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_ALL_DDRS", + "message": "All DDRs", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_ALL_ULBS", + "message": "All ULBs", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_BND", + "message": "Birth & Death", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_BOTTOM_PERFORMING_ULBS", + "message": "Bottom Performing ULBs", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_BUILDING_PERMISSION", + "message": "Online Building Plan Approval System", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_CITIZEN_REGISTERED", + "message": "Citizen Registered", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_CLOSED_APPLICATION", + "message": "Closed Application", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_COLLECTIONS", + "message": "Collections", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_COMPLETION_RATE", + "message": "Completion Rate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_DDR_A", + "message": "DDR A", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_DDR_B", + "message": "DDR B", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_DDR_BALASORE", + "message": "DDR Berhmapur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_DDR_BERHMAPUR", + "message": "DDR Dhenkanal", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_DDR_DHENKANAL", + "message": "DDR Balasore", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_FAQS", + "message": "FAQs", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_FINANCE", + "message": "Finance", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_FIRENOC", + "message": "FireNoc", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_FSM", + "message": "FSM", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_HEADER_ACTUAL_FIRE_NOCS_ISSUED", + "message": "Actual FireNoc Issued", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_MCOLLECT", + "message": "MCollect", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_MUKTA_MUSTER_ROLLS", + "message": "Muster Rolls", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_MUKTA_MUSTER_ROLLS_BY_STATUS", + "message": "Muster Rolls", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_OBPS", + "message": "OBPS", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_OVERVIEW", + "message": "Overview", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_OVERVIEW_CITIZEN_FEEDBACK_SCORE", + "message": "Citizen Feedback Score", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_OVERVIEW_DASHBOARD", + "message": "Overview Dashboard", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_PREVIOUS_YEAR", + "message": "Previous Year", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_PROPERTY_TAX", + "message": "Property Tax", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_PROPERTY_TAX_DASHBOARD", + "message": "Property Tax Dashboard", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_PT_BOTTOM_3_PERFORMING_ULBS", + "message": "Bottom 3 Performing ULBs", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_PT_CITIZEN_FEEDBACK_SCORE", + "message": "Citizen Feedback Score", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_PT_COLLECTION_BY_USAGE_TYPE", + "message": "Collection by Usage type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_PT_CUMULATIVE_PROPERTIES_ASSESSED", + "message": "Total Cumulative Properties Assessed", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_PT_DEMAND_&_COLLECTION_INDEX", + "message": "Demand & Collection Index", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_PT_DEMAND_COLLECTION", + "message": "Demand & Collection Index", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_PT_DEMAND_COLLECTION_BOUNDARY", + "message": "Boundary", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_PT_DEMAND_COLLECTION_USAGETYPE", + "message": "Usage Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_PT_PROPERTIES_BY_USAGE_TYPE", + "message": "Properties by Usage type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_PT_SLA_ACHIEVED", + "message": "SLA Compliance", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_PT_TOP_3_PERFORMING_ULBS", + "message": "Top 3 Performing ULBs", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_PT_TOTAL_ACTIVE_ULBS", + "message": "Total Active ULBs", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_PT_TOTAL_ASSESSMENTS", + "message": "Total Assessments", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_PT_TOTAL_PROPERTIES_ASSESSED", + "message": "Total Properties Assessed", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_REVENUE", + "message": "Revenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_SERVICE", + "message": "Service", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_SLA_ACHIEVED", + "message": "SLA Achieved", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_STATEA_AMHARA", + "message": "Ethiopia", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_TARGET_ACHIEVED", + "message": "Target Achievement", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_TARGET_COLLECTION", + "message": "Target Collection", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_TB_AJIT_NAGAR_AREA_1", + "message": "Ajit Nagar Area 1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_TB_BACKSIDE_BRIJBALA_HOSPITAL___AREA3", + "message": "Backside Brijbala Hospital - Area3", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_TB_BACK_SIDE_33_KVA_GRID_PATIALA_ROAD___AREA1", + "message": "Back Side 33 KVA Grid Patiala Road - Area 1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_TB_BACK_SIDE_66_KVA_GRID_PATIALA_ROAD___AREA2", + "message": "Back Side 66 KVA Grid Patiala Road - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_TB_BLOCK_8", + "message": "Block 8", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_TB_CINEMA_ROAD___AREA1", + "message": "Cinema Road - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_TB_DDR_AMHARA", + "message": "Ethiopia", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_TB_MOHALLA_KOHLIYAN___AREA1", + "message": "Mohalla Kohliyan - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_TB_ODISHA", + "message": "Odisha", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_TB_STATEA_ADDISABABA", + "message": "City F", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_TB_STATEA_AMHARA", + "message": "Ethiopia", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_TB_STATEA_DIREDAWA", + "message": "City H", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_TB_STATEA_OROMIA", + "message": "City I", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_TB_TARGET_ACHIEVED ", + "message": "Target Achieved", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_TB_TENANTX-MC", + "message": "Tenant X", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_TB_TENANTY-MC", + "message": "Tenant Y", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_TB_TENANTZ-MC", + "message": "Tenant Z", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_TB_UTTARAKHAND", + "message": "Uttarakhand", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_TB__STATEA_OROMIA", + "message": "City I", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_THAN_LAST_YEAR", + "message": "than LY", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_THIS_MONTH", + "message": "This Month", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_THIS_QUARTER", + "message": "This Quarter", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_THIS_WEEK", + "message": "This Week", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_THIS_YEAR", + "message": "This Year", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_TL_CUMULATIVE_LICENSE_ISSUED", + "message": "Total Cumulative License Issued", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_TL_LICENSE_BY_STATUS", + "message": "Trade License by Status", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_TL_LICENSE_BY_TYPE", + "message": "License by Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_TL_LICENSE_ISSUED", + "message": "Total License Issued", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_TODAY", + "message": "Today", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_TOP_PERFORMING_ULBS", + "message": "Top Performing ULBs", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_TOTAL_APPLICATIONS:_DEPARTMENT_WISE", + "message": "Total Applications: Service Wise", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_TOTAL_APPLICATION_&_CLOSED_APPLICATION", + "message": "Total Application & Closed Application", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_TOTAL_COLLECTION", + "message": "Total Collection", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_TOTAL_CUMULATIVE_COLLECTION", + "message": "Total Cumulative Collection", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_TOTAL_CUMULATIVE_COLLECTION:_DEPARTMENT_WISE", + "message": "Total Cumulative Collection: Service Wise", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_TRADE_LICENSE", + "message": "Tradelicence", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_W&S", + "message": "Water & Sewerage", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_W&S_DASHBOARD", + "message": "Water & Sewerage Dashboard", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_YESTERDAY", + "message": "Yesterday", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DSS_undefined", + "message": "Dire Dawa District", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DUPLICATE_AADHAAR", + "message": "Entered Aadhaar is already present in the system.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "DU_DOCUMENT_UPLOAD_NOTIFICATION_TEMPLATE", + "message": "A new document {document_name} has been uploaded in mSeva. Click the following link to view the document: {link}", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EARLY_RECONC_JOB", + "message": "System", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EDITRENEWAL", + "message": "Edit Renewal", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EDITRENEWAL-APPLIED", + "message": "Edit Renewal-Applied", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EDITRENEWAL-APPROVED", + "message": "Edit Renewal-Approved", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EDITRENEWAL-CANCELLED", + "message": "Edit Renewal-Cancelled", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EDITRENEWAL-CITIZENACTIONREQUIRED", + "message": "Edit Renewal-Citizen Action Required", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EDITRENEWAL-EXPIRED", + "message": "Edit Renewal-Expired", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EDITRENEWAL-FIELDINSPECTION", + "message": "Edit Renewal-Pending For Field Inspection", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EDITRENEWAL-INITIATED", + "message": "Edit Renewal-Intiated", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EDITRENEWAL-MANUALEXPIRED", + "message": "Edit Renewal-Manual Expired", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EDITRENEWAL-PENDINGAPPROVAL", + "message": "Edit Renewal-Pending For Approval", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EDITRENEWAL-PENDINGPAYMENT", + "message": "Edit Renewal-Pending For Payment", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EDITRENEWAL-REJECTED", + "message": "Edit Renewal-Rejected", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EDIT_NEW_PUBLIC_MESSAGE", + "message": "Edit Public Message", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EDIT_PROFILE", + "message": "Edit Profile", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EFFLUENT", + "message": "Effluent", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EGOV_LOCATION_BOUNDARYTYPE_BLOCK", + "message": "BLOCK", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EGOV_LOCATION_BOUNDARYTYPE_CITY", + "message": "CITY", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EGOV_LOCATION_BOUNDARYTYPE_LOCALITY", + "message": "LOCALITY", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EGOV_LOCATION_BOUNDARYTYPE_ZONE", + "message": "ZONE", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EGOV_LOCATION_TENANTBOUNDARY_ADMIN", + "message": "ADMIN", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EGOV_LOCATION_TENANTBOUNDARY_BLOCK", + "message": "BLOCK", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EGOV_LOCATION_TENANTBOUNDARY_CITY", + "message": "CITY", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EGOV_LOCATION_TENANTBOUNDARY_LOCALITY", + "message": "LOCALITY", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EGOV_LOCATION_TENANTBOUNDARY_REVENUE", + "message": "REVENUE", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EGOV_LOCATION_TENANTBOUNDARY_ZONE", + "message": "ZONE", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EIPT_LETTER_HEAD", + "message": "Receipt", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMAIL_VALIDATION", + "message": "Please enter a valid email", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_FAILURE_ADVT_HOARDINGS_PAYMENT_MESSAGE", + "message": "Payment has failed!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_FAILURE_ADVT_HOARDINGS_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding payment failure has been sent at the registered Mobile No. of the user/owner.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_FAILURE_BPA_LOW_RISK_PERMIT_FEE_PAYMENT_MESSAGE", + "message": "Payment has failed!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_FAILURE_BPA_LOW_RISK_PERMIT_FEE_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding payment failure has been sent to property owner at registered Mobile No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_FAILURE_BPA_NC_APP_FEE_PAYMENT_MESSAGE", + "message": "Payment has failed!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_FAILURE_BPA_NC_APP_FEE_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding payment failure has been sent to property owner at registered Mobile No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_FAILURE_BPA_NC_SAN_FEE_PAYMENT_MESSAGE", + "message": "Payment has failed!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_FAILURE_BPA_NC_SAN_FEE_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding payment failure has been sent to property owner at registered Mobile No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_FAILURE_DEFALUT_PAYMENT_MESSAGE", + "message": "Payment has failed!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_FAILURE_DEFALUT_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding payment failure has been sent to property owner at registered Mobile No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_FAILURE_DEFAULT_PAYMENT_MESSAGE", + "message": "Payment has failed!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_FAILURE_DEFAULT_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding payment failure has been sent at the registered Mobile No. of the user/owner.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_FAILURE_FIRENOC_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding Payment failure has been sent to the registered Mobile No. of the user/owner.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_FAILURE_PT_MUTATION_PAYMENT_MESSAGE", + "message": "Payment has failed!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_FAILURE_PT_MUTATION_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding payment failure has been sent to property owner at registered Mobile No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_FAILURE_PT_PAYMENT_MESSAGE", + "message": "Payment has failed!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_FAILURE_PT_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding payment failure has been sent to property owner at registered Mobile No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_FAILURE_SW.ONE_TIME_FEE_PAYMENT_MESSAGE", + "message": "Payment has failed!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_FAILURE_SW.ONE_TIME_FEE_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding Payment failure has been sent to the registered Mobile No. of the user/owner.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_FAILURE_SW_ONE_TIME_FEE_PAYMENT_MESSAGE", + "message": "Payment has failed!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_FAILURE_SW_ONE_TIME_FEE_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding Payment failure has been sent to the registered Mobile No. of the user/owner.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_FAILURE_SW_PAYMENT_MESSAGE", + "message": "Payment has failed!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_FAILURE_SW_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding Payment failure has been sent to the registered Mobile No. of the user/owner.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_FAILURE_TL_PAYMENT_MESSAGE", + "message": "Payment has failed!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_FAILURE_TL_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding payment failure has been sent to property owner at registered Mobile No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_FAILURE_WS.ONE_TIME_FEE_PAYMENT_MESSAGE", + "message": "Payment has failed!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_FAILURE_WS.ONE_TIME_FEE_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding Payment failure has been sent to the registered Mobile No. of the user/owner.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_FAILURE_WS_ONE_TIME_FEE_PAYMENT_MESSAGE", + "message": "Payment has failed!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_FAILURE_WS_ONE_TIME_FEE_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding Payment failure has been sent to the registered Mobile No. of the user/owner.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_FAILURE_WS_PAYMENT_MESSAGE", + "message": "Payment has failed!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_FAILURE_WS_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding Payment failure has been sent to the registered Mobile No. of the user/owner.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_RESPONSE_ACTIVATION_ACTION_ERROR", + "message": "Employee Activation Failed", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_ADVT_GAS_BALLOON_ADVERTISEMENT_PAYMENT_MESSAGE", + "message": "Payment has been collected successfully!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_ADVT_GAS_BALLOON_ADVERTISEMENT_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding Payment Collection has been sent to the registered Mobile No. of the user/owner.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_ADVT_GAS_BALLOON_ADVERTISEMENT_PAYMENT_RECEIPT_NO", + "message": "Payment Receipt No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_ADVT_HOARDINGS_PAYMENT_MESSAGE", + "message": "Payment has been collected successfully!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_ADVT_HOARDINGS_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding Payment Collection has been sent to the registered Mobile No. of the user/owner.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_ADVT_HOARDINGS_PAYMENT_RECEIPT_NO", + "message": "Payment Receipt No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_ADVT_LIGHT_WALA_BOARD_PAYMENT_MESSAGE", + "message": "Challan Generated Successfully", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_ADVT_LIGHT_WALA_BOARD_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding above challan/bill has been sent to the registered Mobile No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_ADVT_LIGHT_WALA_BOARD_PAYMENT_RECEIPT_NO", + "message": "Receipt No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_ADVT_UNIPOLLS_PAYMENT_MESSAGE", + "message": "Challan Generated Successfully", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_ADVT_UNIPOLLS_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding above challan/bill has been sent to the registered Mobile No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_ADVT_UNIPOLLS_PAYMENT_RECEIPT_NO", + "message": "Receipt No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_ADVT_WALL_PAINT_ADVERTISEMENT_PAYMENT_MESSAGE", + "message": "Challan Generated Successfully", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_ADVT_WALL_PAINT_ADVERTISEMENT_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding above challan/bill has been sent to the registered Mobile No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_ADVT_WALL_PAINT_ADVERTISEMENT_PAYMENT_RECEIPT_NO", + "message": "Receipt No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_BPA_LOW_RISK_PERMIT_FEE_PAYMENT_MESSAGE", + "message": "Payment has been collected successfully!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_BPA_LOW_RISK_PERMIT_FEE_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding Payment Collection has been sent to property owner at registered Mobile No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_BPA_LOW_RISK_PERMIT_FEE_PAYMENT_RECEIPT_NO", + "message": "Payment Receipt No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_BPA_NC_APP_FEE_PAYMENT_MESSAGE", + "message": "Payment has been collected successfully!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_BPA_NC_APP_FEE_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding Payment Collection has been sent to property owner at registered Mobile No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_BPA_NC_APP_FEE_PAYMENT_RECEIPT_NO", + "message": "Payment Receipt No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_BPA_NC_OC_APP_FEE_PAYMENT_MESSAGE", + "message": "Payment has been collected successfully!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_BPA_NC_OC_APP_FEE_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding Payment Collection has been sent to property owner at registered Mobile No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_BPA_NC_OC_APP_FEE_PAYMENT_RECEIPT_NO", + "message": "Payment Receipt No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_BPA_NC_OC_SAN_FEE_PAYMENT_MESSAGE", + "message": "Payment has been collected successfully!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_BPA_NC_OC_SAN_FEE_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding Payment has been sent to the registered Mobile No. of the user/owner.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_BPA_NC_OC_SAN_FEE_PAYMENT_RECEIPT_NO", + "message": "Payment Receipt No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_BPA_NC_SAN_FEE_PAYMENT_MESSAGE", + "message": "Payment has been collected successfully!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_BPA_NC_SAN_FEE_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding Payment has been sent to the registered Mobile No. of the user/owner.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_BPA_NC_SAN_FEE_PAYMENT_RECEIPT_NO", + "message": "Payment Receipt No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_DEFALUT_PAYMENT_MESSAGE", + "message": "Payment has been paid successfully!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_DEFALUT_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding Payment Collection has been sent to property owner at registered Mobile No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_DEFALUT_PAYMENT_RECEIPT_NO", + "message": "Payment Receipt No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_FIRENOC_PAYMENT_MESSAGE", + "message": "Payment has been collected successfully!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_FIRENOC_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding Payment Collection has been sent to the registered Mobile No. of the user/owner.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_FIRENOC_PAYMENT_RECEIPT_NO", + "message": "Payment Receipt No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_PT_MUTATION_PAYMENT_MESSAGE", + "message": "Payment has been collected successfully!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_PT_MUTATION_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding Payment Collection has been sent to property owner at registered Mobile No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_PT_MUTATION_PAYMENT_RECEIPT_NO", + "message": "Payment Receipt No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_PT_PAYMENT_MESSAGE", + "message": "Payment has been collected successfully!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_PT_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding Payment Collection has been sent to property owner at registered Mobile No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_PT_PAYMENT_RECEIPT_NO", + "message": "Payment Receipt No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_SW.ONE_TIME_FEE_PAYMENT_MESSAGE", + "message": "Payment has been collected successfully!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_SW.ONE_TIME_FEE_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding Payment Collection has been sent to the registered Mobile No. of the user/owner.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_SW.ONE_TIME_FEE_PAYMENT_RECEIPT_NO", + "message": "Payment Receipt No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_SW_ONE_TIME_FEE_PAYMENT_MESSAGE", + "message": "Payment has been collected successfully!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_SW_ONE_TIME_FEE_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding Payment Collection has been sent to the registered Mobile No. of the user/owner.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_SW_ONE_TIME_FEE_PAYMENT_RECEIPT_NO", + "message": "Payment Receipt No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_SW_PAYMENT_MESSAGE", + "message": "Payment has been collected successfully!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_SW_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding Payment Collection has been sent to the registered Mobile No. of the user/owner.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_SW_PAYMENT_RECEIPT_NO", + "message": "Payment Receipt No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_TL_PAYMENT_MESSAGE", + "message": "Payment has been collected successfully!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_TL_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding Payment Collection has been sent to property owner at registered Mobile No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_TL_PAYMENT_RECEIPT_NO", + "message": "Payment Receipt No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_TX_ELECTRICITY_CHUNGI_PAYMENT_MESSAGE", + "message": "Payment has been collected successfully!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_TX_ELECTRICITY_CHUNGI_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding Payment Collection has been sent to the registered Mobile No. of the user/owner.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_TX_ELECTRICITY_CHUNGI_PAYMENT_RECEIPT_NO", + "message": "Payment Receipt No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_TX_NO_DUES_CERTIFICATE_PAYMENT_MESSAGE", + "message": "Payment has been collected successfully!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_TX_NO_DUES_CERTIFICATE_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding Payment Collection has been sent to the registered Mobile No. of the user/owner.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_TX_NO_DUES_CERTIFICATE_PAYMENT_RECEIPT_NO", + "message": "Payment Receipt No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_TX_TRANSFER_PROPERTY_FEES_PAYMENT_MESSAGE", + "message": "Challan Generated Successfully", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_TX_TRANSFER_PROPERTY_FEES_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding above challan/bill has been sent to the registered Mobile No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_TX_TRANSFER_PROPERTY_FEES_PAYMENT_RECEIPT_NO", + "message": "Receipt No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_TX_TS1_COPY_REGISTER_FOR_OLD_SURVEY_PAYMENT_MESSAGE", + "message": "Payment Successful", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_TX_TS1_COPY_REGISTER_FOR_OLD_SURVEY_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding above challan/bill has been sent to the registered Mobile No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_TX_TS1_COPY_REGISTER_FOR_OLD_SURVEY_PAYMENT_RECEIPT_NO", + "message": "Receipt No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_WS.ONE_TIME_FEE_PAYMENT_MESSAGE", + "message": "Payment has been collected successfully!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_WS.ONE_TIME_FEE_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding Payment Collection has been sent to the registered Mobile No. of the user/owner.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_WS.ONE_TIME_FEE_PAYMENT_RECEIPT_NO", + "message": "Payment Receipt No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_WS_ONE_TIME_FEE_PAYMENT_MESSAGE", + "message": "Payment has been collected successfully!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_WS_ONE_TIME_FEE_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding Payment Collection has been sent to the registered Mobile No. of the user/owner.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_WS_ONE_TIME_FEE_PAYMENT_RECEIPT_NO", + "message": "Payment Receipt No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_WS_PAYMENT_MESSAGE", + "message": "Payment has been collected successfully!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_WS_PAYMENT_MESSAGE_DETAIL", + "message": "A notification regarding Payment Collection has been sent to the registered Mobile No. of the user/owner.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_SUCCESS_WS_PAYMENT_RECEIPT_NO", + "message": "Payment Receipt No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EMPTY_NOTIFICATIONS", + "message": "Notification Empty!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ENGAGEMENT_DOCS_CIRCULARS", + "message": "Circulars", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ENGAGEMENT_DOCS_CITIZEN_CHARTER", + "message": "Citizen Charter", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ENGAGEMENT_DOCS_FORMS", + "message": "Forms", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ENGAGEMENT_DOCS_GOVERNMENT_ORDERS", + "message": "Government Orders", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ENGAGEMENT_DOCS_TENDERS", + "message": "Tenders", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ENGAGEMENT_DOCUMENT_ID", + "message": "Document ID", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ENGAGEMENT_DOC_CREATED", + "message": "Document Uploaded Successfully", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ENGAGEMENT_DOC_FAILURE", + "message": "Document Creation Failed", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ENGAGEMENT_DOC_UPDATED", + "message": "Document Successfully Updated", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ENGAGEMENT_DOC_UPDATE_FAILURE", + "message": "Document Creation Failed", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ENGAGEMENT_EVENT_CREATED", + "message": " ", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ENGAGEMENT_EVENT_CREATED_MESSAGE", + "message": "Event Successfully Created", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ENGAGEMENT_EVENT_CREATED_MESSAGES", + "message": "{{eventName}} has been successfully created for {{fromDate}} from {{fromTime}} to {{toDate}},{{toTime}} and an event notification will be sent to all citizens. To Modify this event please visit All Events section on Events Page.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ENGAGEMENT_EVENT_DELETED", + "message": "Event Successfully Deleted", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ENGAGEMENT_EVENT_DELETED_MESSAGES", + "message": "Event has been successfully deleted.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ENGAGEMENT_EVENT_ID", + "message": "Event ID", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ENGAGEMENT_EVENT_NAME", + "message": "Event Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ENGAGEMENT_EVENT_UPDATED", + "message": "Event Successfully Updated", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ENGAGEMENT_EVENT_UPDATED_MESSAGES", + "message": "Event has been successfully updated.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ENGLISH", + "message": "English", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ENTERED_MOBILE_NO_NOT_REGISTERED_AS_CBO", + "message": "Entered mobile number is not registered as CBO user in the system.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ENTER_OTP_SENT_TO", + "message": "Enter the OTP sent to {mobileNumber}", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ENTER_REGISTERED_MOBILE", + "message": "Please enter the registered mobile number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ENTER_VALID_IFSC_CODE", + "message": "Please enter valid IFSC Code", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERROR_MAXLENGTH_140", + "message": "Description canot be more than 140 char", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_ACCEPT_THE_TERMS", + "message": "Please accept the terms !", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_ADD_MULTIPLE_OWNERS", + "message": "Please add multiple owners !", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_AMOUNT_CANT_BE_EMPTY", + "message": "Amount to pay can't be empty", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_API_ERROR", + "message": "API error", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_BANK_DETAILS_NOT_FOUND_FOR_IFSC", + "message": "Bank details not found for this IFSC", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_BILLING_SLAB_ERROR", + "message": "Billing Slab error!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_CHEQUE_NUMBER_LESS_THAN_6", + "message": "Cheque number is less than 6", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_COMPLAINT_NUMBER_SEARCH", + "message": "Complaint No. should be at least 6 digits", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_DEFAULT_INPUT_FIELD_MSG", + "message": "Invalid Input", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_DOCUMENT_TYPE_MISSING", + "message": "Please select document type for uploaded document", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_ENTER_ATLEAST_ONE_FIELD", + "message": "Enter at least one field", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_ENTER_VALID_IFSC", + "message": "Please fill all fields", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_ERROR_CALCULATING_TAX", + "message": "Error calculating tax!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_FILE_MORE_THAN_FIVEMB", + "message": "The file is more than 5mb", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_FILL_ALL_FIELDS", + "message": "Please fill all fields", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_FILL_ALL_MANDATORY_FIELDS_APPLICANT_TOAST", + "message": "Please fill all mandatory fields for Applicant Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_FILL_ALL_MANDATORY_FIELDS_BASIC_TOAST", + "message": "Please fill all mandatory fields for Basic Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_FILL_ALL_MANDATORY_FIELDS_BOUNDARY_TOAST", + "message": "Please fill all mandatory fields for Plot & Boundary Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_FILL_ALL_MANDATORY_FIELDS_PROPERTY_TOAST", + "message": "Please check the Missing/Invalid field for Property Details, then proceed!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_FILL_ALL_MANDATORY_FIELDS_SCRUTINY_TOAST", + "message": "Please fill all mandatory fields for Scrutiny Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_FILL_ATLEAST_ONE_FIELD_WITH_CITY", + "message": "Please fill atleast one field along with city", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_FILL_BPA_FIELDS", + "message": "Please fill all mandatory fields for Stakeholder Registration, then do next!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_FILL_EDCR_PERMIT_INCORRECT_DATE", + "message": "Entered permit date is not correct, please check.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_FILL_FROM_DATE", + "message": "Please fill From Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_FILL_MANDATORY_FIELDS_UPLOAD_DOCS", + "message": "Please fill all mandatory fields and upload the documents !", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_FILL_ONE_FIELDS", + "message": "Please fill at least one field to start search", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_FILL_OWNERS_MANDATORY_FIELDS", + "message": "Please fill all mandatory fields for Owner Details, then do next !", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_FILL_TRADE_MANDATORY_FIELDS", + "message": "Please fill all mandatory fields for Trade Details, then do next !", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_FILL_VALID_FIELDS", + "message": "Please fill valid fields to start search", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_FROM_TO_DATE_TOAST", + "message": "To and from date must be different", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_HRMS_INVALID_CITY", + "message": "Invalid City", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_HRMS_INVALID_MOB_NO", + "message": "Invalid mobile number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_INVALID_AMOUNT", + "message": "Invalid Amount", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_INVALID_APPID", + "message": "Invalid Application No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_INVALID_APPLICATION_NO", + "message": "Invalid Application No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_INVALID_CONSUMER_NO", + "message": "Invalid Consumer No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_INVALID_DATE", + "message": "Invalid Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_INVALID_MAT_COST", + "message": "Please enter a valid amount", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_INVALID_MOBILE_NUMBER", + "message": "Invalid Mobile Number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_INVALID_PROPERTY_ID", + "message": "Invalid Property ID", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_INVALID_TRADE_LICENSE_NO", + "message": "Invalid Trade License No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_MOBILE_NUMBER_INCORRECT", + "message": "Provided mobile number not found in the system, Please fill all details manually", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_MOBILE_NUMBER_NOT_REGISTERED", + "message": "This mobile number is not registered !", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_NON_ZERO_AMOUNT_TOAST", + "message": "Please enter amount", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_NOT_AUTHORISED_BUSINESS_SERVICE", + "message": "Not authorized to access Business Service!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_NOT_VALID_IMAGE", + "message": "The file is not a valid image", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_NO_ADMIN_BOUNDARY_FOR_TENANT", + "message": "There is no admin boundary data available for this tenant", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_OTP_RESENT", + "message": "OTP has been Resent", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_OWNER_ALREADY_ADDED", + "message": "Owner already added !", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_OWNER_ALREADY_ADDED_1", + "message": "Owner already added !", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_OWNER_ALREADY_ADDED_TOGGLE_MSG", + "message": "Owner has been added already!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_PASSWORD_DO_NOT_MATCH", + "message": "Password do not match", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_PLEASE_MENSION_YOUR_REASON", + "message": "Please mention your reason", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_PLEASE_PROVIDE_RATINGS", + "message": "Please provide ratings", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_PLEASE_UPLOAD_PHOTO", + "message": "Please upload photo or write comments", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_PREPARING_CONFIRMATION_FORM", + "message": "Preparing confirmation form, please wait...", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_PRIMARY_OWNER_TOAST", + "message": "Please check is primary owner", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_PROPERTY_NOT_FOUND_WITH_PROPERTY_ID", + "message": "Property is not found with this Property Id", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_PT_COMMON_FILL_MANDATORY_FIELDS", + "message": "Please provide the city and any one other field information to search for property.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_PT_FILL_VALID_FIELDS", + "message": "Provide at least one parameter to search for an application", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_SEARCH_ERROR", + "message": "Workflow search error !", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_SELECT_CITY_TO_SEARCH_PROPERTY_ID", + "message": "Please select city to search by property id !!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_SELECT_CURRENT_ASSIGNMENT", + "message": "Please select at least one current assignment", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_SELECT_MANDATORY_FIELDS", + "message": "Please fill all the mandatory fields", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_TL_UPDATE_ERROR", + "message": "TL update error!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_TRANSACTION_NO_DONT_MATCH", + "message": "Transaction numbers don't match !", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_TRASACTION_NUMBERS_DONT_MATCH", + "message": "Transaction numbers don't match !", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_TYPE_YOUR_COMMENTS", + "message": "Please type your comments", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_ULD_VALIDATIONS_FAILED", + "message": "ULB validations failed!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_UPLOAD_FILE", + "message": "Please Upload file !", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_UPLOAD_MANDATORY_DOCUMENTS_TOAST", + "message": "Please fill all mandatory fields and upload the documents!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_UPLOAD_REQUIRED_DOCUMENTS", + "message": "Please upload all the required documents!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_VALUE_LESS_THAN_SIX_CHARACTERS", + "message": "Entered value is less than 6 characters in length.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_WS_FILL_ATLEAST_ONE_FIELD", + "message": "Please provide at least one field information to search for connection", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ERR_WS_PROP_STATUS_INWORKFLOW", + "message": "Property inworkflow", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ER_ULB", + "message": "ULB", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ESTIMATE_DOC_DESIGN_DOCUMENT", + "message": "Design document", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ESTIMATE_DOC_DETAILED_ESTIMATE", + "message": "Detailed estimate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ESTIMATE_DOC_LABOUR_ANALYSIS", + "message": "Labour analysis", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ESTIMATE_DOC_MATERIAL_ANALYSIS", + "message": "Material analysis", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ESTIMATE_DOC_OTHERS", + "message": "Others", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ESTIMATE_ESTIMATE_NO", + "message": "Estimate Number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EST_VIEW_ACTIONS_CREATE_CONTRACT", + "message": "Create Contract", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_ACTION_MESSAGE_SAVE_AS_DRAFT", + "message": "Test saved as draft", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_ACTION_MESSAGE_SUBMIT_SAMPLE", + "message": "Submit sample for testing", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_ACTION_MESSAGE_UPDATE_RESULT", + "message": "Update test result", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_AIRPORT_NOC_OFFLINE_AUTO_APPROVE_UPDATE_SUCCESS", + "message": "Application Approved Successfully", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_APPLICATION_CHANNEL", + "message": "Source", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_APPLICATION_DETAILS_APPLICATION_TIMELINE", + "message": "Timeline", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_BPA_ACTION_TITLE_APPROVE", + "message": "Approve", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_BPA_ACTION_TITLE_SEND_BACK_TO_CITIZEN", + "message": "SEND BACK TO CITIZEN", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_BPA_ACTION_TITLE_SEND_TO_ARCHITECT", + "message": "SEND TO ARCHITECT", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_BPA_ALL_SELECTED", + "message": "All Selected", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_BY_CLICKING", + "message": "I agree to the DIGIT's", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_CE_DELETE", + "message": "Delete", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_CE_EDIT_DOCUMENT", + "message": "Edit Document Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_CLEAR_ALL", + "message": "Clear All", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_AADHAR", + "message": "Aadhaar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_ACCOUNT_HOLDER_NAME", + "message": "Account Holder’s Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_AGE_GREATER_THAN_18_ERROR", + "message": "Age should be greater than 18 years", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_AMOUNT", + "message": "Amount (₹)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_APPLICATION_SEARCH", + "message": "Search Application", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_APPLICATION_SUBMIT", + "message": "Submit", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_APPLY", + "message": "Apply", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_ATTENDENCEMGMT", + "message": "MUKTA", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_BILLS_SEWERAGE_INBOX_LABEL", + "message": "Inbox", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_BILLS_WATER_INBOX_LABEL", + "message": "Inbox", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_BILL_AMEND_SEWERAGE_INBOX_LABEL", + "message": "Sewerage Inbox", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_BILL_AMEND_WATER_INBOX_LABEL", + "message": "Water Inbox", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_BILL_PATTERN_ERR_MSG", + "message": "Please enter valid bill number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_BIRTHDATE", + "message": "Date of birth", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_BRANCH", + "message": "Branch", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_CANCEL", + "message": "Cancel", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_CATEGORY", + "message": "Category", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_CBO_NAME", + "message": "CBO Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_CLEAR_ALL", + "message": "CLEAR ALL", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_CLEAR_SEARCH", + "message": "CLEAR SEARCH", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_CONNECTION_SEARCH_LABEL", + "message": "Search Connection", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_CONTACT_DETAILS", + "message": "Contact Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_CPS-CWNS", + "message": "Child Play Station - Capital Works - Non-Slum", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_CPS-CWS", + "message": "Child Play Station - Capital Works - Slum", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_CPS-OMNS", + "message": "Child Play Station - Operations and Maintenance - Non-Slum", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_CPS-OMS", + "message": "Child Play Station - Operations and Maintenance - Slum", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_CREATED_BY", + "message": "Created By", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_CREATED_FROM", + "message": "Created from", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_CREATED_TO", + "message": "Created to", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_CREATE_PROPERTY_HEADER", + "message": "Create New Property (For TL Application)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_CREATE_PROPERTY_HEADER_TL", + "message": "Create New Property (For Trade License)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_CREATE_PROPERTY_HEADER_WS", + "message": "Create Property (On New Connection)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_DATE", + "message": "Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_DAYS_LESS_THAN_SEVEN_ERROR", + "message": "Modified days should be between 0 to 7", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_DOC_CATEGORY", + "message": "Document Category", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_DOC_DESCRIPTION", + "message": "Document Description", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_DOC_DOCUMENT", + "message": "Document", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_DOC_FILENAME", + "message": "File Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_DOC_NAME", + "message": "Document Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_DOOR_NO", + "message": "Door/ House number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_DOWNLOADS", + "message": "Downloads", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_DOWNLOAD_PAYMENT_ADVICE", + "message": "Download Payment Advice", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_DSS_NSS_BND", + "message": "Birth & Death", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_DSS_OVERVIEW", + "message": "Overview Dashboard", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_ENTER_DATE_RANGE", + "message": "Enter valid date range", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_ENTER_NAME", + "message": "Enter the file name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_FILTER", + "message": "Filter", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_FILTERS", + "message": "Filters", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_FILTER_BY", + "message": "FILTER BY", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_FSTP_OPERATION", + "message": "FSTP Operations", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_GENERATE_PAYMENT_ADVICE", + "message": "Generate Payment Advice", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_GOTO_HOME", + "message": "Go To Home", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_HIDE_DETAILS", + "message": "Hide Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_HOME", + "message": "Home", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_IFSC", + "message": "IFSC Code", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_IFSC ", + "message": "IFSC Code", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_IFSC_CODE_ERROR", + "message": "Enter valid IFSC code", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_INBOX", + "message": "Inbox", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_INFO", + "message": "Info", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_JOB_ID", + "message": "Job ID", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_LAST_4_DIGITS", + "message": "Last 4 Digits", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_LESS", + "message": "Less", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_LINK_LABEL", + "message": "Document Link", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_LOCATION", + "message": "Location", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_LOCATION_DETAILS", + "message": "Location Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_LOO-CWNS", + "message": "Loo - Capital Works - Non-Slum", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_LOO-OMNS", + "message": "Loo - Operations and Maintenance - Non-Slum", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_LOO-OMS", + "message": "Loo - Operations and Maintenance - Slum", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_LOO_CWS", + "message": "Loo - Capital Works - Slum", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_MIN_SEARCH_CRITERIA_MSG", + "message": "Please enter minimum 1 search criteria", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_MOBILE_EXISTS_ERROR", + "message": "Mobile number already exists", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_MODE_OF_ENTRUSTMENT", + "message": "Recommended mode of entrustment", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_MODIFY", + "message": "Modify", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_MORE", + "message": "More", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_MP-CWNS", + "message": "Mini Park - Capital Works - Non-Slum", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_MP-CWS", + "message": "Mini Park - Capital Works - Slum", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_MP-OMNS", + "message": "Mini Park - Operations and Maintenance - Non-Slum", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_MP-OMS", + "message": "Mini Park - Operations and Maintenance - Slum", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_MP001", + "message": "Mini Park Sub Project 1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_MP002", + "message": "Mini Park Sub Project 2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_MUSTER_ROLL_ID", + "message": "Muster Roll ID", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_MUSTER_ROLL_PERIOD", + "message": "Muster Roll Period", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_MUSTER_RPLL_PERIOD", + "message": "Muster Roll Period", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_NA", + "message": "NA", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_NOTE", + "message": "Note", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_NO_DATA", + "message": "No Data Found", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_NO_ITEMS", + "message": "No Items", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_NO_OF_BENEFICIARIES", + "message": "No. of beneficiaries", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_NO_OF_BILLS", + "message": "No. of bills", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_NO_ORG_LINKED_WITH_MOBILE_NUMBER", + "message": "No Organization exists with the entered mobile number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_OAG-CWNS", + "message": "Open Air Gym - Capital Works - Non-Slum", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_OAG-CWS", + "message": "Open Air Gym - Capital Works - Slum", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_OAG-OMNS", + "message": "Open Air Gym - Operations and Maintenance - Non-Slum", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_OAG-OMS", + "message": "Open Air Gym - Operations and Maintenance - Slum", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_OBPS_INBOX_LABEL", + "message": "OBPS Inbox", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_ORG_EXISTS_WITH_MOBILE_NUMBER", + "message": "An Organisation already exists with this mobile number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_ORG_NAME", + "message": "Organisation Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_PAGE_1", + "message": "Edit profile", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_PAYMENT_STATUS", + "message": "Payment Status", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_PG-CWNS", + "message": "Playground - Capital Works - Non-Slum", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_PG-CWS", + "message": "Playground - Playground - Slum", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_PG-OMNS", + "message": "Playground - Operations and Maintenance - Non-Slum", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_PG-OMS", + "message": "Playground - Operations and Maintenance - Slum", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_PHOTOGRAPH", + "message": "Photograph", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_PLEASE_ENTER_ALL_MANDATORY_FIELDS", + "message": "Please enter all mandatory fields", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_PROJECT_NAME", + "message": "Project Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_PROPOSAL_DATE", + "message": "Project sanction date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_RELATIONSHIP", + "message": "Relationship", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_RESPONSE", + "message": "Response", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_RE_TRANSANCTION_NO", + "message": "Re-Enter Transaction No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_SEARCH", + "message": "Search", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_SEARCH_APPLICATION", + "message": "Search Application", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_SEARCH_BY", + "message": "Search By", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_SKILL", + "message": "Skill", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_SKILL_CATEGORY", + "message": "Skill Category", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_SORT_BY_ASC", + "message": "Date(Latest Last)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_SORT_BY_DESC", + "message": "Date(Latest First)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_STAKEHOLDER_INBOX_LABEL", + "message": "Stakeholder Inbox", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_STATUS", + "message": "Status", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_STREET", + "message": "Street", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_STREET_NAME", + "message": "Street name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_TAKE_ACTION", + "message": "Take action", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_TIME", + "message": "Inspection Time", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_TOTAL_AMOUNT", + "message": "Total Amount", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_TRANSANCTION_NO", + "message": "Transaction No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_ULB", + "message": "ULB", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_UPDATE", + "message": "Update", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_USER_ULBS", + "message": "User Ulb(s)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_VALID_DAY", + "message": "Enter valid day", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_VALID_FROM", + "message": "Valid From", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_VALID_TO", + "message": "Valid To", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_VIEW_DETAILS", + "message": "View Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_VZ-CWNS", + "message": "Vending Zone - Capital Works - Non-Slum", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_VZ-CWS", + "message": "Vending Zone - Capital Works - Slum", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_VZ-OMNS", + "message": "Vending Zone - Operations and Maintenance - Non-Slum", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_VZ-OMS", + "message": "Vending Zone - Capital Works - Slum", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_WB-CWNS", + "message": "Water Body - Capital Works - Non-Slum", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_WB-CWS", + "message": "Water Body - Capital Works - Slum", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_WB-OMNS", + "message": "Water Body - Operations and Maintenance - Non-Slum", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_WB-OMS", + "message": "Water Body - Operations and Maintenance - Slum", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_WORK_NATURE", + "message": "Nature of Work", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_WS_DOCUMENTS_REQUIRED", + "message": "Required Documents", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_WS_NEW_CONNECTION", + "message": "New connection", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_WT-CWNS", + "message": "Walking Track - Capital Works - Non-Slum", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_WT-CWS", + "message": "Walking Track - Walking Track - Slum", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_WT-OMNS", + "message": "Walking Track - Operations and Maintenance - Non-Slum", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_WT-OMS", + "message": "Walking Track - Operations and Maintenance - Slum", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_Y_DEL", + "message": "Yes, Delete", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMPLAINT_RESOLVED_SUCCESS_MESSAGE", + "message": "You have marked the complaint as", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_COMPLIENT_CREATE", + "message": "New Complaint", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_DEFAULT_NOTIFICATION", + "message": "Notification", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_DIRECTRENEWAL_MANUALEXPIRE_UPDATE_SUCCESS", + "message": "Application expired successfully", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_DISCONNECTWSCONNECTION_APPROVE_FOR_DISCONNECTION_UPDATE_SUCCESS", + "message": "Application is approved Successfully", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_DSS_DATE_RANGE", + "message": "Date Range", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_EDITRENEWAL_APPLY_UPDATE_SUCCESS", + "message": "Application updated successfully", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_EDITRENEWAL_MANUALEXPIRE_UPDATE_SUCCESS", + "message": "Application expired successfully", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_ENGAGEMENT_DOCUMENTS", + "message": "Add New Document", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_ENGAGEMENT_EDIT_DOC", + "message": "Edit Document", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_ERROR_DSO_LOGIN", + "message": "Please use a registered number for logging as a DSO", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_ERROR_REQUIRED", + "message": "field can't be empty", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_ERROR_USER_NOT_PERMITTED", + "message": "User not Permitted", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_EVENT_DELETE", + "message": "Delete", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_EVENT_DELETE_POPUP_HEADER", + "message": "Confirm Delete Event", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_EVENT_DELETE_TEXT", + "message": "Please Confirm if you want to delete the Event", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_EVENT_EDIT", + "message": "Edit Event", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_EVENT_EDIT_EVENT", + "message": "Edit Events", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_EVENT_EVENT_DETAILS", + "message": "Event Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_EVENT_INBOX", + "message": "Inbox", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_EVENT_NEW_EVENT", + "message": "New Event", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_EVENT_NEW_EVENT_RESPONSE", + "message": "Response", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_FIRE_NOC_SRV_VOID_UPDATE_SUCCESS", + "message": "Application Voided Successfully", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_FORGOT_PASSWORD", + "message": "Forgot Password?", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_FORGOT_PASSWORD_DESC", + "message": "Please enter your phone number to reset password.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_FORGOT_PASSWORD_DESC,", + "message": "Please enter your phone number to reset password.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_FSM_ACTION_TITLE_SCHEDULE", + "message": "DSO Vehicle Selection", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_FSM_ADD_NEW_BUTTON", + "message": "Add New", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_FSM_DISPOSE_UPDATE_FAILURE", + "message": "Dsispose Update Failure", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_FSM_PAYMENT_PREFERENCE", + "message": "Payment Preference", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_FSM_REJECTION_OPTION_A", + "message": "Vehicle under maintenance", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_FSM_REJECTION_OPTION_B", + "message": "Cannot service within provided service date, multiple request in pipeline", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_FSM_RESPONSE_ASSIGN_DSO_ACTION", + "message": "Select DSO Now", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_FSM_RESPONSE_ASSIGN_DSO_LABEL", + "message": "Select DSO", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_FSM_RESPONSE_SUBMIT_ACTION", + "message": "Application Updated Successfully", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_FSM_SCHEDULE", + "message": "Schedule Vehicle", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_FSM_SCHEDULE_UPDATE_SUCCESS", + "message": "Vehicle Schedule Complete", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_FSM_SENDBACK_UPDATE_SUCCESS", + "message": "Application Sentback Successfully", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_FSM_VEHICLE_TRACKING", + "message": "Vehicle Tracking", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_FSM_VIEW_REPORTS_BUTTON", + "message": "View Reports", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_INBOX_ASSIGNED_TO_ALL", + "message": "Assigned to All", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_INBOX_ASSIGNED_TO_ME", + "message": "Assigned to Me", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_INBOX_COMMON_SEARCH", + "message": "Search", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_INBOX_DATE_LATEST_FIRST", + "message": "Latest First", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_INBOX_DATE_LATEST_LAST", + "message": "Latest Last", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_INBOX_LOCALITY", + "message": "Locality", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_INBOX_PLEASE_SPECIFY_GRAM_PANCHAYAT", + "message": "If Others, Specify Gram Panchayat", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_INBOX_PLEASE_SPECIFY_LOCALITY", + "message": "If Others, Specify Locality", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_INBOX_PLEASE_SPECIFY_VILLAGE", + "message": "Specify Village", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_INBOX_SLA_DAYS_REMAINING", + "message": "SLA Days Remaining", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_INBOX_STATUS", + "message": "Status", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_INVALID_LOGIN_CREDENTIALS", + "message": "Invalid Login Credentials", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_NEW_APPLICATION_AMOUNT_INVALID", + "message": "Please provide a valid amount", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_NEW_APPLICATION_AMOUNT_PER_TRIP", + "message": "Amount per Trip (₹)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_NEW_APPLICATION_APPLICANT_MOBILE_NO", + "message": "Applicant Mobile No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_NEW_APPLICATION_APPLICANT_NAME", + "message": "Applicant Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_NEW_APPLICATION_APPLICATION_CHANNEL", + "message": "Application Channel", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_NEW_APPLICATION_APPLICATION_TIMELINE", + "message": "Application Timeline", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_NEW_APPLICATION_DISTANCE_FROM_ROAD", + "message": "Distance of Pit from Road (m)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_NEW_APPLICATION_DOOR_NO", + "message": "Door No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_NEW_APPLICATION_LOCATION_CITY", + "message": "City", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_NEW_APPLICATION_LOCATION_DETAILS", + "message": "Location Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_NEW_APPLICATION_LOCATION_GEOLOCATION", + "message": "Geolocation", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_NEW_APPLICATION_LOCATION_LANDMARK", + "message": "Landmark", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_NEW_APPLICATION_LOCATION_LOCALITY", + "message": "Locality", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_NEW_APPLICATION_LOCATION_MOHALLA", + "message": "Locality", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_NEW_APPLICATION_LOCATION_PINCODE", + "message": "Pincode", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_NEW_APPLICATION_OWNERSHIP_DETAILS", + "message": "Ownership Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_NEW_APPLICATION_PINCODE", + "message": "Pincode", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_NEW_APPLICATION_PROPERTY_DETAILS", + "message": "Property Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_NEW_APPLICATION_PROPERTY_SUB-TYPE", + "message": "Property Sub-Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_NEW_APPLICATION_PROPERTY_TYPE", + "message": "Property Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_NEW_APPLICATION_PROVIDE_PROPERTY_STREET_DOOR_NO", + "message": "Provide the Street Name and Door/House No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_NEW_APPLICATION_PT_DETAILS", + "message": "Property Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_NEW_APPLICATION_STREET_NAME", + "message": "Street Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_NO_EVENTS", + "message": "No Events", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_NO_FILE_SELECTED_LABEL", + "message": "No File Selected", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_NewTL_MANUALEXPIRE_UPDATE_SUCCESS", + "message": "Application expired successfully", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_OBPS_ACTION_COMMENTS", + "message": "Comments", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_OBPS_ACTION_FILE_UPLOAD", + "message": "Attach Documents", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_OBPS_SEARCH", + "message": "Search Application", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_OBPS_SEARCH_BPA", + "message": "Application Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_OTP_RESEND", + "message": "OTP Resend", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_OWNER", + "message": "Owner", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_PAYMENT_AMOUNT", + "message": "Payment Amount", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_PAYMENT_BPA.LOW_RISK_PERMIT_FEE_ARCHITECT_SUCCESSFUL_DESCRIPTION", + "message": "A Noticication regarding payment has been sent to the registered mobile number of Applicant and Architect.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_PAYMENT_BPA.LOW_RISK_PERMIT_FEE_TOWNPLANNER_SUCCESSFUL_DESCRIPTION", + "message": "A Noticication regarding payment has been sent to the registered mobile number of Applicant and Architect.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_PAYMENT_BPA.NC_APP_FEE_ARCHITECT_SUCCESSFUL_DESCRIPTION", + "message": "A Noticication regarding payment has been sent to the registered mobile number of Applicant and Architect.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_PAYMENT_BPA.NC_APP_FEE_BUILDER_SUCCESSFUL_DESCRIPTION", + "message": "A Noticication regarding payment has been sent to the registered mobile number of Applicant and Architect.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_PAYMENT_COLLECTED", + "message": "Payment Collected", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_PAYMENT_DETAILS_ADV_AMOUNT", + "message": "Advance Amount", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_PAYMENT_DETAILS_TOTAL_AMOUNT", + "message": "Total Amount", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_PAYMENT_SUCCESSFUL_DESCRIPTION", + "message": "The notification along with Payment details is sent to the registered mobile number of the user / owner.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_PAYMENT_TAXHEADS", + "message": "Tax Heads", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_PAYMENT_WS_SW_SUCCESSFUL_DESCRIPTION", + "message": "The notification along with your application number is sent to your applicant’s mobile number. Applicant can track the application status using mobile or web app.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_PAYMENT_WS_WS_ONE_TIME_FEE_SUCCESSFUL_DESCRIPTION", + "message": "The notification along with your application number is sent to your applicant’s mobile number. Applicant can track the application status using mobile or web app", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_PAYMENT_WS_WS_SUCCESSFUL_DESCRIPTION", + "message": "The notification along with your application number is sent to your applicant’s mobile number. Applicant can track the application status using mobile or web app", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_PGR_HEADER_COMPLAINT", + "message": "Citizen Complaint Resolution System", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_PGR_INBOX", + "message": "Inbox", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_PGR_NEW_COMPLAINT", + "message": "New Complaint", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_PRIVACY_POLICY", + "message": "Privacy Policy", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_PT_ACTION_FILEUPLOADED", + "message": "File Uploaded", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_PT_COMMON_STATUS_ACTIVE", + "message": "Active", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_PT_COMMON_STATUS_INWORKFLOW", + "message": "Inworkflow", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_READY_FOR_DISPOSAL", + "message": "Ready For Disposal", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_SEARCH_APPLICATION_MOBILE_INVALID", + "message": "Please provide a valid mobile number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_SELECT_AN_OPTION", + "message": "Select an option", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_SHOW_LESS", + "message": "Show Less", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_SOMETHING_WRONG", + "message": "Something went wrong !!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_SOMETHING_WRONG,", + "message": "Something went wrong !!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_SURVEY_DONT_START_WITH_NUMBER", + "message": "Survey name cannot start with a number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_TITILE_SEARCH_APPLICATION", + "message": "Search Application", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_TITLE_APPLICANT_DETAILS", + "message": "Applicant Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_TITLE_APPLICATION_DETAILS", + "message": "Event Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_TITLE_CITIZEN_ENGAGEMENT", + "message": "Citizen Engagement", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_TITLE_DOCS", + "message": "Documents", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_TITLE_DSS", + "message": "DSS", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_TITLE_DSS_OVERVIEW", + "message": "DSS Overview", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_TITLE_EDIT_EVENTS", + "message": "Edit Event", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_TITLE_EVENT_INBOX", + "message": "Events", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_TITLE_FAECAL_SLUDGE_MGMT", + "message": "Faecal Sludge Mgmt", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_TITLE_FSM_REGISTRY", + "message": "FSM Registry", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_TITLE_INBOX", + "message": "Inbox", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_TITLE_NEW_DESULDGING_APPLICATION", + "message": "New Emptying of Septic Tank / Pit Application", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_TITLE_NEW_EVENTS", + "message": "New event", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_TITLE_NEW_REGISTRATION", + "message": "New Property Registration", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_TITLE_NEW_TRADE_LICESE_APPLICATION", + "message": "New Trade License Application", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_TITLE_PROPERTY_TAX", + "message": "Property Tax", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_TITLE_VEHICLE_LOG", + "message": "Vehicle Log", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_TQM_DAYS_AGO", + "message": " {NO_OF_DAY} days ago ", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_TQM_DAYS_AGO_VAL", + "message": "days ago", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_TQM_DAY_AGO", + "message": "1 day ago", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_TQM_LABEL_SAVE_AS_DRAFT", + "message": "Update draft", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_TQM_MONTHS_AGO", + "message": " {NO_OF_MONTH} months ago", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_TQM_MONTH_AGO", + "message": "1 month ago", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_TQM_NOTIFICATIONS", + "message": "Notifications", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_TQM_NO_NOTIFICATION", + "message": "No notifications available", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_TQM_TODAY", + "message": "Today", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_VEHICLE_TRIP_NO ", + "message": "Vehicle Trip No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_VIEW_ALL", + "message": "View All", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ES_WAGE_SEEKER", + "message": "Wage Seeker", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EVENTS_ACTIVE_LABEL", + "message": "Active", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EVENTS_ADDRESS_LABEL", + "message": "Event Address", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EVENTS_ADD_NEW_LABEL", + "message": "Add New Event", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EVENTS_ATTACHMENT_LABEL", + "message": "Attachment", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EVENTS_CATEGORY_ERROR_REQUIRED", + "message": "Required", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EVENTS_CATEGORY_LABEL", + "message": "Event Category", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EVENTS_CATEGORY_PLACEHOLDER", + "message": "Select Event Category", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EVENTS_COMMENTS_LABEL", + "message": "Message Content", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EVENTS_COMMENTS_PLACEHOLDER", + "message": "Message Content ( Character Length:280)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EVENTS_CREATED_EVENTS_HEADER", + "message": "Created Events", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EVENTS_CREATE_EVENT", + "message": "Create Event", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EVENTS_DATERANGE_LABEL", + "message": "Date Range", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EVENTS_DESCRIPTION", + "message": "Description", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EVENTS_DESCRIPTION_LABEL", + "message": "Description", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EVENTS_DESCRIPTION_LIMIT_PLACEHOLDER", + "message": "Description (Max Char Limit : 500)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EVENTS_DESCRIPTION_TEXT", + "message": "Description (Max Char limit : 500)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EVENTS_DETAILS_TITLE", + "message": "Event Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EVENTS_EDIT_EVENT", + "message": "Edit", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EVENTS_END_DATE_LABEL", + "message": "End Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EVENTS_ENTER_ENTRY_FEE_PLACEHOLDER", + "message": "Enter Entry Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EVENTS_ENTER_ORGANIZER_NAME_PLACEHOLDER", + "message": "Enter Organizer Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EVENTS_ENTRY_FEE_INR_LABEL", + "message": "Entry Fee (INR)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EVENTS_EVENTS_HEADER", + "message": "Events", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EVENTS_EVENT_CATEGORY_LABEL", + "message": "Event Category", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EVENTS_EVENT_NAME_LABEL", + "message": "Event Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EVENTS_FROM_DATE_ERROR_INVALID", + "message": "Invalid From Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EVENTS_FROM_DATE_LABEL", + "message": "From Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EVENTS_FROM_TIME_LABEL", + "message": "Event From Time", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EVENTS_GEOLOCATION_LABEL", + "message": "Pick Event Location from the Map:", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EVENTS_INACTIVE_LABEL", + "message": "Inactive", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EVENTS_MAP_LABEL", + "message": "Event Location", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EVENTS_MESSAGE_LABEL", + "message": "Message", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EVENTS_NAME_ADDRESS_PLACEHOLDER", + "message": "Enter Event Address", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EVENTS_NAME_ERROR_REQUIRED", + "message": "Required", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EVENTS_NAME_LABEL", + "message": "Event Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EVENTS_NAME_PLACEHOLDER", + "message": "Enter Event Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EVENTS_NEW_PUBLIC_MESSAGE_BUTTON_LABEL", + "message": "NEW PUBLIC MESSAGE", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EVENTS_ORGANIZER_ERROR", + "message": "Invalid Organizer Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EVENTS_ORGANIZER_NAME_LABEL", + "message": "Organizer Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EVENTS_PICK_MAP_LABEL", + "message": "Pick event location from the map", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EVENTS_POSTEDBY_LABEL", + "message": "Posted By", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EVENTS_POSTING_DATE_LABEL", + "message": "Posting Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EVENTS_PUBLIC_MESSAGE_NOTICE_HEADER", + "message": "Public Message Notice", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EVENTS_SELECT_CATEGORY_LABEL", + "message": "Select Event Category", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EVENTS_START_DATE_LABEL", + "message": "Start Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EVENTS_STATUS_LABEL", + "message": "Status", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EVENTS_TITLE_LABEL", + "message": "Title", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EVENTS_TITLE_LABEL_PLACEHOLDER", + "message": "Enter the title of the message", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EVENTS_TO_DATE_ERROR_INVALID", + "message": "Invalid End Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EVENTS_TO_DATE_ERROR_REQUIRED", + "message": "Required", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EVENTS_TO_DATE_LABEL", + "message": "To Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EVENTS_TO_TIME_LABEL", + "message": "Event To Time", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EVENTS_ULB_LABEL", + "message": "ULB", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EVENTS_UPLOADED_MESSAGES_HEADER", + "message": "Uploaded Messages", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EVENTS_UPLOAD_FILE", + "message": "UPLOAD FILE", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EVENT_ADD_NEW_LABEL", + "message": "Create New Event", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EVENT_ADD_SUCCESS_MESSAGE_MAIN", + "message": "Event published successfully", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EVENT_ADD_SUCCESS_MESSAGE_SUB", + "message": " ", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EVENT_DELETE_SUCCESS_MESSAGE_MAIN", + "message": "Event deleted Successfully", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EVENT_EDIT_LABEL", + "message": "Edit Event", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EVENT_UPDATE_SUCCESS_MESSAGE_MAIN", + "message": "Event updated successfully", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EV_SLA_DAY_ONE", + "message": "day ago", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EV_SLA_MINUTE", + "message": "Minutes ago", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EV_SLA_MINUTE_ONE", + "message": "minute ago", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EV_SLA_MONTH", + "message": "Months ago", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EV_SLA_MONTH_ONE", + "message": "month ago ", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EV_SLA_TIME", + "message": "hrs ago", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EV_SLA_TIME_ONE", + "message": "hr ago", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EV_SLA_WEEK", + "message": "Weeks ago", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EV_SLA_WEEK_ONE", + "message": "Week ago", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EXCEEDS_100_CHAR_LIMIT", + "message": "Cannot exceed 100 characters", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EXCEEDS_140_CHAR_LIMIT", + "message": "Cannot exceed 140 characters", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EXCEEDS_200_CHAR_LIMIT", + "message": "Cannot exceed 200 characters", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EXCEEDS_60_CHAR_LIMIT", + "message": "Title should be less than 60 charchters", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EXPIRED", + "message": "Expired", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EXP_DEDUCTION_NAME", + "message": "Deduction Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EXP_PAYMENT_INS", + "message": "Payment Instruction", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EXP_PERCENTAGE_OR_FIXED", + "message": "Percentage/ Fixed", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "EXP_VIEW_BILLS_MENU", + "message": "View Bills Menu", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "Enter Property Tax Unique ID", + "message": "Enter", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FAQ_S", + "message": "FAQs", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FATHER", + "message": "Father", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FATHER_NAME", + "message": "Father / Husband Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FATHER_NAME_IS_REQUIRED", + "message": "Father name is required", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FEMALE", + "message": "Female", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FEMALE_MULIA", + "message": "Female mulia", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FI", + "message": "Field Inspection documents", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FI.AGRICULTURE.LANDUSE", + "message": "Agriculture Landuse", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FI.AGRICULTURE_WATERBODY.FTL", + "message": "Agriculture Water body FTL", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FI.FIR", + "message": "Field inspection report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FI.FIR.FIR", + "message": "Field inspection report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FI.SIES", + "message": "Site Image East side", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FI.SIES.SIES", + "message": "Site Image East side", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FI.SINS", + "message": "Site image North side", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FI.SINS.SINS", + "message": "Site image North side", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FI.SISS", + "message": "Site Image South side", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FI.SISS.SISS", + "message": "Site Image South side", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FI.SIWS", + "message": "Site Image West Side", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FI.SIWS.SIWS", + "message": "Site Image West Side", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FIELDINSPECTION", + "message": "Pending for Field inspection", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FIELDINSPECTION_INPROGRESS", + "message": "Field Inspection InProgress", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FILE_LIMIT_EXCEED", + "message": "FIle size is Exceeded", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FILE_LIMIT_EXCEEDED", + "message": "Remove existing file before uploading new one", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FILE_MANAGER", + "message": "Gallery", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FILE_SIZE", + "message": "Maximum file size should be 5 MB", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FILE_SIZE_EXCEEDED", + "message": "File size cannot be greater than 5mb", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FILE_SIZE_EXCEEDED_5MB", + "message": "File Size Exceeded(5MB). Please upload single file upto 5 MB", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FILTERS_FILTER_CARD_CAPTION", + "message": "Filters", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FINANCIALS_SEARCH_ERROR", + "message": "Payment cannot be processed.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FIRENOC", + "message": "Fire No Objection Certificate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FIRENOC_BUILDINGTYPE_GROUP_A_RESIDENTIAL", + "message": "Group A Residential", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FIRENOC_BUILDINGTYPE_GROUP_A_RESIDENTIAL_SUBDIVISIONA_1", + "message": "Subdivision A-1 Lodging and rooming houses", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FIRENOC_BUILDINGTYPE_GROUP_A_RESIDENTIAL_SUBDIVISIONA_2", + "message": "Subdivision A-2 One or two family private dwellings", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FIRENOC_BUILDINGTYPE_GROUP_A_RESIDENTIAL_SUBDIVISIONA_3", + "message": "Subdivision A-3 Dormitories", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FIRENOC_BUILDINGTYPE_GROUP_A_RESIDENTIAL_SUBDIVISIONA_4", + "message": "Subdivision A-4 Apartment houses", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FIRENOC_BUILDINGTYPE_GROUP_A_RESIDENTIAL_SUBDIVISIONA_5", + "message": "Subdivision A-5 Hotels", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FIRENOC_BUILDINGTYPE_GROUP_A_RESIDENTIAL_SUBDIVISIONA_6", + "message": "Subdivision A-6 Starred hotels", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FIRENOC_BUILDINGTYPE_GROUP_B_EDUCATIONAL", + "message": "Group B Educational", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FIRENOC_BUILDINGTYPE_GROUP_B_EDUCATIONAL_SUBDIVISIONB_1", + "message": "Subdivision B-1 Schools up to senior secondary level", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FIRENOC_BUILDINGTYPE_GROUP_B_EDUCATIONAL_SUBDIVISIONB_2", + "message": "Subdivision B-2 All others/training institutions", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FIRENOC_BUILDINGTYPE_GROUP_C_INSTITUTIONAL", + "message": "Group C Institutional", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FIRENOC_BUILDINGTYPE_GROUP_C_INSTITUTIONAL_SUBDIVISIONC_1", + "message": "Subdivision C-1 Hospitals and sanatoria", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FIRENOC_BUILDINGTYPE_GROUP_C_INSTITUTIONAL_SUBDIVISIONC_2", + "message": "Subdivision C-2 Custodial institutions", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FIRENOC_BUILDINGTYPE_GROUP_C_INSTITUTIONAL_SUBDIVISIONC_3", + "message": "Subdivision C-3 Penal and mental institutions", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FIRENOC_BUILDINGTYPE_GROUP_D_ASSEMBLY", + "message": "Group D Assembly", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FIRENOC_BUILDINGTYPE_GROUP_D_ASSEMBLY_SUBDIVISIOND_1", + "message": "Subdivision D-1 Buildings having a theatrical or motion picture or any other stage and fixed seats for over 1 000 persons", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FIRENOC_BUILDINGTYPE_GROUP_D_ASSEMBLY_SUBDIVISIOND_2", + "message": "Subdivision D-2 Buildings having a theatrical or motion picture or any other stage and fixed seats up to 1 000 persons", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FIRENOC_BUILDINGTYPE_GROUP_D_ASSEMBLY_SUBDIVISIOND_3", + "message": "Subdivision D-3 Buildings without a permanent stage having accommodation for 300 or more persons but no permanent seating arrangement", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FIRENOC_BUILDINGTYPE_GROUP_D_ASSEMBLY_SUBDIVISIOND_4", + "message": "Subdivision D-4 Buildings without a permanent stage having accommodation for less than 300 persons with no permanent seating arrangement", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FIRENOC_BUILDINGTYPE_GROUP_D_ASSEMBLY_SUBDIVISIOND_5", + "message": "Subdivision D-5 All other structures including temporary structures designed for assembly of people not covered by Subdivisions D-1 to D-4, at ground level", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FIRENOC_BUILDINGTYPE_GROUP_D_ASSEMBLY_SUBDIVISIOND_6", + "message": "Subdivision D-6 Buildings having mixed occupancies of assembly and mercantile (for example, shopping malls providing facilities such as shopping, cinema theatres, multiplexes and restaurants/food courts)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FIRENOC_BUILDINGTYPE_GROUP_D_ASSEMBLY_SUBDIVISIOND_7", + "message": "Subdivision D-7 Underground and elevated mass rapid transit system", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FIRENOC_BUILDINGTYPE_GROUP_E_BUSINESS", + "message": "Group E Business", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FIRENOC_BUILDINGTYPE_GROUP_E_BUSINESS_SUBDIVISIONE_1", + "message": "Subdivision E-1 Offices, banks, professional establishments, like offices of architects, engineers, doctors, lawyers, post offices and police stations", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FIRENOC_BUILDINGTYPE_GROUP_E_BUSINESS_SUBDIVISIONE_2", + "message": "Subdivision E-2 Laboratories, outpatient clinics, research establishments, libraries and test houses", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FIRENOC_BUILDINGTYPE_GROUP_E_BUSINESS_SUBDIVISIONE_3", + "message": "Subdivision E-3 Electronic data processing centres, computer installations, information technology parks and call centres", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FIRENOC_BUILDINGTYPE_GROUP_E_BUSINESS_SUBDIVISIONE_4", + "message": "Subdivision E-4 Telephone exchanges", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FIRENOC_BUILDINGTYPE_GROUP_E_BUSINESS_SUBDIVISIONE_5", + "message": "Subdivision E-5 Broadcasting stations, T.V. stations and air traffic control towers", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FIRENOC_BUILDINGTYPE_GROUP_F_MERCANTILE", + "message": "Group F Mercantile", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FIRENOC_BUILDINGTYPE_GROUP_F_MERCANTILE_SUBDIVISIONF_1", + "message": "Subdivision F-1 Shops, stores, departmental stores, markets (any with covered area up to 500 m2 )", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FIRENOC_BUILDINGTYPE_GROUP_F_MERCANTILE_SUBDIVISIONF_2", + "message": "Subdivision F-2 Shops, stores, departmental stores, markets (any with covered area more than 500 m2 )", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FIRENOC_BUILDINGTYPE_GROUP_F_MERCANTILE_SUBDIVISIONF_3", + "message": "Subdivision F-3 Underground shopping centres", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FIRENOC_BUILDINGTYPE_GROUP_G_INDUSTRIAL", + "message": "Group G Industrial", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FIRENOC_BUILDINGTYPE_GROUP_G_INDUSTRIAL_SUBDIVISIONG_1", + "message": "Subdivision G-1 Buildings used for low hazard industries", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FIRENOC_BUILDINGTYPE_GROUP_G_INDUSTRIAL_SUBDIVISIONG_2", + "message": "Subdivision G-2 Buildings used for moderate hazard industries", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FIRENOC_BUILDINGTYPE_GROUP_G_INDUSTRIAL_SUBDIVISIONG_3", + "message": "Subdivision G-3 Buildings used for high hazard industries", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FIRENOC_BUILDINGTYPE_GROUP_H_STORAGE", + "message": "Group H Storage", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FIRENOC_BUILDINGTYPE_GROUP_H_STORAGE_GROUP_H_STORAGE", + "message": "Group H Storage", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FIRENOC_BUILDINGTYPE_GROUP_J_HAZARDOUS", + "message": "Group J Hazardous", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FIRENOC_BUILDINGTYPE_GROUP_J_HAZARDOUS_GROUP_J_HAZARDOUS", + "message": "NA", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FIRENOC_FIRESTATIONS_FS_AMRITSAR_01", + "message": "Amritsar Firestation", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FIRENOC_FIRESTATIONS_FS_CITYA_01", + "message": "City A", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FIRENOC_FIRESTATIONS_FS_JALANDHAR_01", + "message": "Jalandhar Firestation", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FIRENOC_FIRESTATIONS_FS_MOHALI_01", + "message": "Mohali Firestation", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FIRENOC_NEW_APPLICATION", + "message": "NEW APPLICATION", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FIRE_NOC", + "message": "Fire No Objection Certificate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FIRE_NOC_APPLICATION_SENDBACKTOCITIZEN_SUCCESS", + "message": " ", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FIRE_NOC_SENDBACKTOCITIZEN_SUCCESS_MESSAGE_MAIN", + "message": "Application Sent Back to Citizen Successfully", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FITTER", + "message": "Fitter", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FI_AGRICULTURE", + "message": "Agriculture", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FI_FIR", + "message": "Field inspection report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FI_FIR_FIR", + "message": "Field inspection report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FI_SIES", + "message": "Site Image East side", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FI_SINS", + "message": "Site image North side", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FI_SINS_SINS", + "message": "Site image North side", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FI_SISS", + "message": "Site Image South side", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FI_SISS_SISS", + "message": "Site Image South side", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FI_SIWS", + "message": "Site Image West Side", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FI_SIWS_SIWS", + "message": "Site Image West Side", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FN_CITIZEN", + "message": "Citizen", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FN_COUNTER", + "message": "Counter", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FN_NEW", + "message": "New", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FN_PROVISIONAL", + "message": "Provisional", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FREEDOMFIGHTER", + "message": "Freedom Fighter ", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FROM_ISSUED_DATE", + "message": "from the issued date.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FSMAREAWISEDAILYCOLLECTIONREPORT", + "message": "FSM Area Wise Daily Collection Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FSMDAILYCOLLECTIONREPORT", + "message": "FSM Daily Collection Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FSMDAILYDESLUDINGREPORT", + "message": "FSM Daily Desluding Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FSMFSTPPLANTWITHVEHICLELOGREPORT", + "message": "FSM FSTP Plant With Vehicle Log Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FSMREQUESTREPORT", + "message": "FSM Desludging Request Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FSMVEHICLELOGREPORT", + "message": "FSM Vehicle Log Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FSM_APPLICATION_NO", + "message": "Application No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FSM_DUE_AMOUNT_TO_BE_PAID", + "message": "Balance Due", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FSM_FEEDBACK_PENDING", + "message": "Dear Applicant, Your request for cleaning septic tank/pit is completed. Please take some time to rate us using the link {FSM_APPL_LINK}. EGOVS.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FSM_GENDER_DETAILS", + "message": "Gender Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FSM_PAYMENT_DETAILS", + "message": "Payment", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FSM_POST_PAY_SMS_CREATED_CREATE", + "message": "Dear citizen, your application for cleaning septic tank/pit is created with application reference no {2}. You will be notified when an operator is assigned to a request. Request is expected to be completed within {SLA_HOURS}hrs. Thank You. EGOVS.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FSM_POST_PAY_SMS_DSO_INPROGRESS_DSO_ACCEPT", + "message": "Dear Applicant, Vehicle {VEHICLE_REG_NO} will be reaching your location to clean the septic tank/pit on {POSSIBLE_SERVICE_DATE} with reference to your application number {2}. You can contact the operator in +91 {DSO_MOBILE_NUMBER}.\n\nEGOVS", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FSM_REGISTRY_ROLE", + "message": "Role", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FSM_REGISTRY_ROLE 1", + "message": "Role", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FSM_SMS_ASSIGN_DSO_APPLY", + "message": "Dear citizen, your application for cleaning septic tank/pit is created with application reference no {2}. You will be notified when an operator is assigned to a request. Request is expected to be completed within {SLA_HOURS}hrs. Thank You. EGOVS.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FSM_SMS_ASSIGN_DSO_DECLINE", + "message": "Dear Applicant, Your request for cleaning the septic tank/pit is rejected with the reason {FSM_DSO_REJECT_REASON} . Please use this link {NEW_FSM_LINK} to create a new request if needed. EGOVS.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FSM_SMS_ASSING_DSO_APPLY", + "message": "Dear citizen, your application for cleaning septic tank/pit is created with application reference no {2}. You will be notified when an operator is assigned to a request. Request is expected to be completed within {SLA_HOURS}hrs. Thank You. EGOVS.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FSM_SMS_ASSING_DSO_DECLINE", + "message": "Dear Applicant, Your request for cleaning the septic tank/pit is rejected with the reason {FSM_DSO_REJECT_REASON} . Please use this link {NEW_FSM_LINK} to create a new request if needed. EGOVS.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FSM_SMS_ASSING_DSO_PAY", + "message": "Dear citizen, amount of Rs.{AMOUNT_TO_BE_PAID}/- is received towards the payment of cleaning septic tank /pit for reference no. {RECEIPT_NO}. Please click this link {RECEIPT_LINK} to download the receipt. Thank You. EGOVS.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FSM_SMS_ASSING_DSO_PAY_V2", + "message": "Dear Applicant, Amount of Rs.{#var#}/- is received towards the payment of cleaning septic tank /pit with reference no. {#var#}. You will be notified when an operator is assigned to a request. Please click this link {#var#}{#var#} to download the receipt.EGOVS", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FSM_SMS_CANCELED_CANCEL", + "message": "Dear Applicant, Your request for cleaning the septic tank/pit is cancelled with the reason {FSM_CANCEL_REASON} . Please use this link {NEW_FSM_LINK} to create a new request if needed.\n\nEGOVS", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FSM_SMS_CANCELED_CANCEL_V2", + "message": "Dear Applicant, Your request for cleaning the septic tank/pit is cancelled with the reason {#var#}{#var#} . Please use this link {#var#}{#var#} to create a new request if needed.EGOVS", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FSM_SMS_CITIZEN_FEEDBACK_PENDING_COMPLETED", + "message": "Dear Applicant, Your request for cleaning septic tank/pit is completed. Please take some time to rate us using the link {FSM_APPL_LINK}. EGOVS.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FSM_SMS_CITIZEN_NO_OF_TRIPS_VEHICLE_CAPACITY_CHANGE", + "message": "Dear citizen, the number of trips & vehicle capacity in your application for cleaning septic tank/pit is updated. You will be notified when an operator is assigned to a request. Request is expected to be completed within 48hrs. Thank You. EGOVS.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FSM_SMS_CREATED_CREATE", + "message": "Dear Applicant,Your application for cleaning septic tank/pit is created with application reference no. {2}. You will be notified to make an application fee shortly.Request is expected to be completed within {SLA_HOURS} hrs of making the payment.\n\nEGOVS", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FSM_SMS_CREATED_CREATE_2", + "message": "Dear Applicant,Your application for cleaning septic tank/pit is created with application reference no. {2}. You will be notified to make an application fee shortly.Request is expected to be completed within {SLA_HOURS} hrs of making the payment.\n\nEGOVS", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FSM_SMS_CREATED_CREATE_NEW", + "message": "Dear Applicant,Your application for cleaning septic tank/pit is created with application reference no.{#var#}.You will be notified to make an application fee shortly.Request is expected to be completed within {#var#}hrs of making the payment.EGOVS", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FSM_SMS_CREATED_CREATE_V2", + "message": "Dear Applicant,Your application for cleaning septic tank/pit is created with application reference no.{#var#}.You will be notified to make an application fee shortly.Request is expected to be completed within {#var#}hrs of making the payment.EGOVS", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FSM_SMS_DISPOSAL_IN_PROGRESS_PAY", + "message": "Dear citizen, amount of Rs.{AMOUNT_TO_BE_PAID}/- is received towards the payment of cleaning septic tank /pit for reference no. {RECEIPT_NO}. Please click this link {RECEIPT_LINK} to download the receipt. Thank You. EGOVS.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FSM_SMS_DSO_INPROGRESS_DSO_ACCEPT", + "message": "Dear Applicant, Vehicle {VEHICLE_REG_NO} will be reaching your location to clean the septic tank/pit on {POSSIBLE_SERVICE_DATE} with reference to your application number {2}. You can contact the operator in +91 {DSO_MOBILE_NUMBER}.\n\nEGOVS", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FSM_SMS_DSO_INPROGRESS_PAY", + "message": "Dear citizen, amount of Rs.{AMOUNT_TO_BE_PAID}/- is received towards the payment of cleaning septic tank /pit for reference no. {RECEIPT_NO}. Please click this link {RECEIPT_LINK} to download the receipt. Thank You. EGOVS.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FSM_SMS_DSO_INPROGRESS_UPDATE", + "message": "Dear citizen, your application for cleaning septic tank /pit with application number {2} is updated and the operator has entered the number of trips: {NO_OF_TRIPS}. Please click this link {PAY_LINK} to pay the amount of Rs {AMOUNT_TO_BE_PAID} towards cleaning of your septic tank/pit. Thank You. EGOVS", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FSM_SMS_DSO_REJECTED_DSO_REJECT", + "message": "Dear Applicant, Your request for cleaning the septic tank/pit is rejected with the reason {FSM_DSO_REJECT_REASON} . Please use this link {NEW_FSM_LINK} to create a new request if needed. EGOVS.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FSM_SMS_PENDING_APPL_FEE_PAYMENT_APPLY", + "message": "Dear citizen, Amount of Rs.{AMOUNT_TO_BE_PAID} is your bill towards the cleaning of eptic tank /pit with reference no. {2}. Please make the payment before the request is complete. Please click this link {RECEIPT_LINK} to download the receipt. Thank You. EGOVS.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FSM_SMS_PENDING_APPL_FEE_PAYMENT_APPLY_NEW", + "message": "Dear Applicant, Your application for cleaning septic tank /pit is created with application number {#var#}.Please click this link {#var#} to pay the application fee for processing the application.Request is expected to be completed within {#var#}hrs of making the payment.EGOVS", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FSM_SMS_PENDING_APPL_FEE_PAYMENT_APPLY_V2", + "message": "Dear Applicant, Your application for cleaning septic tank /pit is created with application number {#var#}.Please click this link {#var#}{#var#} to pay the application fee for processing the application.Request is expected to be completed within {#var#}hrs of making the payment.EGOVS", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FSM_SMS_PENDING_APPL_FEE_PAYMENT_SCHEDULE", + "message": "Dear citizen, your application for cleaning septic tank /pit is created with application number {2}, and the operator has entered the number of trips: {NO_OF_TRIPS}. Please click this link {PAY_LINK} to pay the amount of Rs.{AMOUNT_TO_BE_PAID} towards cleaning of your septic tank/pit. Thank You. EGOVS.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FSM_SMS_PENDING_APPL_FEE_PAYMENT_SUBMIT", + "message": "Dear Applicant, Please pay the application fee Rs.{AMOUNT_TO_BE_PAID}/- for cleaning the septic tank/pit with request number {2}. Click this link {PAY_LINK} to make the payment. Request is expected to be completed within {SLA_HOURS} hrs of making the payment.\n\nEGOVS", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FSM_SMS_PENDING_APPL_FEE_PAYMENT_SUBMIT_NEW", + "message": "Dear Applicant, Please pay the application fee Rs.{#var#}/- for cleaning the septic tank/pit with request number {#var#}.Click this link {#var#} to make the payment.Request is expected to be completed within {#var#}hrs of making the payment.EGOVS", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FSM_SMS_PENDING_APPL_FEE_PAYMENT_SUBMIT_V2", + "message": "Dear Applicant, Please pay the application fee Rs.{#var#}/- for cleaning the septic tank/pit with request number {#var#}.Click this link {#var#}{#var#} to make the payment.Request is expected to be completed within {#var#}hrs of making the payment.EGOVS", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FSM_SMS_REJECTED_REJECT", + "message": "Dear Applicant, Your request for cleaning the septic tank/pit is rejected with the reason {FSM_DSO_REJECT_REASON} . Please use this link {NEW_FSM_LINK} to create a new request if needed.\n\nEGOVS", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FSM_SMS_REJECTED_REJECT_V2", + "message": "Dear Applicant, Your request for cleaning the septic tank/pit is rejected with the reason {#var#}{#var#} . Please use this link {#var#}{#var#} to create a new request if needed.EGOVS", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FSM_TIMELINE_SUMMARY", + "message": "Summary", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FSM_TRIP_CHARGES", + "message": "Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FS_AMRITSAR_01", + "message": "Amritsar Firestation", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FS_CITYA_01", + "message": "City A", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FS_JALANDHAR_01", + "message": "Jalandhar Firestation", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FS_MOHALI_01", + "message": "Mohali Firestation", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "Filter", + "message": "Filter", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "FromDate", + "message": "Application created from date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "GENDER_IS_REQUIRED", + "message": "Gender is required", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "GENERAL", + "message": "General", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "GO_TO_HOME", + "message": "HOME", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "GROPERFORMANCEREPORT", + "message": "GRO Performance Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "GROUND.WELL", + "message": "Ground", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "GRP_BILL_DONE", + "message": "Done", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "Gas_Balloon_Advertisement", + "message": "Gas Balloon Advertisement", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "HAMMER_MAN", + "message": "Hammer man", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "HANDICAPPED", + "message": "Handicapped/Disabled", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "HARVESTING_SCORE_NO", + "message": "No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "HARVESTING_SCORE_YES", + "message": "Yes", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "HELPER_WELL_SINKER", + "message": "Helper to Well Sinker", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "HIDE_WORKFLOW_TIMELINE", + "message": "Hide WorkflowTimeline", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "HIGHLY_SKILLED", + "message": "Skilled", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "HIGHLY_SKILLED.FITTER", + "message": "Skilled - Fitter", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "HIGHLY_SKILLED.MASON", + "message": "Skilled - Mason", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "HIGHLY_SKILLED.PAINTER", + "message": "Skilled - Painter", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "HIGHLY_SKILLED.PLUMBER", + "message": "Skilled - Plumber", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "HIGHLY_SKILLED_FITTER", + "message": "Skilled - Fitter", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "HIGHLY_SKILLED_MASON", + "message": "Skilled - Mason", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "HIGHLY_SKILLED_PAINTER", + "message": "Skilled - Painter", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "HIGHLY_SKILLED_PLUMBER", + "message": "Skilled - Plumber", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "HINT_BANK_DETAILS", + "message": "Bank of India, Dhenkanal", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "HOME_SERVICE_REQUESTS", + "message": "My Service Requests", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "HOW_IT_WORKS", + "message": "How it works?", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "HR_COMMON_CREATE_EMPLOYEE_HEADER", + "message": "Create Employee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "HR_HOME_SEARCH_RESULTS_HEADING", + "message": "Search Employee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "HR_UPDATE_PASSWORD_SUCCESS_MESSAGE", + "message": "Employee Password Updated successfully ", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "HUSBAND", + "message": "Husband", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "IDENTITYPROOF.VOTERID", + "message": "Voter ID", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "IFSC_CODE_IS_REQUIRED", + "message": "IFSC Code is required", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "IMMOVABLE___KUTCHA", + "message": "Immovable / Kutcha", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "IMMOVABLE___PUCCA", + "message": "Immovable / Pucca", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "INACTIVE", + "message": "Inactive", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "INBOX_ENTER_BID", + "message": "Enter Application No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "INBOX_QUICK_ACTION", + "message": "QUICK ACTION", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "INBOX_SORT_ICON", + "message": "Sort by SLA", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "INDEPENDENTPROPERTY", + "message": "Independent Building", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "IND_ALREADY_ADDED_TO_THE_TABLE", + "message": "Individual is already added to the list", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "INITIATED", + "message": "Pending for Stakeholders update", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "INPROGRESS", + "message": "Stakeholders's submission pending", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "INVALIDACCESSTOKENEXCEPTION", + "message": "Session Expired", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "INVALID_CREDENTIALS", + "message": "Invalid Credentials", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "INVALID_EMAIL", + "message": "Invalid Email", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "INVALID_LOGIN_CREDENTIALS", + "message": "Invalid Login Credentials", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "INWORKFLOW", + "message": "In Workflow", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "IN_PROGRESS_LABEL", + "message": "In Progress", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "IS_AVG_COMPLAINT_RESOLUTION_TIME", + "message": "is the average complaint resolution time", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "Invalid Address", + "message": "Invalid Address", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "Invalid Email", + "message": "Invalid Email", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "Invalid_Address", + "message": "Invalid Address", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "Invalid_Email", + "message": "Invalid Email", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1", + "message": "Ashok Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC10", + "message": "Gurbachan Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC100", + "message": "Dera Preet Nagar Jhuggia", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1000", + "message": "Maqsudan Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1001", + "message": "Nagra Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1002", + "message": "Jawala Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1003", + "message": "New Jawala Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1004", + "message": "Patel Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1005", + "message": "New Patel Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1006", + "message": "Guru Ravidass Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1007", + "message": "Bhupinder Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1008", + "message": "Ashok Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1009", + "message": "Nagra Pind", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC101", + "message": "Miya Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1010", + "message": "New Nagra", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1011", + "message": "Shital Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1012", + "message": "New Shital Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1013", + "message": "Jugian", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1014", + "message": "Sham Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1015", + "message": "Amar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1016", + "message": "Babu Labh Singh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1017", + "message": "Rattan Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1018", + "message": "New Rattan Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1019", + "message": "Shaheed Babu Labh Singh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC102", + "message": "Shalimar Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1020", + "message": "New Shaheed Babu Labh Singh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1021", + "message": "Madhuban Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1022", + "message": "Gujrati Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1023", + "message": "Jagwali Kathi Near Canal", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1024", + "message": "Ragu Nath Mandir Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1025", + "message": "Kacha Kot", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1026", + "message": "Old Green Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1027", + "message": "Green Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1028", + "message": "Raja Garden", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1029", + "message": "Raja Garden Extension", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC103", + "message": "New Dashmesh Nagar Part", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1030", + "message": "V.I.P Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1031", + "message": "Butti Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1032", + "message": "Gagan Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1033", + "message": "Bhai Gurdass Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1034", + "message": "Baba Bachittar Ji Nagar Mithu Basti", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1035", + "message": "Tara Singh Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1036", + "message": "New Rasila Nagar Basti Danishmandan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1037", + "message": "Dilbagh Nagar Ext.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1038", + "message": "Rasila Nagar Phase 2 Danishmandan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1039", + "message": "Rasila Nagar Basti Danishmandan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC104", + "message": "Kaki Pind", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1040", + "message": "Begampura Colony Danishmandan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1041", + "message": "Baba Budha Ji Nagar Mithu Nagar Basti", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1042", + "message": "Ekta Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1043", + "message": "New Shastri Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1044", + "message": "Satnam Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1045", + "message": "Anoop Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1046", + "message": "Bal bro Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1047", + "message": "Badhri Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1048", + "message": "Badhri Colony Phase (2)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1049", + "message": "Ram Shernam Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC105", + "message": "New Joginder Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1050", + "message": "Peer Das Basti", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1051", + "message": "Kamar Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1052", + "message": "Panu Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1053", + "message": "Paras Estate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1054", + "message": "Paras Estate 2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1055", + "message": "Maharaja Garden", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1056", + "message": "Harbanse Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1057", + "message": "5 Peer Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1058", + "message": "Anoop Nagar (2)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1059", + "message": "Sher Singh Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC106", + "message": "Part of Joginder Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1060", + "message": "Roshan Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1061", + "message": "Qilla Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1062", + "message": "Kathera Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1063", + "message": "Gautam Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1064", + "message": "New Gautam Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1065", + "message": "Kabir Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1066", + "message": "Guru Ram Dass Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1067", + "message": "Mata Sant Kaur Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1068", + "message": "City A Prime", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1069", + "message": "City A Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC107", + "message": "New Beant Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1070", + "message": "City A Kunj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1071", + "message": "Rajan Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1072", + "message": "Kailash Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1073", + "message": "Balmik Mohalla Bawa Khel", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1074", + "message": "Akal Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1075", + "message": "Basti Bawa Khel (main)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1076", + "message": "Raj Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1077", + "message": "New Raj Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1078", + "message": "Kabir Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1079", + "message": "Bank Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC108", + "message": "Part of Beant Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1080", + "message": "Basti Bawa Khel", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1081", + "message": "Katehara Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1082", + "message": "New Rattan Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1083", + "message": "Guru Nanak Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1084", + "message": "New Guru Nanak Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1085", + "message": "Shiv Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1086", + "message": "Baba Kahandass Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1087", + "message": "Village Nagara", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1088", + "message": "Abinandan Park", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1089", + "message": "National Park", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC109", + "message": "Gulmarg Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1090", + "message": "Ashok Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1091", + "message": "Vivek Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1092", + "message": "Green Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1093", + "message": "Shanti Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1094", + "message": "Viveka Nand Park", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1095", + "message": "Subash Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1096", + "message": "Golden Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1097", + "message": "Navyug Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1098", + "message": "New Shiv Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1099", + "message": "Maqsudan Byepass", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC11", + "message": "Indra Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC110", + "message": "Mehtab Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1100", + "message": "Mahasha Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1101", + "message": "Anand Ngr", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1102", + "message": "New Anand Ngr", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1103", + "message": "Janta Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1104", + "message": "Navnirman Janta Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1105", + "message": "Issa Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1106", + "message": "Guru Nanak Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1107", + "message": "Aara Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1108", + "message": "Surat Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1109", + "message": "Master Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC111", + "message": "Professor Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1110", + "message": "Angad Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC1111", + "message": "Amandip Avenue.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC112", + "message": "Mohan Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC113", + "message": "Part of Ladhewali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC114", + "message": "Part of New Dashmesh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC115", + "message": "Dhilwan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC116", + "message": "Dhanowali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC117", + "message": "Sanik Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC118", + "message": "Old Dashmesh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC119", + "message": "Ajeet Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC12", + "message": "Sant Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC120", + "message": "Guru Anged Dev Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC121", + "message": "Sunder Nagar Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC122", + "message": "Kohinoor Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC123", + "message": "Sunny Prime", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC124", + "message": "Arman Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC125", + "message": "Johan Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC126", + "message": "Ganesh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC127", + "message": "New Ganesh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC128", + "message": "Masi Mohalla Dakoha", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC129", + "message": "Tarun Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC13", + "message": "Kalia Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC130", + "message": "Kaki Pind", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC131", + "message": "Arman Nagar 2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC132", + "message": "Birring Pind-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC133", + "message": "Birring Pind-2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC134", + "message": "Mohinder Singh Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC135", + "message": "Mehnga Singh Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC136", + "message": "Dada Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC137", + "message": "Peace Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC138", + "message": "Bunga Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC139", + "message": "Golden Colony (Phase 1)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC14", + "message": "Kalia Colony Ph-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC140", + "message": "Golden Colony (Phase 2)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC141", + "message": "Golden Colony (Phase 3)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC142", + "message": "Model Estate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC143", + "message": "Defence Colony (Phase 1)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC144", + "message": "New Defence Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC145", + "message": "Paragpura ( Old Phagwara Road)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC146", + "message": "Paragpura ( Pind )", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC147", + "message": "Paragpura ( Abadi Near Railway fatak )", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC148", + "message": "Ratti Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC149", + "message": "Thakur Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC15", + "message": "Kalia Colony PH-2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC150", + "message": "Ram Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC151", + "message": "Chotte Ram Bagh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC152", + "message": "Panch Sheel Colony ( Half )", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC153", + "message": "Bhullar Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC154", + "message": "Modern State", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC155", + "message": "Yadav Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC156", + "message": "Baba Budha Ji Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC157", + "message": "Bhuda Ji Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC158", + "message": "Shaheed Gurvinder Singh Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC159", + "message": "National Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC16", + "message": "Kalia Colony PH-3", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC160", + "message": "Ravidass Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC161", + "message": "Guru Nanak Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC162", + "message": "Jagjit Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC163", + "message": "Old Kaki Pind", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC164", + "message": "Village Dakoha", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC165", + "message": "Baba Budha Singh Nagar Street No 1 to 9", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC166", + "message": "Ekta Nagar PH-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC167", + "message": "Ekta Nagar PH-2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC168", + "message": "Joginder Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC169", + "message": "Panch Rattan Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC17", + "message": "Kalia Farm", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC170", + "message": "New Defence Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC171", + "message": "Beant Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC172", + "message": "Old Beant Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC173", + "message": "PSEB Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC174", + "message": "BB Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC175", + "message": "Half Rama Mandi Main Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC176", + "message": "Khateek Market Ramamandi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC177", + "message": "Valmik Mohalla Ramamandi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC178", + "message": "Krishna Sweet Wali Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC179", + "message": "Palwon Wali Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC18", + "message": "Guru Amar Dass Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC180", + "message": "Fouji Wali Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC181", + "message": "Bhatra Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC182", + "message": "Aytar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC183", + "message": "Guru Nanak Pura East", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC184", + "message": "Guru Nanak Pura West", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC185", + "message": "Chugitti", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC186", + "message": "Ekta Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC187", + "message": "P.A.P", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC188", + "message": "Railway Colony-3", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC189", + "message": "Rajinder Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC19", + "message": "Guru Amar Dass Nagar 2- Marla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC190", + "message": "Preet Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC191", + "message": "Sehgal Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC192", + "message": "Kirti Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC193", + "message": "Mohalla Ladowali Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC194", + "message": "Mohyal Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC195", + "message": "Link Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC196", + "message": "Hargobind Pura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC197", + "message": "Ranjit Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC198", + "message": "New Rajinder Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC199", + "message": "Police Line", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC2", + "message": "Bank Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC20", + "message": "New Guru Amar Dass Nagar Ext.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC200", + "message": "Guru Nanak Pura (West) Street No. 1 to 8", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC201", + "message": "New Guru Nanak Pura (West)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC202", + "message": "Bhojowal Patti (Chugittee)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC203", + "message": "Bharat Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC204", + "message": "Satnam Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC205", + "message": "Chugittee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC206", + "message": "Ved Ram Parkash Street", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC207", + "message": "Guru Gobind Singh Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC208", + "message": "Sureya Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC209", + "message": "Komal Vihar Old & New", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC21", + "message": "Guru Amar Dass Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC210", + "message": "Bashirpura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC211", + "message": "Thakur Singh Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC212", + "message": "Royal Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC213", + "message": "Jhansi Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC214", + "message": "Gobind Garh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC215", + "message": "Arjun Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC216", + "message": "40 Quarter", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC217", + "message": "Dashmesh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC218", + "message": "New Dashmesh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC219", + "message": "Sant Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC22", + "message": "Venus Valley", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC220", + "message": "Shanti Pura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC221", + "message": "New Baradari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC222", + "message": "Poultry Form Area", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC223", + "message": "Prem Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC224", + "message": "Mandi Fenton Garg", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC225", + "message": "Partap Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC226", + "message": "Rishi Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC227", + "message": "Brahm Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC228", + "message": "Mandi Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC229", + "message": "Railway Colony No. 1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC23", + "message": "Baba Mohan Dass Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC230", + "message": "Guard Colony No-2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC231", + "message": "Old Jawahar Nagar Single Lane", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC232", + "message": "Central Town", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC233", + "message": "Krishan Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC234", + "message": "Old Jawahar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC235", + "message": "Master Tara Singh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC236", + "message": "P & T Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC237", + "message": "Riaz Pura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC238", + "message": "Ramesh Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC239", + "message": "Shiva Ji Park", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC24", + "message": "Salempur Muslmana", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC240", + "message": "Netaji Park", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC241", + "message": "Civil Lines", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC242", + "message": "Mohalla Makhdumpura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC243", + "message": "Mohalla Shastri Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC244", + "message": "Fauji Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC245", + "message": "Shivalik Apartments", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC246", + "message": "Venus Apartments", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC247", + "message": "B-Block Apartments", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC248", + "message": "Paradise Apartments", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC249", + "message": "Gurkirpa Apartments", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC25", + "message": "Swarn Park-1Swarn Prak- 2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC250", + "message": "Ganga Apartments", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC251", + "message": "Nakodar Road Market", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC252", + "message": "Lajpat Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC253", + "message": "Lajpat Nagar Market", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC254", + "message": "Abadpura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC255", + "message": "Balmiki Colony Link Road Abadpura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC256", + "message": "Major Bahadur Singh Nagar & Marg", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC257", + "message": "New Model Town Mall Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC258", + "message": "New Jawahar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC259", + "message": "Guru Nanak Mission Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC26", + "message": "Sanjay Gandhi Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC260", + "message": "Badridass Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC261", + "message": "Purani Baradari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC262", + "message": "Skylark Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC263", + "message": "Civil Lines", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC264", + "message": "Sehdev Market", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC265", + "message": "Namdev Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC266", + "message": "G.T Road Market", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC267", + "message": "Shastri Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC268", + "message": "Sanjay Gandhi Market", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC269", + "message": "New Courts Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC27", + "message": "Gadaipur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC270", + "message": "Police Line Market", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC271", + "message": "BMC Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC272", + "message": "Market Opposite Bus Stand", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC273", + "message": "Link Road Model Town", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC274", + "message": "Valmiki Colony Major Bahadur Singh Marg", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC275", + "message": "Radio Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC276", + "message": "New Jawahar Nagar (Point)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC277", + "message": "Green Park", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC278", + "message": "Mota Singh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC279", + "message": "Modern Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC28", + "message": "Raja Garden", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC280", + "message": "Gurjaipal Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC281", + "message": "Wariam Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC282", + "message": "Gian Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC283", + "message": "New Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC284", + "message": "Defence Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC285", + "message": "Defence Colony Ext.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC286", + "message": "Chotti Baradari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC287", + "message": "Jaswant Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC288", + "message": "Roop Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC289", + "message": "Atwal Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC29", + "message": "Ram Bagh Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC290", + "message": "Atwal House", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC291", + "message": "New Hardyal Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC292", + "message": "Hardyal Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC293", + "message": "Rubi Hospital", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC294", + "message": "BSF Camp", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC295", + "message": "New Green Park", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC296", + "message": "Railway Quarter ( Cool Road)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC297", + "message": "Garha/Shiv Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC298", + "message": "Dayanand chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC299", + "message": "Rattan Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC3", + "message": "Sarabha Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC30", + "message": "Dada Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC300", + "message": "Sark Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC301", + "message": "Valmiki Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC302", + "message": "Ravi dass Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC303", + "message": "Makhan Ramwali Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC304", + "message": "School wali Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC305", + "message": "Jiwan Singh Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC306", + "message": "Tanki Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC307", + "message": "Phagu Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC308", + "message": "Sarpanch wali Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC309", + "message": "Main Bazar Rama Mandir", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC31", + "message": "Industrial Area", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC310", + "message": "Main Bazar Gurudwara Singh Sabha", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC311", + "message": "Garha Vehanda", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC312", + "message": "Phagu Mohalla Ram Mandir wali Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC313", + "message": "Phagwari Mohalla Near Janj Ghar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC314", + "message": "Phagwari Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC315", + "message": "Dr. Mana Wali Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC316", + "message": "Old Div. 7 Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC317", + "message": "Cantt. Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC318", + "message": "Cantt. Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC319", + "message": "New Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC32", + "message": "Focal Point", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC320", + "message": "Jaswant Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC321", + "message": "Jawant Nagar near Gurudwara", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC322", + "message": "Jaswant Nagar Gali No. 1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC323", + "message": "Jaswant Nagar Gali Thekewali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC324", + "message": "Jaswant Nagar Gali no. 100 3 to 5", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC325", + "message": "Jaswant Nagar Gali 2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC326", + "message": "Golden Aveune-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC327", + "message": "Golden Avenue-2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC328", + "message": "Gurjeet Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC329", + "message": "Dashmesh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC33", + "message": "Transport Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC330", + "message": "Chanchal Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC331", + "message": "Chotti Baradari Part-2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC332", + "message": "Idgah Mohalla Garha", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC333", + "message": "Sarak Mohalla Garha", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC334", + "message": "Guru Diwan Nagar Garha", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC335", + "message": "Tara Chand Colony Garha", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC336", + "message": "Chintpurni Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC337", + "message": "Geeta Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC338", + "message": "Garha", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC339", + "message": "Labour Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC34", + "message": "Udyog Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC340", + "message": "Kunowali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC341", + "message": "Urban Estate Ph-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC342", + "message": "M.I.G", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC343", + "message": "Urban Estate Phase Half", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC344", + "message": "Sabowal Old.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC345", + "message": "Isherpuri Colony (Some Part)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC346", + "message": "Urban Estate 2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC347", + "message": "Sabowal", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC348", + "message": "Lahor Nangal", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC349", + "message": "Isherpuri Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC35", + "message": "Parshuram Pur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC350", + "message": "Ranjit Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC351", + "message": "Kalgidhar Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC352", + "message": "New Kalgidhar Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC353", + "message": "Ravinder Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC354", + "message": "Dashmesh Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC355", + "message": "Karol Bagh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC356", + "message": "Vijay Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC357", + "message": "Guru Ram Dass Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC358", + "message": "Baba Makhan Shah Lubana", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC359", + "message": "Friends Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC36", + "message": "Vadda Saipur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC360", + "message": "Officer Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC361", + "message": "D.C Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC362", + "message": "White Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC363", + "message": "Punjabi Bagh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC364", + "message": "Lahor Nagar Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC365", + "message": "Happy Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC366", + "message": "New Isherpuri", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC367", + "message": "Universal Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC368", + "message": "Singh Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC369", + "message": "Engineer Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC37", + "message": "Reru", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC370", + "message": "Green Garden Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC371", + "message": "Ravinder Nagar Extension", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC372", + "message": "Punjabi Bagh Extension", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC373", + "message": "Model Town", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC374", + "message": "Parkash Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC375", + "message": "Guru Nanak Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC376", + "message": "Guru Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC377", + "message": "Rishi Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC378", + "message": "Jyoti Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC379", + "message": "Shankar Garden", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC38", + "message": "Hargobind Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC380", + "message": "Lal Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC381", + "message": "Satkartar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC382", + "message": "Ravinder Nagar Extension", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC383", + "message": "Cheema Nagar Ext.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC384", + "message": "Vasant Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC385", + "message": "Vasant Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC386", + "message": "Vasant Vihar Ext.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC387", + "message": "Urban Estate Ph-2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC388", + "message": "Model Town", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC389", + "message": "New Jawahar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC39", + "message": "Punjabi Bagh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC390", + "message": "Lajpat Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC391", + "message": "Dada Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC392", + "message": "Green Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC393", + "message": "Green Model Town", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC394", + "message": "Kewal Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC395", + "message": "Indra Park", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC396", + "message": "Cheema Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC397", + "message": "Shiv Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC398", + "message": "Gurmeet Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC399", + "message": "Ramneek Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC4", + "message": "Paschim Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC40", + "message": "Bachint Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC400", + "message": "Bank Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC401", + "message": "Bank Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC402", + "message": "Raja Garden", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC403", + "message": "Keshev Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC404", + "message": "Ekta Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC405", + "message": "New Raja Garden", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC406", + "message": "New Raja Garden Extension", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC407", + "message": "Bhai Samund Singh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC408", + "message": "New Arora Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC409", + "message": "Mithapur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC41", + "message": "Parsuram Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC410", + "message": "King Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC411", + "message": "Green Wood Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC412", + "message": "Ram Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC413", + "message": "Sewerage Board Quarter", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC414", + "message": "75 Garden Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC415", + "message": "Panch Sheel Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC416", + "message": "Mayor Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC417", + "message": "New Light Colony Phase -1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC418", + "message": "Bank Enclave Phase-2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC419", + "message": "Residence Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC42", + "message": "Kahanpur Abadi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC420", + "message": "Sudhama Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC421", + "message": "New Sudhama Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC422", + "message": "Rocky Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC423", + "message": "New Light Colony Phase-2 (Sudhama Vihar)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC424", + "message": "VIP Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC425", + "message": "Sadhu Singh Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC426", + "message": "Red Face Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC427", + "message": "New Garden Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC428", + "message": "Bhai Banno Ji Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC429", + "message": "Gill Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC43", + "message": "Ramneek Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC430", + "message": "Parkash Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC431", + "message": "Khurla Kingra", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC432", + "message": "Tower Town Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC433", + "message": "Silver Residency", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC434", + "message": "Tower Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC435", + "message": "Guru Nanak Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC436", + "message": "Boota Mandi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC437", + "message": "Boota Pind (Back Side Dr.B.R. Ambedkar Park", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC438", + "message": "Swami Lal JI Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC439", + "message": "New Green Park", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC44", + "message": "Baba Deep Singh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC440", + "message": "Khurla Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC441", + "message": "Professor Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC442", + "message": "Army Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC443", + "message": "Mann Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC444", + "message": "Chopra Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC445", + "message": "Khurla Kingra (Back Side Sai Mandir)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC446", + "message": "Door Darshan Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC447", + "message": "Bombay Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC448", + "message": "Friends Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC449", + "message": "SAS Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC45", + "message": "Nurpur Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC450", + "message": "SAS Nagar Extension", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC451", + "message": "New Green Model Town", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC452", + "message": "Palam Rajeet Apartments", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC453", + "message": "Bank Enclave Part 1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC454", + "message": "Kuki Dhab", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC455", + "message": "Green Woods Apartments", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC456", + "message": "Park View Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC457", + "message": "Housing Board Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC458", + "message": "Satnam Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC459", + "message": "Mann Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC46", + "message": "Sunder Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC460", + "message": "Punjabi Bagh Wadala Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC461", + "message": "Silver heights", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC462", + "message": "Partap Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC463", + "message": "Guru Gobind Singh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC464", + "message": "Guru Arjan dev Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC465", + "message": "G.T.B Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC466", + "message": "Garden Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC467", + "message": "G.T.B Nagar extension", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC468", + "message": "GTB Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC469", + "message": "F.C.I Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC47", + "message": "Hargobind Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC470", + "message": "Chanakya Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC471", + "message": "New GTB Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC472", + "message": "Vivek Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC473", + "message": "Green Model Town", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC474", + "message": "Boota Pind", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC475", + "message": "Wadala Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC476", + "message": "Main Road Abadpura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC477", + "message": "Gali No. 2 To Gali No. 6", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC478", + "message": "Preet Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC479", + "message": "Rameshwar Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC48", + "message": "Gulmarg Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC480", + "message": "Sh. Guru Ravidass Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC481", + "message": "Tubewell wali Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC482", + "message": "Labour Court Gali Panj Peer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC483", + "message": "Maharishi Valmiki Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC484", + "message": "Taneja New Abadpura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC485", + "message": "Avtar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC486", + "message": "New Avtar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC487", + "message": "New Suraj Ganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC488", + "message": "Pishori Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC489", + "message": "Naqvi Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC49", + "message": "Bachint Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC490", + "message": "Dairy Kalu Ram-O Band Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC491", + "message": "Bhargo Camp-Add", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC492", + "message": "Pishori Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC493", + "message": "Link Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC494", + "message": "Abadpura Gali No.1 to 2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC495", + "message": "New Suraj Ganj –west", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC496", + "message": "Gali No-10-B-11-B", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC497", + "message": "Bhargo Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC498", + "message": "Bhargo Camp", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC499", + "message": "Ravidass Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC5", + "message": "Amrit Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC50", + "message": "Sarabha Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC500", + "message": "Channan Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC501", + "message": "Boota Mandi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC502", + "message": "Silver Oak Apartments", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC503", + "message": "Nakodar Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC504", + "message": "Chappli Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC505", + "message": "Sant Pura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC506", + "message": "Arya Samaj Mandir", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC507", + "message": "Valmiki Mandir", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC508", + "message": "Chapal Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC509", + "message": "Kabir Mandir", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC51", + "message": "Chack Hussiana", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC510", + "message": "Gain Giri Mandir", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC511", + "message": "Nirankari Bhawan Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC512", + "message": "Ravidass Dham", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC513", + "message": "Kanth Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC514", + "message": "State Bank Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC515", + "message": "Ravidass Mandir", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC516", + "message": "Sharif Pura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC517", + "message": "Tokri Chowk Bhargo Camp", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC518", + "message": "Gali Mirasiya Wali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC519", + "message": "Gali Somnath Aara Wala", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC52", + "message": "Lamba Pind", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC520", + "message": "Prem Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC521", + "message": "Gali Ravi Karyana Store", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC522", + "message": "Gali Sharma Model School", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC523", + "message": "Chune Wali Gali Boota Mandi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC524", + "message": "Gali Pawan Koushal", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC525", + "message": "Bhargo Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC526", + "message": "Nive Passe Bhargo Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC527", + "message": "Azad Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC528", + "message": "New Suraj Ganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC529", + "message": "New Suraj Ganj (West)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC53", + "message": "Chandigarh Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC530", + "message": "Model House Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC531", + "message": "Main Bazar Bhargo", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC532", + "message": "Mohalla Amar Saw Mill", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC533", + "message": "Bhargo Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC534", + "message": "Shamshan Ghat Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC535", + "message": "Mohalla Vari Vatt", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC536", + "message": "Bhargo Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC537", + "message": "Tej Mohan Nagar Gali No-5 to Gali No-11", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC538", + "message": "New Ashok Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC539", + "message": "Narayan Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC54", + "message": "Succhi Pind", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC540", + "message": "Ashok Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC541", + "message": "New Sant Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC542", + "message": "Sant Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC543", + "message": "Nijatam Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC544", + "message": "Chouhan Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC545", + "message": "Ganesh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC546", + "message": "Basti Nau", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC547", + "message": "Bank Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC548", + "message": "Chaar Marla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC549", + "message": "Block-A,B,C,D", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC55", + "message": "Hardial Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC550", + "message": "Bhagat Singh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC551", + "message": "Rajput Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC552", + "message": "Taranwali Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC553", + "message": "Mohalla Kot", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC554", + "message": "Uttam Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC555", + "message": "Mohalla Chaiaam", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC556", + "message": "Tej Mohan Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC557", + "message": "Sant Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC558", + "message": "Siddhartha Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC559", + "message": "New Abadi Jallowal", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC56", + "message": "New Hardial Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC560", + "message": "Kay Pee Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC561", + "message": "New Model House", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC562", + "message": "Model Gram Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC563", + "message": "Gahi Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC564", + "message": "Jaina Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC565", + "message": "New Ghai Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC566", + "message": "Chiragpura Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC567", + "message": "New Deol Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC568", + "message": "New Dashmesh Nagar Block-A", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC569", + "message": "New Dashmesh Nagar Block-C", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC57", + "message": "Hardip Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC570", + "message": "Tilak Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC571", + "message": "Kartar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC572", + "message": "New Kartar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC573", + "message": "Udye Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC574", + "message": "Deol Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC575", + "message": "New Deol Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC576", + "message": "Aman Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC577", + "message": "Major Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC578", + "message": "Pink City Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC579", + "message": "Kot Sadiq Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC58", + "message": "Judge Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC580", + "message": "Khara Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC581", + "message": "Kot Sadiq", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC582", + "message": "Mast Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC583", + "message": "Thind Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC584", + "message": "Sai Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC585", + "message": "BT Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC586", + "message": "Kanshi Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC587", + "message": "Green Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC588", + "message": "Geeta Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC589", + "message": "New Geeta Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC59", + "message": "Prem Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC590", + "message": "Ishwar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC591", + "message": "New Dashmesh Nagar B Block", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC592", + "message": "Dordarshan Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC593", + "message": "Tower Enclave Phase 2nd", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC594", + "message": "Hamilton Tower", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC595", + "message": "Guru Ravidass Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC596", + "message": "New Ravidass Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC597", + "message": "Shiva Ji Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC598", + "message": "New Shiva Ji Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC599", + "message": "Lasuri Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC6", + "message": "Chak Jinda", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC60", + "message": "Gulmohar City", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC600", + "message": "New Lasuri Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC601", + "message": "Begampura Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC602", + "message": "Main Adda Basti Danishmandan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC603", + "message": "Main Bazar Basti Danishmandan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC604", + "message": "Valmiki Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC605", + "message": "Chandigarh Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC606", + "message": "New Chandigarh Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC607", + "message": "Chungi Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC608", + "message": "Chungi No-9", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC609", + "message": "Tagri Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC61", + "message": "Three Star Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC610", + "message": "Guru Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC611", + "message": "Surjit Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC612", + "message": "Basti Sheikh + Danishmandan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC613", + "message": "Kattra Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC614", + "message": "Guru Sant Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC615", + "message": "Guru Nanak Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC616", + "message": "Lasuri Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC617", + "message": "Baldev Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC618", + "message": "Satkartar Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC619", + "message": "Ujala Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC62", + "message": "Soma Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC620", + "message": "Mohindra Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC621", + "message": "Valmiki Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC622", + "message": "Vada Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC623", + "message": "Banian Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC624", + "message": "Satran Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC625", + "message": "Mochian Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC626", + "message": "Tarkhana Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC627", + "message": "Telian Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC628", + "message": "Road Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC629", + "message": "Manjit Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC63", + "message": "Mata Salani Mandir", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC630", + "message": "Chet Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC631", + "message": "Janak Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC632", + "message": "Chaian Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC633", + "message": "Kot Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC634", + "message": "Gulabia Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC635", + "message": "Bara Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC636", + "message": "Hargobind Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC637", + "message": "Gurditta Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC638", + "message": "Borah Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC639", + "message": "Sethia Wali Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC64", + "message": "Baba Gadila Sham colony (Succhi Pind)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC640", + "message": "Dhankian Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC641", + "message": "Jairath Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC642", + "message": "Bagh Ahluwalia", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC643", + "message": "Kamaliya Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC644", + "message": "Gobind Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC645", + "message": "New Gobind Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC646", + "message": "Dilbagh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC647", + "message": "120' Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC648", + "message": "Shastri Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC649", + "message": "Old Shastri Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC65", + "message": "Deep Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC650", + "message": "Old Dusshara Ground", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC651", + "message": "Surya Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC652", + "message": "Basti Gujan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC653", + "message": "Ambedkar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC654", + "message": "Shah Kuli Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC655", + "message": "Virdi Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC656", + "message": "Valmiki Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC657", + "message": "Vada Vehra", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC658", + "message": "Sunyara Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC659", + "message": "Jangra Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC66", + "message": "New Upkar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC660", + "message": "Machi Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC661", + "message": "Harkrishan Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC662", + "message": "Manjit Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC663", + "message": "New Dilbagh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC664", + "message": "Dilbagh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC665", + "message": "Lahoria Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC666", + "message": "Kot Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC667", + "message": "Binda Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC668", + "message": "Doriya Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC669", + "message": "Board Wali Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC67", + "message": "Moh Kot Ram Dass ( Abadi )", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC670", + "message": "Main Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC671", + "message": "Shibu Mandir Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC672", + "message": "New Adarsh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC673", + "message": "J.P.Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC674", + "message": "Adarsh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC675", + "message": "J.P. Nagar Extension", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC676", + "message": "Basti Nau", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC677", + "message": "Krishan Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC678", + "message": "Basti Mithu", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC679", + "message": "Patwar Khana", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC68", + "message": "Karol Bagh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC680", + "message": "Conal Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC681", + "message": "Harbans Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC682", + "message": "New Harbans Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC683", + "message": "New Harbans Nagar Ext.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC684", + "message": "Adarsh Nagar up to Satyam Hospital Street", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC685", + "message": "New Vijay Nagar Left Side", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC686", + "message": "Tagore Nagar Right Side St.NO.7", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC687", + "message": "Dyal Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC688", + "message": "Gujral Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC689", + "message": "Shakti Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC69", + "message": "Rail Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC690", + "message": "Vijay Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC691", + "message": "S.U.S Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC692", + "message": "Ajit Singh Nagar up to Nakodar Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC693", + "message": "Niwan Suraj Gunj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC694", + "message": "Islam Gunj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC695", + "message": "Islamabad", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC696", + "message": "Mission Compound Left Side Batra Hospital", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC697", + "message": "Makhdoom Pura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC698", + "message": "Dhobi Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC699", + "message": "Mohalla Pacca Bagh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC7", + "message": "Toor Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC70", + "message": "Patel Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC700", + "message": "Ram Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC701", + "message": "Saidan Gate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC702", + "message": "Chowk Kade Shah", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC703", + "message": "Batakh Wala Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC704", + "message": "Rainak Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC705", + "message": "Naya Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC706", + "message": "Shaheed Udham Singh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC707", + "message": "Flats", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC708", + "message": "Civil Hospital", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC709", + "message": "E.S.I Hospital", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC71", + "message": "Sangam Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC710", + "message": "E.S.I Hospital Flats", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC711", + "message": "Milap Chowk to G.P.O", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC712", + "message": "G.P.O to Shastri Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC713", + "message": "Shastri to Milap Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC714", + "message": "Milap to Sunrise Hotal", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC715", + "message": "Sunrise Hotal to Partap Bagh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC716", + "message": "Partap Bagh to Phagwara Gate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC717", + "message": "Naya Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC718", + "message": "Saiden Gate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC719", + "message": "Peer Bodla Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC72", + "message": "Preet Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC720", + "message": "Khazuria Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC721", + "message": "Guru Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC722", + "message": "Neehya Band Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC723", + "message": "Jybal Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC724", + "message": "Neem Wali Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC725", + "message": "Tanki Wali Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC726", + "message": "Khodiya Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC727", + "message": "Kotpakshiya", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC728", + "message": "Hotel Raj Mahal back Side Gurudawara and Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC729", + "message": "Pakka Bagh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC73", + "message": "Mann Singh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC730", + "message": "Chohal Bagh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC731", + "message": "Hindsamachar Ground", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC732", + "message": "Mina Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC733", + "message": "Tikki Bagh Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC734", + "message": "Ucha Suraj Gunj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC735", + "message": "Jyoti chowk to preet Hotel", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC736", + "message": "Charanjit Pura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC737", + "message": "Ajit Pura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC738", + "message": "Jatt Pura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC739", + "message": "Valmiki Gate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC74", + "message": "Suchi Pind", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC740", + "message": "Malka Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC741", + "message": "Mohindru Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC742", + "message": "Mitha Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC743", + "message": "Telwali Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC744", + "message": "Chota Ali Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC745", + "message": "Alli Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC746", + "message": "Bansa Wala Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC747", + "message": "Chajju Ram Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC748", + "message": "Kotwali Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC749", + "message": "Malora Muhalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC75", + "message": "Indian Oil Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC750", + "message": "Nauhrian Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC751", + "message": "Kot Bahadur Khan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC752", + "message": "Sheikhan Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC753", + "message": "Sudan Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC754", + "message": "Deen Dayal Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC755", + "message": "Prem Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC756", + "message": "New Prem Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC757", + "message": "Sat Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC758", + "message": "Chandan Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC759", + "message": "Fateh Puri", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC76", + "message": "Green County", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC760", + "message": "Vikrampura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC761", + "message": "Subash Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC762", + "message": "Partap Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC763", + "message": "Purani Kachehri", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC764", + "message": "Piplan Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC765", + "message": "Chadhian Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC766", + "message": "Lawan Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC767", + "message": "Charjian Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC768", + "message": "Mitha Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC769", + "message": "Bhairon Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC77", + "message": "Ladhewali Pind", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC770", + "message": "Quilla Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC771", + "message": "Qazi Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC772", + "message": "Khingran Gate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC773", + "message": "Mughlan Dhiki", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC774", + "message": "Prem Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC775", + "message": "Purian Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC776", + "message": "Sehglan Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC777", + "message": "Modian Tod", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC778", + "message": "Thapra Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC779", + "message": "Mai Hiran Gate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC78", + "message": "Chokan Kalan Pind", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC780", + "message": "Phagwara Gate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC781", + "message": "Rasta Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC782", + "message": "Biliya Mandir", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC783", + "message": "Talhi Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC784", + "message": "Baghia Whra", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC785", + "message": "Quda Shah Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC786", + "message": "Phir Bodhla Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC787", + "message": "Kalo Vani Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC788", + "message": "Atari Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC789", + "message": "Nacha Badh Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC79", + "message": "Nagal Shama Pind", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC790", + "message": "Kanchia Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC791", + "message": "Qazi Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC792", + "message": "Qilla Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC793", + "message": "Shivraz Garh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC794", + "message": "Panj Peer Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC795", + "message": "Bhagat Singh Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC796", + "message": "Railway Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC797", + "message": "Rishi Nagar Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC798", + "message": "Partap Bagh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC799", + "message": "Awa Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC8", + "message": "Navjot Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC80", + "message": "Datar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC800", + "message": "Kot Kishan Chand", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC801", + "message": "Jagat Pura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC802", + "message": "Dhan Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC803", + "message": "Rishi Nagar (5 Gali)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC804", + "message": "Kishanpura (5 Gali)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC805", + "message": "Inderparsth Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC806", + "message": "Arya Samaj Mandir", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC807", + "message": "Bheem Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC808", + "message": "Sansi Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC809", + "message": "Dolatpuri", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC81", + "message": "Khehra Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC810", + "message": "Kapoor Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC811", + "message": "Ajit Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC812", + "message": "Amrik Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC813", + "message": "New Ajit Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC814", + "message": "New Amrik Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC815", + "message": "Baba Math Shah", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC816", + "message": "Santoshi Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC817", + "message": "Madrasi Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC818", + "message": "Qazi Mandi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC819", + "message": "Kishan Pura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC82", + "message": "Kabir Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC820", + "message": "Hoshiarpur Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC821", + "message": "Old Hoshiarpur Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC822", + "message": "Baldev Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC823", + "message": "New Baldev Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC824", + "message": "Baba Balak Nath Market", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC825", + "message": "Madrasi Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC826", + "message": "Ravidass School Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC827", + "message": "Dhonka Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC828", + "message": "Prithvi Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC829", + "message": "New Prithvi Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC83", + "message": "Kabir Avenue Extension", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC830", + "message": "Lambapind Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC831", + "message": "Dutta Street", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC832", + "message": "Raman Shiv Mandir Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC833", + "message": "Ajit Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC834", + "message": "Balmiki Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC835", + "message": "Vivek Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC836", + "message": "New Vivek Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC837", + "message": "Arjun Singh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC838", + "message": "Jaimal Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC839", + "message": "Durga Mandir Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC84", + "message": "Punjab Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC840", + "message": "Vinay Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC841", + "message": "Akash Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC842", + "message": "Arjun Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC843", + "message": "Jaimal Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC844", + "message": "Upkar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC845", + "message": "New Upkar Nargar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC846", + "message": "Ghandi Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC847", + "message": "New Ghandi Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC848", + "message": "Chakk Hussaina", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC849", + "message": "Hoshiarpur Road Lamba Pind(Left Side)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC85", + "message": "Punjab Avenue Extension", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC850", + "message": "Muslim Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC851", + "message": "New Vinay Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC852", + "message": "Hans Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC853", + "message": "New Santokhpura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC854", + "message": "Durga Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC855", + "message": "Sarabha Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC856", + "message": "Guru Ram Dass Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC857", + "message": "Niwi Abadi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC858", + "message": "Lakshmipura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC859", + "message": "New Lakshmipura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC86", + "message": "Dhaliwal Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC860", + "message": "Vij Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC861", + "message": "Sant Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC862", + "message": "Bhagatpura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC863", + "message": "Jeet Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC864", + "message": "Vikaspuri", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC865", + "message": "New Vikaspuri", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC866", + "message": "Ambika Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC867", + "message": "B.D.Steel", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC868", + "message": "Santokhpura Nivi Abadi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC869", + "message": "Basti Bhure Kha", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC87", + "message": "Himachal Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC870", + "message": "Shah Sikandar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC871", + "message": "Ram Gharia School", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC872", + "message": "Preet Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC873", + "message": "Basant Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC874", + "message": "New Basant Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC875", + "message": "Aman Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC876", + "message": "New Aman Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC877", + "message": "New colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC878", + "message": "Kamal Park", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC879", + "message": "Preet Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC88", + "message": "Green Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC880", + "message": "New Preet Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC881", + "message": "Sodal Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC882", + "message": "Sidh Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC883", + "message": "Ashok Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC884", + "message": "Ramco Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC885", + "message": "New Sodal Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC886", + "message": "Mathura Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC887", + "message": "Kot Baba Deep Singh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC888", + "message": "Tobari Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC889", + "message": "Tanda Road Hanuman Mandir Chowk to Tanda Road Railway Crossing", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC89", + "message": "Sunshine Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC890", + "message": "Shah Sikandar Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC891", + "message": "Kailash Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC892", + "message": "New Kailash Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC893", + "message": "New Kailash Nagar Ext.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC894", + "message": "Gobind Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC895", + "message": "New Gobind Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC896", + "message": "J.M.C Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC897", + "message": "Gujja Peer Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC898", + "message": "Amar Garden", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC899", + "message": "Saipur Kalan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC9", + "message": "New Guru Amar Das Extension Paschim", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC90", + "message": "Silver Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC900", + "message": "Sanjay Gandhi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC901", + "message": "Dada Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC902", + "message": "Saini Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC903", + "message": "Chotta Saipur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC904", + "message": "Hari Singh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC905", + "message": "Shashi Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC906", + "message": "Lathi Mar Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC907", + "message": "Sodal Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC908", + "message": "Gujja Peer Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC909", + "message": "Sodal Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC91", + "message": "Randhawa Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC910", + "message": "Laxmi Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC911", + "message": "Kali Mata Mandir Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC912", + "message": "Bhagat Singh Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC913", + "message": "Baba Balak Nath Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC914", + "message": "Shiv Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC915", + "message": "Canal Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC916", + "message": "Industrial Area", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC917", + "message": "Dada Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC918", + "message": "Chota Saipur Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC919", + "message": "Shiv Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC92", + "message": "Lahora Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC920", + "message": "Brij Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC921", + "message": "Gajji Gulla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC922", + "message": "Parbhat Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC923", + "message": "Ram Nagar Railway", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC924", + "message": "Crossing to Gajji Gujja Chowk Left Side", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC925", + "message": "Industrial Area Ext.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC926", + "message": "Canal Industrial Complex", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC927", + "message": "Gandhi Camp", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC928", + "message": "Gurdev Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC929", + "message": "Gopal Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC93", + "message": "Nanak Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC930", + "message": "Satnam Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC931", + "message": "Sawan Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC932", + "message": "Valmiki Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC933", + "message": "New Grain Market", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC934", + "message": "Jain Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC935", + "message": "New Gopal Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC936", + "message": "Neela Mahal", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC937", + "message": "Mohalla Krar Khan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC938", + "message": "Sangra Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC939", + "message": "Teacher Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC94", + "message": "Basant Hill", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC940", + "message": "Krishna Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC941", + "message": "Tobri Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC942", + "message": "Guru Nanak Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC943", + "message": "Harnamdasspura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC944", + "message": "Kot Lakhpat Rai", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC945", + "message": "Banda Bahadur Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC946", + "message": "Kapurthala Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC947", + "message": "Bagh Baharia", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC948", + "message": "Gulab Devi Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC949", + "message": "Bulton Park Cricket Stadium", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC95", + "message": "University Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC950", + "message": "Durga Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC951", + "message": "B.S.F Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC952", + "message": "Gopal Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC953", + "message": "New Colony Gopal Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC954", + "message": "Main Road Old Sabzi Mandi to Burton Park", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC955", + "message": "Sangat Singh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC956", + "message": "Balwant Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC957", + "message": "Bandha Bhadur Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC958", + "message": "Sarswati Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC959", + "message": "PNT Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC96", + "message": "Moti Bagh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC960", + "message": "Bagh Bharia", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC961", + "message": "Bhagwan Dass Pura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC962", + "message": "Dhiman Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC963", + "message": "Adresh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC964", + "message": "Natha Bagechi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC965", + "message": "Misson Compound", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC966", + "message": "Talab Bharia", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC967", + "message": "Jail Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC968", + "message": "Kabir Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC969", + "message": "Kachari Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC97", + "message": "Park Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC970", + "message": "Gandhi Camp 3 Lain", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC971", + "message": "Windsor Park", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC972", + "message": "Rose Park", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC973", + "message": "Jain Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC974", + "message": "Gupta Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC975", + "message": "Hardev Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC976", + "message": "Guru Nanak Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC977", + "message": "Guru Arjun Dev Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC978", + "message": "Sarswati Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC979", + "message": "Surjit Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC98", + "message": "Chopra Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC980", + "message": "Malak Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC981", + "message": "Kalyani Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC982", + "message": "Suriya Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC983", + "message": "Vivekananda Park", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC984", + "message": "Ariya Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC985", + "message": "Pingalwara", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC986", + "message": "Gujrati Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC987", + "message": "Shardha Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC988", + "message": "Sawarn Park", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC989", + "message": "Ram Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC99", + "message": "Dr. Ambedkar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC990", + "message": "Chhota Gandhi Nagar Camp", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC991", + "message": "Friends Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC992", + "message": "Seth Hukam Chand Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC993", + "message": "Greater Kailash", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC994", + "message": "Moti Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC995", + "message": "New Moti Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC996", + "message": "Tagore Park/ Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC997", + "message": "Professor Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC998", + "message": "Maqsudan Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "JLC999", + "message": "Bohar Wala Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "Jalandhar", + "message": "Jalandhar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "LABEL", + "message": " ", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "LABEL_FOR_POSTED_BY", + "message": "Document Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "LABEL_FOR_ULB", + "message": "ULB", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "LANGUAGE_EN", + "message": "English", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "LANGUAGE_EN_IN", + "message": "English", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "LANGUAGE_GR", + "message": "Gujarati", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "LANGUAGE_HI_IN", + "message": "Hindi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "LANGUAGE_HN", + "message": "Hindi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "LANGUAGE_OD_IN", + "message": "Odia", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "LANGUAGE_PN", + "message": "Punjabi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "LANGUAGE_PN_IN", + "message": "ਪੰਜਾਬੀ", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "LANGUAGE_od_IN", + "message": "Hindi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "LEGACY_ENTRY", + "message": "Legacy Entry", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "LMEPERFORMANCEREPORT", + "message": "LME Performance Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "LOCALITY_IS_REQUIRED", + "message": "Locality is required", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "LOGIN_INVALID_OTP", + "message": "Invalid OTP!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "LONG_ANSWER_TYPE", + "message": "Paragraph", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MALE", + "message": "Male", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MALE_MULIA", + "message": "Male mulia", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MANUALEXPIRED", + "message": "Manual Expired", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MAP_CLOSE_LABEL", + "message": "CLOSE", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MAP_PICK_LABEL", + "message": "PICK", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MASON", + "message": "Mason", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MASTERS_EFFECTIVE_FROM", + "message": "Effective From", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MASTERS_EFFECTIVE_TO", + "message": "Effective To", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MASTERS_ORGANISATION_ID", + "message": "Organization ID", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MASTERS_WAGESEEKER_ID", + "message": "Wage seeker ID", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MASTERS_WAGESEEKER_NAME", + "message": "Wage seeker name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MAX_AADHAAR_CHARCTERS_REQUIRED", + "message": "Aadhaar number should be of 12 digits", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MAX_ACCOUNT_NO_CHARACTERS_REQUIRED", + "message": "Account number should be maximum of 18 characters", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MAX_FATHER_CHARCTERS_REQUIRED", + "message": "Father Name should be maximum of 128 characters", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MAX_MOBILE_CHARCTERS_REQUIRED", + "message": "Mobile number should be of 10 digits", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MAX_NAME_CHARCTERS_REQUIRED", + "message": "Name should be maximum of 128 characters", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MCOLLECT", + "message": "Miscellaneous Collection", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MCOLLECTCHALLANREGISTER", + "message": "Challan Register", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MCOLLECTCOLLECTIONREPORT", + "message": "Collection Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MCOLLECTRECEIPTREGISTER", + "message": "Receipt Register", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MCOLLECTRECEIPTtREGISTER", + "message": "Receipt Register", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MCOLLECT_FAQ_ANS_ONE", + "message": "Challan is a demand notice issued to the citizen for availing the service of the governing body. Challan can be paid for categories like advertising fees, marriage hall booking etc.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MCOLLECT_FAQ_ANS_THREE", + "message": "Yes. Challans can be paid online or at the counter. Please use the challan reference number or phone number to search for the challan & pay online.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MCOLLECT_FAQ_ANS_TWO", + "message": "The timeline within which the challan amount has to be paid. This is usually decided by the governing body.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MCOLLECT_FAQ_QUES_ONE", + "message": "What is a Challan? ", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MCOLLECT_FAQ_QUES_THREE", + "message": "Can the challan be paid online?", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MCOLLECT_FAQ_QUES_TWO", + "message": "What is validity period for a challan?", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MCOLLECT_FAQ_S", + "message": "FAQs", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MCollectChallanRegister", + "message": "Challan Register", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MCollectCollectionReport", + "message": "Collection Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MCollectReceiptRegister", + "message": "Receipt Register", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MDMS_ADD_V2", + "message": "Add Master Data", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MDMS_SEARCH_V2", + "message": "Search Master Data", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MDMS_VIEW", + "message": "View Master Data", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MESSAGE_ADD_SUCCESS_MESSAGE_MAIN", + "message": "Message published successfully", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MESSAGE_ADD_SUCCESS_MESSAGE_SUB", + "message": " ", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MESSAGE_CANCEL_BUTTON", + "message": "CANCEL", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MESSAGE_DELETE_BUTTON_LABEL", + "message": "DELETE MESSAGE", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MESSAGE_DELETE_SUCCESS_LABEL", + "message": "Deleted Successfully!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MESSAGE_DELETE_SUCCESS_MESSAGE_MAIN", + "message": "Message deleted Successfully", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MESSAGE_SAVE_BUTTOM", + "message": "SAVE", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MESSAGE_UPDATE_SUCCESS_LABEL", + "message": "Updated Successfully!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MESSAGE_UPDATE_SUCCESS_MESSAGE_MAIN", + "message": "Message updated Successfully", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MINUCIPALITY", + "message": "नगर पालिका", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MIN_AADHAAR_CHARCTERS_REQUIRED", + "message": "Aadhaar number should be of 12 digits", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MIN_ACCOUNT_NO_CHARACTERS_REQUIRED", + "message": "Account number should be minimum of 9 characters", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MIN_FATHER_CHARCTERS_REQUIRED", + "message": "Father Name should be minimum of 2 characters", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MIN_MOBILE_CHARCTERS_REQUIRED", + "message": "Mobile number should be of 10 digits", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MIN_NAME_CHARCTERS_REQUIRED", + "message": "Name should be minimum of 2 characters", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MIN_SEARCH_CRITERIA_MSG", + "message": "Please enter minimum 1 search criteria", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MISCBUSINESSSERVICECOLLECTIONTENANT", + "message": "Service Collection Tenant", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MISCRECEIPTCB", + "message": "Consumer Receipts", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MISCRECEIPTREGISTER", + "message": "Receipt Register", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MOBILE_NUMBER_IS_REQUIRED", + "message": "Mobile number is required", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODIFICATIONS_EFFECTIVE_DATE", + "message": "Modify Effective Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODIFYING_PROPERTY_DETAILS", + "message": "Modifying Property Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODIFYING_PROPERTY_DETAILS_VIDEO_DESC", + "message": "Modify Property details by navigating to Property details page", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_-1", + "message": "Negative Test Property", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_1", + "message": "TEST Property", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_ADMN", + "message": "Admin Fees", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_ADMN_ELECTION_RALLY_FEES", + "message": "Election rally fees", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_ADMN_NO_DUES_CERTIFICATE", + "message": "NDC - No Dues Certificate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_ADMN_PARKING_BOOKING_FEE", + "message": "Parking Booking Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_ADMN_PARKING_DURING_ELECTION", + "message": "Parking during election", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_ADMN_ROAD_SHOW", + "message": "Road show", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_ADMN_RTI", + "message": "RTI", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_ADVT", + "message": "Advertisement Fee (OMD)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_ADVT_CANOPY_FEE", + "message": "Canopy Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_ADVT_GAS_BALLOON_ADVERTISEMENT", + "message": "Gas Balloon Advertisement", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_ADVT_HOARDINGS", + "message": "Hoardings ", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_ADVT_LIGHT_WALA_BOARD", + "message": "Light Wala Board", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_ADVT_OUTDOOR_MEDIA_DISPLAY_FEE", + "message": "Outdoor Media Display Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_ADVT_UNIPOLLS", + "message": "Unipolls", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_ADVT_WALL_PAINT_ADVERTISEMENT", + "message": "Wall Paint Advertisement", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_BILLS", + "message": "Bills", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_BIRTH_CERT", + "message": "Birth Certificate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_BPAREG", + "message": "BPA Stakeholder Registration", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_BPA_LOW_RISK_PERMIT_FEE", + "message": "Permit Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_BPA_NC_APP_FEE", + "message": "Application Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_BPA_NC_OC_APP_FEE", + "message": "Application Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_BPA_NC_OC_SAN_FEE", + "message": "Deviation Penality", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_BPA_NC_SAN_FEE", + "message": "Sanction Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_CH", + "message": "Challans", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_CH_BIDI_&_CIGRETTE_CHALLAN", + "message": "Bidi & Cigrette Challan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_CH_CATTLE_CHALLAN", + "message": "Cattle Challan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_CH_CHALLAN_FOR_MISUSE_OF_WATER", + "message": "Challan for Misuse of Water", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_CH_DAIRY_ANIMALS_CHALLAN", + "message": "Dairy Animals Challan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_CH_DENGUE_CHALLAN", + "message": "Dengue Challan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_CH_LITTERING_CHALLAN", + "message": "Littering Challan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_CH_PLASTIC_CHALLAN", + "message": "Plastic Challan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_CH_REHRI_CHALLAN", + "message": "Rehri Challan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_CH_SANTITATION_DUMPING_GARBAGE", + "message": "Santitation dumping garbage", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_CH_SBM_GARBAGE_PLASTIC_POLYTHENE_CHALLAN", + "message": "SBM garbage plastic polythene challan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_COMMONPT", + "message": "Property tax", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_CSS", + "message": "Cess", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_CSS_COW_CESS", + "message": "Cow Cess", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_CSS_LABOR_CESS", + "message": "Labor Cess", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_DEATH_CERT", + "message": "Death Certificate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_FIRENOC", + "message": "Fire No Objection Certificate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_FN", + "message": "Finance Fees", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_FN_ADVANCE_PROVIDENT_FUND", + "message": "Advance Provident Fund", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_FN_CPF_RECEIVED_CHECK", + "message": "CPF received check", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_FN_GPF", + "message": "GPF", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_FN_GRANTS_CHEQUE", + "message": "Grants cheque", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_FN_PF_TRANSFER_(ACCOUNTS)", + "message": "PF transfer (Accounts)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_FN_RECOVERY_EMPLOYEE/CONTRACTOR", + "message": "Recovery employee/contractor", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_FN_RECOVERY_EMPLOYEE_CONTRACTOR", + "message": "Recovery employee contractor", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_FSM_TRIP_CHARGES", + "message": "Emptying of Septic tank / Pit", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_FTP", + "message": "Fee Town Planning", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_FTP_ARCHITECT_LICENSE_FEE", + "message": "Architect license fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_FTP_BUILDING_PLANNER_RENEW", + "message": "Building planner renew", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_FTP_COMPREMASING_FEES", + "message": "Compremasing fees", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_FTP_CONSTRUCTION_WASTE", + "message": "Construction Waste", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_FTP_DEMOLITION_WASTE", + "message": "Demolition Waste", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_FTP_DRAFTSMEN_FEES", + "message": "Draftsmen fees", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_FTP_LEAVE_ENCASHMENT_AND_GRATUTY", + "message": "Leave encashment and gratuty", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_FTP_LICENSE_FEES_BUILDING_BRANCH", + "message": "License fees building branch", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_FTP_TELECOM_TOWER_FEES", + "message": "Telecom tower fees", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_LCF", + "message": "License Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_LCF_MANUAL_RIKSHAW", + "message": "Manual Rikshaw ", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_MCOLLECT", + "message": "M-Collect", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_NKS", + "message": "Naksha/Building Manual Fees", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_NKS_2_YEAR_TIME_LIMIT_OF_RENEWAL_BUILDING_NAKSHA", + "message": "2 year time limit of Renewal Building Naksha", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_NKS_ALTERATION_ADDITIONAL_CHARGE", + "message": "Alteration additional charge", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_NKS_BOUNDARY_WALL_FEES", + "message": "Boundary Wall Fees", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_NKS_BUILDING_FEES", + "message": " Building Fees", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_NKS_CHANGE_OF_LAND_USE_FEES", + "message": "Change Of Land Use Fees", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_NKS_COLONY_SAMBANDHI_FEES", + "message": "Colony Sambandhi fees", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_NKS_DEVELOPMENT_FEES", + "message": "Development Fees", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_NKS_HADUD_CERTIFICATE_FEES", + "message": "Hadud Certificate Fees", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_NKS_MALBA_FEES", + "message": "Malba Fees", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_NKS_NAKSHA_CHANGES", + "message": "Naksha changes ", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_NKS_NAKSHA_FEES", + "message": "Naksha fees", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_NKS_NAKSHA_RENEW_FEES", + "message": "Naksha renew fees", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_NKS_NAKSHA_SAMJOTA_FEES", + "message": "Naksha samjota fees", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_NKS_NOC/COMPLETION_OF_BUILDING_APPROVAL", + "message": "NOC/Completion of building approval", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_NKS_NOC_COMPLETION_OF_BUILDING_APPROVAL", + "message": "NOC completion of building approval", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_NKS_NO_DUE_CERTIFICATE_FEES", + "message": "No Due Certificate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_NKS_OUTDOOR_BUILDING_FEES", + "message": "Outdoor Building Fees", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_NKS_RAIN_HARVESTING_CHARGES", + "message": "Rain Harvesting Charges", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_NKS_REGULARISATION_OF_BUILDINGS", + "message": "Regularisation of Buildings", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_NKS_UNDER_DEVELOPMENT_FEES", + "message": "Under Development Fees", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_OBPS", + "message": "Online Building Permit System", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_OM", + "message": "O&M Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_OM_PLUMBER_LICENSE_FEE", + "message": "Plumber License Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_OM_ROAD_CUT_FEES", + "message": "Road Cut Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_OM_WATER_CONNECTION/DISCONNECTION_FEES", + "message": "Water connection/disconnection fees", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_OM_WATER_CONNECTION_DISCONNECTION_FEES", + "message": "Water connection disconnection fees", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_OTHER", + "message": "Other Fees", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_OTHER_BUS_ADDA_FEE", + "message": "Bus Adda Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_OTHER_FIRE_CALL_REPORT_FEE", + "message": "Fire Call Report Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_OTHER_FIRE_NOC_FEE", + "message": "Fire NOC Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_OTHER_FIRE_TENDER_FEE", + "message": "Fire Tender Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_OTHER_MISC_CHALLANS", + "message": "Misc. Challans", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_OTHER_NOC_FEE", + "message": "NOC Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_OTHER_NO_DUE_CERTIFICATE_ELECTRICITY", + "message": "No due certificate electricity", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_OTHER_OTHERS_FEE", + "message": "Others Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_OTHER_REGISTERY_AND_BANK_LOAN", + "message": "Registery and bank loan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_OTHER_WATER_CHARGES", + "message": "Water Charges", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_PGR", + "message": "Citizen Complaint Resolution System", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_PT", + "message": "Property Tax", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_PT_MUTATION", + "message": "Transfer of Ownership", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_RT", + "message": "Rents", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_RT_COMMERCIAL_USE_OF_MUNICIPAL_LAND", + "message": "Commercial Use of Municipal Land", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_RT_COMMUNITY_CENTRE_BOOKING_FEE", + "message": "Community Centre Booking Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_RT_JAMIN_THEKA", + "message": "Jamin Theka", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_RT_LAND_RENT", + "message": "Land Rent ", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_RT_MUNICIPAL_SHOPS_RENT", + "message": "Municipal Shops Rent", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_RT_PARKING_FEE", + "message": "Parking Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_RT_STREET_VENDOR", + "message": "Street Vendor", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_RT_TOWER_ANNUAL_RENT", + "message": "Tower Annual Rent", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_RT_TOWER_INSTALLATION", + "message": "Tower Installation", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_RT_TOWER_RENT", + "message": "Tower Rent", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_SERVICETYPE", + "message": "Service type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_SNT", + "message": "Sanitation", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_SNT_CLEAN_SAFAI_SANITATION", + "message": "Clean/Safai Sanitation", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_SNT_DEAD_ANIMALS_CONTRACT", + "message": "Dead animals contract", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_SNT_LICENCE_PURE_FOOD", + "message": "Licence Pure food", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_ST", + "message": "Stationary ", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_ST_EXPENDITURE_SANTITATION_NOT_INCOME", + "message": "Expenditure santitation (Not Income)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_ST_STATIONARY_NOT_INCOME", + "message": "Stationary (Not Income)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_SW", + "message": "Sewerage", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_SW_ONE_TIME_FEE", + "message": "SEWERAGE", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_TB", + "message": "Tehbazaari Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_TB_ADVERTISEMENT_FEE", + "message": "Advertisement fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_TB_CHALLAN_UNDER_SECTION_156", + "message": "Challan Under section 156,121 etc", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_TB_REHRI_CHALLAN", + "message": "Rehri Challan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_TB_TEHBAZAARI", + "message": "Tehbazaari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_TEHBAZAARI_FEE_CHALLAN_UNDER_SECTION_156", + "message": "Challan Under section 156,121 etc", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_TL", + "message": "Trade License", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_TX", + "message": "Tax", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_TX_ELECTRICITY_CHUNGI", + "message": "Electricity Chungi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_TX_HOUSE_TAX", + "message": "House Tax", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_TX_NO_DUES_CERTIFICATE", + "message": "NDC - No Dues Certificate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_TX_PROPERTY_TAX_2013_14", + "message": "Property Tax 2013-14", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_TX_TRANSFER_PROPERTY_FEES", + "message": "Transfer Property Fees", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_TX_TS1_COPY_REGISTER_FOR_OLD_SURVEY", + "message": "TS1 copy register for old survey", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_WF", + "message": "Work Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_WF_CONTRACTOR_ENLISTMENT", + "message": "Contractor Enlistment", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_WF_OFC_PERMISSION_FEES", + "message": "OFC Permission fees", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_WF_TENDER_FORM_FEE", + "message": "Tender Form Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_WS", + "message": "Water", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE_WS_ONE_TIME_FEE", + "message": "WATER", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MODULE__1", + "message": "Negative Test Property", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MOVABLE___HDV", + "message": "Movable / Hand Driven Vehicle", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MOVABLE___MDV", + "message": "Movable / Motor Driven Vehicle", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MP_BHOPAL", + "message": "Bhopal", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MP_Indore", + "message": "Indore", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MSEVA_EVENTCATEGORIES_CULTURAL", + "message": "Cultural", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MSEVA_EVENTCATEGORIES_PUBLICHEALTH", + "message": "Public Health", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MSEVA_EVENTCATEGORIES_WARDCOMMITTEEMEETING", + "message": "Ward Committee Meeting", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MUKTA", + "message": "MUKTA", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MULTIPLE", + "message": "Multiple", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MULTIPLE_ANSWER_TYPE", + "message": "Multiple choice", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MUSTER_ROLL_PERIOD", + "message": "Muster Roll Period", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MUSTOR_APPROVAL_CHECKBOX", + "message": "Muster roll has been verified against Measurement Book. Once approved Payment Advice will be generated and send to JIT-FS for payment processing. ", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MYCITY_CODE_LABEL", + "message": "City", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MYCITY_DISTRICTCODE_LABEL", + "message": "District", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MYCITY_FEMALEPOPULATION_LABEL", + "message": "Female Population", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MYCITY_LANGUAGESSPOKEN_LABEL", + "message": "Languages spoken", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MYCITY_LITERACYRATE_LABEL", + "message": "Literacy Rate(%)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MYCITY_MALEPOPULATION_LABEL", + "message": "Male Population", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MYCITY_PB_LABEL", + "message": "Odissa", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MYCITY_POPULATION_LABEL", + "message": "Population", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MYCITY_STATEA_LABEL", + "message": "State A", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MYCITY_STATECODE_LABEL", + "message": "State", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MYCITY_WORKINGPOPULATION_LABEL", + "message": "Working Population(%)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "MY_WORKS", + "message": "My Works", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NAME_IS_REQUIRED", + "message": "Name is required", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NAME_OF_WAGE_SEEKER", + "message": "Name of the wage seeker", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NAME_REQUIRED", + "message": "Name Required", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NATIONAL_DSS_OVERVIEW_CITIZEN_FEEDBACK_SCORE", + "message": "Citizen Feedback Score", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NATIONAL_DSS_OVERVIEW_PENDANCY", + "message": "Pendancy", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NATIONAL_DSS_PROPERTY_TAX_DASHBOARD", + "message": "Property Tax Dashboard", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NATIONAL_DSS_PT_CITIZEN_FEEDBACK_SCORE", + "message": "Citizen Feedback Score", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NATIONAL_DSS_PT_CITIZEN_SERVICE_DELIVERY_INDEX", + "message": "Citizen Delivery Index", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NATIONAL_DSS_PT_PENDANCY", + "message": "Pendancy", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NATIONAL_DSS_PT_SLA_ACHIEVED", + "message": "Aggregated SLA", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NAWANSHAHR ULBGRADE_MC_CLASS I", + "message": "NAWANSHAHR MUNICIPAL COUNCIL ", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NEW", + "message": "New", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NEWTL-APPLIED", + "message": "New TL-Applied", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NEWTL-APPROVED", + "message": "New TL-Approved", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NEWTL-CANCELLED", + "message": "New TL-Cancelled", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NEWTL-CITIZENACTIONREQUIRED", + "message": "New TL-Citizen Action Required", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NEWTL-EXPIRED", + "message": "New TL-Expired", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NEWTL-FIELDINSPECTION", + "message": "New TL-Pending For Field Inspection", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NEWTL-INITIATED", + "message": "New TL-Intiated", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NEWTL-MANUALEXPIRED", + "message": "New TL-Manual Expired", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NEWTL-PENDINGAPPROVAL", + "message": "New TL-Pending For Approval", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NEWTL-PENDINGPAYMENT", + "message": "New TL-Pending For Payment", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NEWTL-REJECTED", + "message": "New TL-Rejected", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NEW_CHALLAN_BUTTON", + "message": "New Challan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NEW_CONSTRUCTION", + "message": "New Construction", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NEW_DOCUMENT", + "message": "Document", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NEW_DOCUMENT_TEXT", + "message": "Add new document", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NEW_FSM_SMS_ASSING_DSO_PAY", + "message": "Dear Applicant, Amount of Rs.{#var#}/- is received towards the payment of cleaning septic tank /pit with reference no. {#var#}. You will be notified when an operator is assigned to a request. Please click this link {#var#}{#var#} to download the receipt.EGOVS", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NEW_FSM_SMS_CANCELED_CANCEL", + "message": "Dear Applicant, Your request for cleaning the septic tank/pit is cancelled with the reason {#var#}{#var#} . Please use this link {#var#}{#var#} to create a new request if needed.EGOVS", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NEW_FSM_SMS_CITIZEN_FEEDBACK_PENDING_COMPLETED", + "message": "Dear Applicant, Your request for cleaning septic tank/pit is completed. Please take some time to rate us using the link {#var#}{#var#}.EGOVS", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NEW_FSM_SMS_CREATED_CREATE", + "message": "Dear Applicant,Your application for cleaning septic tank/pit is created with application reference no.{#var#}.You will be notified to make an application fee shortly.Request is expected to be completed within {#var#}hrs of making the payment.EGOVS", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NEW_FSM_SMS_PENDING_APPL_FEE_PAYMENT_APPLY", + "message": "Dear Applicant, Your application for cleaning septic tank /pit is created with application number {#var#}.Please click this link {#var#}{#var#} to pay the application fee for processing the application.Request is expected to be completed within {#var#}hrs of making the payment.EGOVS", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NEW_FSM_SMS_PENDING_APPL_FEE_PAYMENT_SUBMIT", + "message": "Dear Applicant, Please pay the application fee Rs.{#var#}/- for cleaning the septic tank/pit with request number {#var#}.Click this link {#var#}{#var#} to make the payment.Request is expected to be completed within {#var#}hrs of making the payment.EGOVS", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NEW_FSM_SMS_REJECTED_REJECT", + "message": "Dear Applicant, Your request for cleaning the septic tank/pit is rejected with the reason {#var#}{#var#} . Please use this link {#var#}{#var#} to create a new request if needed.EGOVS", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NEW_PUBLIC_MESSAGE_BUTTON_LABEL", + "message": "New Public Message", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NEW_SEWERAGE_CONNECTION", + "message": "sewerage", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NEW_SURVEY", + "message": "New Survey", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NEW_TEST", + "message": "new-test", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NEW_WATER_CONNECTION", + "message": "Water Connection", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC.AIRPORT.CERTIFICATE", + "message": "Airport Noc Certificate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC.FIRE.CERTIFICATE", + "message": "Fire No Objection Certificate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_AGRICULTURE_LANDUSE", + "message": "Agriculture Landuse", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_AGRICULTURE_WATERBODY_FTL", + "message": "Agriculture Water body FTL", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_AIRPORT", + "message": "Airport", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_AIRPORT_CERTIFICATE", + "message": "Airport Certificate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_APPLICANT_CORRESPONDENCE_ADDRESS_LABEL", + "message": "Correspondence Address", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_APPLICANT_DETAILS_HEADER", + "message": "Owner Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_APPLICANT_DOB_LABEL", + "message": "Date Of Birth", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_APPLICANT_EMAIL_LABEL", + "message": "Email", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_APPLICANT_MOBILE_NO_LABEL", + "message": "Mobile No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_APPLICANT_NAME_LABEL", + "message": "Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_APPLICANT_PAN_LABEL", + "message": "PAN No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_APPLICANT_RELATIONSHIP_FATHER_RADIOBUTTON", + "message": "Father", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_APPLICANT_RELATIONSHIP_HUSBAND_RADIOBUTTON", + "message": "Husband", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_APPLICANT_RELATIONSHIP_LABEL", + "message": "Relationship", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_APPLICATION_BUTTON_DOWN_CONF", + "message": "DOWNLOAD CONFIRMATION FORM", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_APPLICATION_BUTTON_PRINT_CONF", + "message": "PRINT CONFIRMATION FORM", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_APPLICATION_SUCCESS_MESSAGE_MAIN", + "message": "Application Submitted Successfully", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_APPLICATION_SUCCESS_MESSAGE_SUB", + "message": "A notification regarding Application Submission has been sent to building owner at registered Mobile No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_COMMON_BUTTON_HOME", + "message": "GO TO HOME", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_COMMON_BUTTON_PREV_STEP", + "message": "Previous Step", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_COMMON_BUTTON_PRINT", + "message": "Print", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_COMMON_BUTTON_SUBMIT", + "message": "SUBMIT", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_COMMON_PROPERTY_LOCATION_SUMMARY", + "message": "Property Location Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_COMMON_TABLE_COL_APP_DATE_LABEL", + "message": "Application Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_COMMON_TABLE_COL_APP_NO", + "message": "Application No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_COMMON_TABLE_COL_NOC_NO_LABEL", + "message": "NOC No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_COMMON_TABLE_COL_OWN_NAME_LABEL", + "message": "Applicant Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_COMMON_TABLE_COL_STATUS_LABEL", + "message": "Status", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_DOCUMENT_DETAILS_BUTTON_UPLOAD_FILE", + "message": "UPLOAD FILE", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_DOCUMENT_DETAILS_HEADER", + "message": "Required Documents", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_DOCUMENT_DETAILS_SUBTEXT", + "message": "Only one file can be uploaded for one document. If multiple files need to be uploaded then please combine all files in a pdf and then upload", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_ENTER_APPLICANT_CORRESPONDENCE_ADDRESS_PLACEHOLDER", + "message": "Enter Correspondence Address", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_ENTER_APPLICANT_DOB_PLACEHOLDER", + "message": "DD/MM/YYYY", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_ENTER_APPLICANT_EMAIL_PLACEHOLDER", + "message": "Enter Email", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_ENTER_APPLICANT_MOBILE_NO_PLACEHOLDER", + "message": "Enter Mobile No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_ENTER_APPLICANT_NAME_PLACEHOLDER", + "message": "Enter Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_ENTER_APPLICANT_PAN_PLACEHOLDER", + "message": "Enter Applicant's PAN No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_FEE_ESTIMATE_HEADER", + "message": "Fee Estimate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_FIRE", + "message": "Fire", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_FIRE_CERTIFICATE", + "message": "Fire No Objection Certificate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_FORWARD_SUCCESS_MESSAGE_MAIN", + "message": "Application Forwarded Successfully", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_FROM_DATE_LABEL", + "message": "From Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_FROM_DATE_PLACEHOLDER", + "message": "From Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_HOME_SEARCH_RESET_BUTTON", + "message": "Reset", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_HOME_SEARCH_RESULTS_APP_NO_LABEL", + "message": "Application number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_HOME_SEARCH_RESULTS_APP_NO_PLACEHOLDER", + "message": "Enter Application number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_HOME_SEARCH_RESULTS_BUTTON_SEARCH", + "message": "SEARCH", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_HOME_SEARCH_RESULTS_DESC", + "message": "Provide at least one parameter to search for an application", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_HOME_SEARCH_RESULTS_NEW_APP_BUTTON", + "message": "NEW APPLICATION", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_HOME_SEARCH_RESULTS_OWN_MOB_LABEL", + "message": "Mobile Number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_HOME_SEARCH_RESULTS_OWN_MOB_PLACEHOLDER", + "message": "Enter your mobile No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_HOME_SEARCH_RESULTS_TABLE_HEADING", + "message": "Search Result of Application", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_INPROGRESS", + "message": "INPROGRESS", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_OWNER_INFORMATION", + "message": "Owner Information", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_OWNER_INFO_TITLE", + "message": "Owner Information", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_PAYMENT_BANK_BRANCH_LABEL", + "message": "Bank Branch", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_PAYMENT_BANK_BRANCH_PLACEHOLDER", + "message": "Enter bank branch", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_PAYMENT_BANK_NAME_LABEL", + "message": "Bank Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_PAYMENT_BANK_NAME_PLACEHOLDER", + "message": "Enter bank name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_PAYMENT_CAP_PMT", + "message": "Capture Payment", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_PAYMENT_CARD_LAST_DIGITS_LABEL", + "message": "Last 4 digits", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_PAYMENT_CARD_LAST_DIGITS_LABEL_PLACEHOLDER", + "message": "Enter Last 4 digits of the card", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_PAYMENT_CHEQUE_DATE_LABEL", + "message": "Cheque Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_PAYMENT_CHEQUE_DATE_PLACEHOLDER", + "message": "dd/mm/yy", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_PAYMENT_CHQ_NO_LABEL", + "message": "Cheque No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_PAYMENT_CHQ_NO_PLACEHOLDER", + "message": "Enter Cheque no.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_PAYMENT_COLLECTION_SUCCESS_MESSAGE_MAIN", + "message": "Payment has been collected successfully!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_PAYMENT_COLLECTION_SUCCESS_MESSAGE_MAINB", + "message": "A notification regarding Application Submission has been sent to building owner at registered Mobile No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_PAYMENT_DD_DATE_LABEL", + "message": "DD Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_PAYMENT_DD_DATE_PLACEHOLDER", + "message": "dd/mm/yy", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_PAYMENT_DD_NO_LABEL", + "message": "DD No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_PAYMENT_DD_NO_PLACEHOLDER", + "message": "Enter DD no.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_PAYMENT_FAILURE_MESSAGE_MAIN", + "message": "Payment has failed!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_PAYMENT_FAILURE_MESSAGE_SUB", + "message": "A notification regarding payment failure has been sent to the building owner and applicant.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_PAYMENT_HEAD", + "message": "Payment Collection Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_PAYMENT_IFSC_CODE_LABEL", + "message": "IFSC", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_PAYMENT_IFSC_CODE_PLACEHOLDER", + "message": "Enter bank IFSC", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_PAYMENT_PAID_BY_LABEL", + "message": "Paid By", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_PAYMENT_PAID_BY_PLACEHOLDER", + "message": "Paid By", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_PAYMENT_PAYER_MOB_LABEL", + "message": "Payer Mobile No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_PAYMENT_PAYER_MOB_PLACEHOLDER", + "message": "Enter Payer Mobile No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_PAYMENT_PAYER_NAME_LABEL", + "message": "Payer Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_PAYMENT_PAYER_NAME_PLACEHOLDER", + "message": "Enter Payer Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_PAYMENT_PENALTY_REASON", + "message": "Adhoc Penalty Reason", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_PAYMENT_PENALTY_REASON_SELECT", + "message": "Adhoc Penalty Reason", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_PAYMENT_RCPT_DETAILS", + "message": "GEN/G8 Receipt Details (Optional)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_PAYMENT_RCPT_NO_LABEL", + "message": "GEN/G8 Receipt No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_PAYMENT_RCPT_NO_PLACEHOLDER", + "message": "Enter GEN/G8 Receipt No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_PAYMENT_REBATE_REASON", + "message": "Adhoc Rebate Amount", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_PAYMENT_REBATE_REASON_SELECT", + "message": "Adhoc Rebate Reason", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_PAYMENT_RECEIPT_ISSUE_DATE_LABEL", + "message": "GEN/G8 Receipt Issue Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_PAYMENT_RECEIPT_ISSUE_DATE_PLACEHOLDER", + "message": "dd/mm/yy", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_PAYMENT_RENTR_TRANS_LABEL", + "message": "Re-Enter Transaction No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_PAYMENT_RETRY", + "message": "RETRY", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_PAYMENT_SUCCESS_MESSAGE_MAIN", + "message": "Thank you for making Payment", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_PAYMENT_SUCCESS_MESSAGE_SUB", + "message": "A notification regarding Payment Collection has been sent to building owner at registered Mobile No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_PAYMENT_TRANS_NO_LABEL", + "message": "Transaction No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_PAYMENT_TRANS_NO_PLACEHOLDER", + "message": "Enter transaction no.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_PDF_APPLICATION_DATE", + "message": "Application Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_PDF_APPLICATION_NO", + "message": "Application No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_PROCEED_PAYMENT", + "message": "Proceed to payment", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_PROPERTY_LOCATION_DETAILS_HEADER", + "message": "Property Location Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_SEARCH_SELECT_AT_LEAST_ONE_TOAST_MESSAGE", + "message": "Please fill at least one field to start search", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_SUMMARY_EDIT", + "message": "Edit", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_SUMMARY_FEE_EST", + "message": "Fee Estimate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_TASK_DETAILS_HEADER", + "message": "Application details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_TO_DATE_LABEL", + "message": "To Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_TO_DATE_PLACEHOLDER", + "message": "To Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_TYPE_LABEL", + "message": "NOC Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOC_VERIFICATION_INPROGRESS", + "message": "NOC Verification Is InProgress", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NONE", + "message": "None of the above", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NONRESIDENTIAL.COMMERCIAL", + "message": "Commercial", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOTIF_TEST_RESULT_NOT_AS_PER_BENCHMARK", + "message": "Lab results submitted for plant {Plant Name} for {Output} of {Stage} stage submitted on {Test Submitted Date} is not as per benchmark values.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOTIF_TEST_RESULT_NOT_SUBMITTED", + "message": "Lab results for plant {Plant Name} for {Output} of {Stage} stage scheduled on {Test Scheduled Date} has not yet been submitted.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NOT_SUPPORTED_FILE_TYPE", + "message": "File type not supported", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NO_FILE_UPLOADED", + "message": "No file was uploaded", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NO_TERMS_AND_CONDITIONS", + "message": "No Terms and Conditions", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NSS_ACTUAL_NOC_ISSUED_USAGETYPE", + "message": "New Fire NOCs by Usage Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NSS_WS_DASHBOARD", + "message": "Water & Sewerage Dashboard", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NURT_COMPLAINS", + "message": "Citizen Complaint Resolution System", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NURT_DASHBOARD", + "message": "National Urban Real-Time Dashboard", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NURT_FIRENOC", + "message": "Fire No Objection Certificate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NURT_MCOLLECT", + "message": "Miscellaneous Collection", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NURT_OVERVIEW", + "message": "Overview", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NURT_PROPERTY_TAX", + "message": "Property tax", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NURT_TRADE_LICENCE", + "message": "Trade licence", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NURT_WATER_SEWERAGE", + "message": "Water & Sewerage", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "Nawanshahr", + "message": "Nawanshahr", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "New TL", + "message": "New", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "NewTL", + "message": "New TL", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "OBPS", + "message": "Online Building Plan Approval System", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "OBPSAPPLICATIONSTATUSREPORT", + "message": "OBPS Application Status Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "OBPSDAILYCOLLECTIONREPORT", + "message": "OBPS Daily Collection Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "OBPS_DOCS_FILE_SIZE", + "message": "Maximum file size allowed is 5MB.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "OBPS_FAQ_S", + "message": "FAQs", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "OF_BILL_GEN_TO_AVOID_LATE_FEE", + "message": "of bill generation to avoid late fee.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ONE_OF_THESE_DOC_NEEDED", + "message": "One of these documents is needed to apply for this Service", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ONLINE", + "message": "Online", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ORG_CLASS_OR_RANK", + "message": "Class / Rank", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ORG_CONTACT_DETAILS", + "message": "Contact Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ORG_CONTACT_PERSON_NAME", + "message": "Contact person name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ORG_FUNC_CAT", + "message": "Functional Category", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ORG_FUNC_DETAILS", + "message": "Functional Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ORG_PROFILE", + "message": "Org Profile", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ORG_SUB_TYPE", + "message": "Organisation Sub Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ORG_TYPE", + "message": "Organisation Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ORG_VALIDATION_ERROR_DEPT", + "message": "Invalid Department Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ORG_VALID_FROM", + "message": "Valid from", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ORG_VALID_TO", + "message": "Valid To", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "OTHERS", + "message": "Others", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "OTHERS.BORING_MISTRY", + "message": "Boring - Mistry", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "OTHERS.HELPER_WELL_SINKER", + "message": "Helper to Well Sinker", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "OTHERS.WINCH_OPERATOR", + "message": "Winch - Operator", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "OTHERS_BORING_MISTRY", + "message": "Boring - Mistry", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "OTHERS_HELPER_WELL_SINKER", + "message": "Helper to Well Sinker", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "OTHERS_WINCH_OPERATOR", + "message": "Winch - Operator", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "OTP_VERIFICATION", + "message": "OTP Verification", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "OWNER.ADDRESSPROOF.ELECTRICITYBILL", + "message": "Address Proof Electricity Bill", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "OWNER.ADDRESSPROOF.GASBILL", + "message": "Gas Bill", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "OWNER.ADDRESSPROOF.WATERBILL", + "message": "Water Bill", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "OWNER.AUTHORIZATION.AFFIDAVIT", + "message": "Affidavit", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "OWNER.IDENTITYPROOF", + "message": "Identity Proof", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "OWNER.IDENTITYPROOF.AADHAAR", + "message": "Adhar card", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "OWNER.IDENTITYPROOF.DRIVINGLICENSE", + "message": "Driving License", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "OWNER.IDENTITYPROOF.PASSPORT", + "message": "Passport", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "OWNER.IDENTITYPROOF.VOTERID", + "message": "Voter ID", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "OWNER.REGISTRATIONPROOF.GIFTDEED", + "message": "Gift deed", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "OWNER.SPECIALCATEGORYPROOF.DEATHCERTIFICATE", + "message": "Death Certificate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "OWNER.USAGEPROOF.TRADELICENCE", + "message": "Trade License", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "OWNER_ADDRESSPROOF", + "message": "Address Proof", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "OWNER_ADDRESSPROOF_AADHAAR", + "message": "Adhaar Card", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "OWNER_ADDRESSPROOF_DL", + "message": "Driving License", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "OWNER_ADDRESSPROOF_ELECTRICITYBILL", + "message": "Electricity Bill", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "OWNER_ADDRESSPROOF_GASBILL", + "message": "Gas Bill", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "OWNER_ADDRESSPROOF_PAN", + "message": "PAN Card", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "OWNER_ADDRESSPROOF_PASSPORT", + "message": "Passport", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "OWNER_ADDRESSPROOF_VOTERID", + "message": "Voter Id", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "OWNER_ADDRESSPROOF_WATERBILL", + "message": "Water Bill", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "OWNER_AUTHORIZATION", + "message": "Owner Authorization", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "OWNER_AUTHORIZATION_AFFIDAVIT", + "message": "Affidavit", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "OWNER_IDENTITYPROOF", + "message": "Identity Proof", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "OWNER_IDENTITYPROOF_AADHAAR", + "message": "Aadhaar Card", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "OWNER_IDENTITYPROOF_DRIVING", + "message": "Driving License", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "OWNER_IDENTITYPROOF_DRIVINGLICENSE", + "message": "Driving License", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "OWNER_IDENTITYPROOF_PAN", + "message": "PAN Card", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "OWNER_IDENTITYPROOF_PASSPORT", + "message": "Passport", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "OWNER_IDENTITYPROOF_VOTERID", + "message": "Voter ID", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "OWNER_NAME", + "message": "Owner Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "OWNER_NAME_SAME", + "message": "Transferor and Transferee names are same", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "OWNER_NOC", + "message": "Owner NOC", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "Original Estimate", + "message": "O", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PAID", + "message": "Paid", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PAID_IN_LAST_12_MONTHS_TOWARDS_WS_CHARGES", + "message": "paid in last 12 months towards water charges.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PAINTER", + "message": "Painter", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PATTERN_MOBILENUMBER_FAILED", + "message": "Invalid Mobile Number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PAYMENT_BANK_BRANCH_LABEL", + "message": "Bank Branch", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PAYMENT_BANK_NAME_LABEL", + "message": "Bank Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PAYMENT_BILL_NO", + "message": "BILL NO.:", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PAYMENT_BND_CONSUMER_CODE", + "message": "Consumer Code", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PAYMENT_CARD_HEAD", + "message": "Card Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PAYMENT_CHEQUE_DATE_LABEL", + "message": "Cheque Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PAYMENT_CHEQUE_HEAD", + "message": "Cheque Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PAYMENT_CHQ_NO_LABEL", + "message": "Cheque No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PAYMENT_COLLECT", + "message": "Generate Receipt", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PAYMENT_COLLECT_LABEL", + "message": "Collect Payment", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PAYMENT_COMMON_APPLICATION_CODE", + "message": "Application No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PAYMENT_COMMON_CHALLAN_CODE", + "message": "Challan No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PAYMENT_COMMON_CHALLAN_CODE ", + "message": "Challan No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PAYMENT_COMMON_CHALLAN_CODE ", + "message": "Challan No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PAYMENT_COMMON_CONSUMER_CODE", + "message": "Consumer Code", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PAYMENT_CS_BUTTON_LABEL", + "message": "Pay", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PAYMENT_CS_HEADER", + "message": "Payment", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PAYMENT_CS_SELECT_METHOD", + "message": "Select Payment Method", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PAYMENT_CS_TOTAL_AMOUNT_DUE", + "message": "Total Amount Due", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PAYMENT_FAIL", + "message": "Payment Failed", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PAYMENT_FAILURE_MESSAGE", + "message": "Payment has failed!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PAYMENT_FAILURE_MESSAGE_DETAIL", + "message": "A notification regarding payment failure has been sent to property owner at registered Mobile No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PAYMENT_HEADER_CITIZEN", + "message": "Payment Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PAYMENT_HEADER_EMPLOYEE", + "message": "Collection Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PAYMENT_IFSC_CODE_LABEL", + "message": "IFSC Code", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PAYMENT_IPO_NO_LABEL", + "message": "IPO No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PAYMENT_IPO_NO_PLACEHOLDER", + "message": "Enter IPO No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PAYMENT_LOCALIZATION_RECIEPT_NO", + "message": "Reciept No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PAYMENT_LOCALIZATION_RESPONSE", + "message": "Response", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PAYMENT_MESSAGE_CITIZEN", + "message": "Payment has been made successfully!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PAYMENT_MESSAGE_DETAIL_CITIZEN", + "message": "A notification regarding Payment has been sent to owner at registered Mobile No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PAYMENT_MESSAGE_DETAIL_EMPLOYEE", + "message": "A notification regarding Payment Collection has been sent to owner at registered Mobile No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PAYMENT_MESSAGE_EMPLOYEE", + "message": "Payment has been collected successfully!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PAYMENT_MODE_HEAD", + "message": "Payment Mode", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PAYMENT_MODE_LABEL", + "message": "Payment mode", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PAYMENT_PAID_BY_HEAD", + "message": "Payer Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PAYMENT_PAID_BY_LABEL", + "message": "Paid By", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PAYMENT_PAID_BY_LABEL ", + "message": "Paid by:", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PAYMENT_PAYER_MOB_LABEL", + "message": "Payer Mobile No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PAYMENT_PAYER_MOB_LABEL ", + "message": "Payer Mobile Number:", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PAYMENT_PAYER_NAME_LABEL", + "message": "Payer Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PAYMENT_PAYER_NAME_LABEL ", + "message": "Payer Name:", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PAYMENT_RECEIPT_NO", + "message": "Payment Receipt No:", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PAYMENT_STATUS_INITIATED", + "message": "NA", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PAYMENT_SUCCESS", + "message": "Payment Success", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PAYMENT_TXN_DATE_LABEL", + "message": "Transaction Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PAYMENT_TXN_DATE_PLACEHOLDER", + "message": "dd/mm/yy", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PAYMENT_TXN_NO_LABEL", + "message": "Transaction No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PAYMENT_TXN_NO_PLACEHOLDER", + "message": "Enter Transaction no.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PAYMENT_TX_ERROR_MESSAGE", + "message": "Please enter a valid transaction date!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PAYMENT_UC_CONSUMER_CODE", + "message": "Consumer Code", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PAY_AMOUNT_TO_BE_PAID", + "message": "Amount to be Paid", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PAY_CUSTOM_AMOUNT", + "message": "Custom Amount", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PAY_FULL_AMOUNT", + "message": "Full Amount", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PAY_PARTIAL_AMOUNT", + "message": "Partial Amount", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PAY_PAYER_DETAILS", + "message": "Payer Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PAY_TOTAL_AMOUNT", + "message": "Total Amount", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PAY_VIA_WHATSAPP", + "message": "Pay Via WhatsApp", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PAY_WATER_CHARGES_BY", + "message": "Pay Water charges by", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PB_AMRITSAR_BAHADAUR_LABEL", + "message": "Bahadur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PB_AMRITSAR_BARNALA_LABEL", + "message": "Barnala", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PB_AMRITSAR_REVENUE_SU166", + "message": "Mohalla Majoran - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PB_AMRITSAR_REVENUE_SUN04", + "message": "Ajit Nagar - Area1:", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PB_AMRITSAR_REVENUE_SUN11", + "message": "Back Side 33 KVA Grid Patiala Road - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PB_JALANDHAR_BARNALA_LABEL", + "message": "Barnala", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PB_NAWANSHAHR_DHANAULA_LABEL", + "message": "Dhanaula", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LA BEL_CONSOLIDA TED_RECEIPT_C HALLAN_NO", + "message": "Challan No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABELWS_CONSOLIDATED_ACKNOWELDGMENT_TOTAL", + "message": "Total", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_APPLICATION_NUMBER_LABEL", + "message": "Application Number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_APPROVAL_DATE_LABEL", + "message": "Approval Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_BILL_AMENDMENT_ADJUSTMENT_AMOUNT_DETAILS", + "message": "Adjustment amount details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_BILL_AMENDMENT_APPLICATION", + "message": "Bill Amendment Application", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_BILL_AMENDMENT_APPLICATION_NUMBER", + "message": "Application Number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_BILL_AMENDMENT_ARREARS", + "message": "Arrears", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_BILL_AMENDMENT_COURT_ORDER", + "message": "Court Order", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_BILL_AMENDMENT_COURT_ORDER_NO", + "message": "Court Order No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_BILL_AMENDMENT_CREDIT_NOTE", + "message": "Debit Note", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_BILL_AMENDMENT_DEBIT_NOTE", + "message": "Credit Note", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_BILL_AMENDMENT_DEM_REV_BASIS", + "message": "Demand revision basis", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_BILL_AMENDMENT_DEM_REV_BAS_DET", + "message": "Demand revision basis details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_BILL_AMENDMENT_INTEREST", + "message": "Interest", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_BILL_AMENDMENT_NOTE_ADJUSTMENT_AMOUNT_DETAILS", + "message": "Adjustment Amount Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_BILL_AMENDMENT_NOTE_AGAINST", + "message": "Against:", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_BILL_AMENDMENT_NOTE_BOX_NOTE", + "message": "Note: The Approved Note amount will be automatically applied in the upcoming bill", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_BILL_AMENDMENT_NOTE_BOX_VALIDITY", + "message": "Note: Validity of the receipts generated for period in consideration for bill amendment will be considered as null and void", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_BILL_AMENDMENT_NOTE_DATE", + "message": "Date : ", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_BILL_AMENDMENT_NOTE_ID", + "message": "Note ID :", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_BILL_AMENDMENT_NOTE_RS", + "message": "RS", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_BILL_AMENDMENT_NOTE_TOTAL_AMOUNT", + "message": "Total Amount", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_BILL_AMENDMENT_PAST_BILLS", + "message": "Past Bills", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_BILL_AMENDMENT_PENALTY", + "message": "Penalty", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_BILL_AMENDMENT_REDUCED_AMOUNT", + "message": "Amount", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_BILL_AMENDMENT_SELF_DECLARATION", + "message": "Self Declaration", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_BILL_AMENDMENT_SEWERAGE_CHARGE", + "message": "Sewerage Charge", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_BILL_AMENDMENT_TAX_HEADS", + "message": "Tax Heads", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_BILL_AMENDMENT_TOTAL_AMOUNT", + "message": "Total Amount", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_BILL_AMENDMENT_WATER_CESS", + "message": "Water Cess", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_BILL_AMENDMENT_WATER_TAX", + "message": "Water Tax", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_BILL_AMENDMENT_WITH_EFFECT_FROM", + "message": "With effect from", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_ACKNOWELDGMENT_APPLICATION_NO", + "message": "Application No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_ACKNOWELDGMENT_DATE_LABEL", + "message": "Dt.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL", + "message": "Bill", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_ACKNOWLEDGEMENT", + "message": "Acknowledgement( For Official use only)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_ADHOC_PENALTY", + "message": "Adhoc Penalty", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_ADHOC_REBATE", + "message": "Adhoc Rebate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_ADJUSTMENT", + "message": "Adjustments/Paid", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_ADVANCEADJUSTED", + "message": "Advance Adjusted", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_ADVANCEAVAILABLE", + "message": "Advance Available", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_APP", + "message": "App", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_APPLICATION_NO", + "message": "Application Number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_ARREARS", + "message": "Arrears", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_ASSESSSMENT_PAYMENT", + "message": "4. A simple interest @ 2% per month will be charged in case of failure to pay property tax by due dates as above.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_BANK_UPI", + "message": "Use any Bank/UPI", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_BILLING_SUMMARY", + "message": "Billing Summary -", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_BILL_DUE_DATE", + "message": "Bill Due Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_BILL_NO", + "message": "Bill No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_BILL_PERIOD", + "message": "Bill Period", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_CANCER_CESS", + "message": "Cancer Cess", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_CHARGE", + "message": "Charge", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_CONSUMER_ID", + "message": "Consumer ID", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_CONSUMER_ID_PT", + "message": "Property Unique ID", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_CONSUMER_ID_TL", + "message": "Application Number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_CONSUMER_NO", + "message": "Consumer No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_CONSUMER_NUMBER", + "message": "Consumer Number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_DATE", + "message": "Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_DECIMAL_ADVANCE_CARRYFORWARD", + "message": "Advance CarryForward", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_DECIMAL_ADVANCE_ROUNDOFF", + "message": "RoundOff", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_DECIMAL_ARREARS", + "message": "Arrears", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_DECIMAL_CEILING_CREDIT", + "message": "Ceiling Credit", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_DECIMAL_CEILING_DEBIT", + "message": "Ceiling Debit", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_FIRE_CESS", + "message": "Fire Cess", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_IF_THE_TAX", + "message": "6. If the tax payers fail to pay the property tax within 15 days from the date of receipt of this Demand Bill 1955 (formerly GHMC Act 1955)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_IMPORTANT_MESSAGE", + "message": "Important Message", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_ISSUE_DATE", + "message": "Bill Issue Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_LOGO_HEADER", + "message": "Amritsar Muncipal Corporation", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_MOBILE_NO", + "message": "Mobile No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_NAME_ADDRESS", + "message": "Name & Address", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_OTHERS", + "message": "Others", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_OWNER_EXEMPTION", + "message": "Owner Exemption", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_PAYER_ADDRESS", + "message": "Payer Address", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_PAYER_NAME", + "message": "Payer Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_PAYMENT_RECEIVED", + "message": "1. 5% rebate will be given if tax is paid for both half years at a time before 30th April of current financial year.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_PENALTY", + "message": "Penalty", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_PLEASE_DEPOSIT", + "message": "5. Please bring this bill while paying at Office counter or eSeva or Mee Seva centers.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_PROPERTY_ID", + "message": "Property ID", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_REBATE", + "message": "Rebate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_RECEIVERS_SIGNATURE", + "message": "Receiver's Signature & Mobile No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_SCAN_PAY", + "message": "Scan Code to pay", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_THIS_DOCUMENT", + "message": "2. Property tax can be paid through: Cash or Cheque at eSeva, Mee Seva centres or Municipal Office or Online through Credit Card/Debitcard/Net Banking.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_THIS_IS", + "message": "3. Due dates for payment of property tax without interest for current financial year: First half year 30th June, Second half year: 31st December.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_TIME_INTEREST", + "message": "Time Interest", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_TL_APPLICATION_NO", + "message": "Application Number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_TOTAL", + "message": "Total", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_TOTAL_AMOUNT_DUE", + "message": "Total Amount due", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_TOTAL_PAYMENT", + "message": "Total Payment", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_UNIT_USAGE_EXEMPTION", + "message": "Unit Usage Exemption", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_PASS_CERTIFICATE", + "message": "Lockdown e-Pass", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_PASS_CITY_POLICE_LABLE", + "message": "Bengaluru City Police", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_PASS_CITY_POLICE_LABLE_MP", + "message": "Government of MP", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_PASS_LICENSE_VALIDITY_FROM", + "message": "Validity From", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_PASS_LICENSE_VALIDITY_TO", + "message": "Validity To", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_PASS_NO", + "message": "e-Pass Number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_PASS_PURPOSE_DETAIL_LABEL", + "message": "Purpose Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_PASS_PURPOSE_LABEL", + "message": "Purpose", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_PASS_PURPOSE_SUB_DETAIL_LABEL", + "message": "Purpose Sub Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_PASS_TRADE_OWNER_NAME", + "message": "Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_PASS_TRADE_SUB_TYPE", + "message": "Pass Sub-Category", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_PASS_TRADE_TYPE", + "message": "e-Pass Category", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_PASS_VEHICLE_COMPANY_LABLE", + "message": "Vehicle Company", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_PASS_VEHICLE_MODEL_LABLE", + "message": "Vehicle Model", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_PASS_VEHICLE_NUMBER_LABLE", + "message": "Vehicle Number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_ADVANCE_AMOUNT", + "message": "Advance Available", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_ADVANCE_AMOUNT_PAID", + "message": "Advance Amount Paid", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_AMOUNT_PER_TRIP", + "message": "Amount Per Trip", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_APPLICATION_NO", + "message": "Application no", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_BALANCE_AMOUNT_PAID", + "message": "Balance Amount Paid", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_BILLING_PERIOD", + "message": "Billing Period", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_BILL_AMOUNT", + "message": "Bill Amount", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_CHALLAN", + "message": "Challan Receipt", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_CHALLAN / PDF_STATIC_LABEL_CONSOLIDATED_BILL", + "message": "Challan /Bill", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_CHALLAN_DATE", + "message": "Challan Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_CHALLAN_FORM_NO", + "message": "Form GI No 16", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_CHALLAN_NO", + "message": "Challan No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_CHALLAN_RULE_NO", + "message": "Rule No 10", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_COMMISSIONER_EO", + "message": "Commissioner/EO", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_CONSUMER_ID", + "message": "Consumer ID", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_CONSUMER_ID_PT", + "message": "Property ID", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_CONSUMER_ID_PT_MUTATION", + "message": "Application No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_CONSUMER_ID_TL", + "message": "Application Number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_CONSUMER_NAME", + "message": "Consumer Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_CONSUMER_NO", + "message": "Consumer No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_DISCLAIMER", + "message": "DISCLAIMER", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_DISCLAIMER_1", + "message": "1. Payment received by cheque/demand draft shall be subject to realization.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_DISCLAIMER_2", + "message": "2. This document is not a proof of Property Ownership and regularization of unauthorized construction.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_DISCLAIMER_3", + "message": "3. This is a computer generated document", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_DISCLAIMER_4", + "message": "4. Excess amount paid will be adjusted against demand generated in next billing cycle.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_DISCLAIMER_5", + "message": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_DISCLAIMER_5", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_DISCLAIMER_FIFTH_LINE", + "message": "5. Please deposit property tax dues for earlier years also. Ignore", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_DISCLAIMER_FIRST_LINE", + "message": "1. Payment received by cheque/demand draft shall be subject to realization.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_DISCLAIMER_FIRST_LINE_UC", + "message": "1. Payment received by cheque/demand draft shall be subject to realization.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_DISCLAIMER_FOURTH_LINE", + "message": "4. Assessment & Payment is subject to verification/Scrutiny by competitive authority.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_DISCLAIMER_SECOND_LINE", + "message": "2. This document is not a proof of Property Ownership and regularization of unauthorized construction.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_DISCLAIMER_SIXTH_LINE", + "message": "6. Excess amount paid will be adjusted against demand generated in next billing cycle.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_DISCLAIMER_THIRD_LINE", + "message": "3. This is a computer generated document", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_EXCESS_AMOUNT_PAID", + "message": "Excess Amount", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_G8_RECEIPT_DATE", + "message": "G8 Receipt Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_G8_RECEIPT_NO", + "message": "G8 Receipt No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_GENERATED_BY", + "message": "Generated By", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_LETTER_FORM_NO", + "message": "Form GI No 16", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_LETTER_HEAD", + "message": "Reciept", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_LETTER_RULENO", + "message": "Rule No 10", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_LETTER_SECTION_NO", + "message": "Section No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_LOGO_HEADER", + "message": "Amritsar Muncipal Corporation", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_NOC_1", + "message": "1. Above Details cannot be used as ownership proof.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_NOC_2", + "message": "2. This is digitally created cerificate, no signature is needed.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_NOC_3", + "message": "3. Payment is subject to verification/Scrutiny by the competitive authority.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_NO_OF_TRIP", + "message": "No. Of Trips", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_NO_SIGNATURE", + "message": "This is Computer generated receipt, Signature is not required", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_PAID_AMOUNT", + "message": "Paid Amount", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_PAYER_CONTACT", + "message": "Payer Contact", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_PAYER_NAME", + "message": "Payer Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_PAYMENT_DATE", + "message": "Payment Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_PAYMENT_MODE", + "message": "Payment Mode", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_PAYMENT_RECEIPT", + "message": "Payment Receipt", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_PAYMENT_STATUS", + "message": "Payment Status", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_PENDING_AMOUNT", + "message": "Pending Amount", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_RECEIPT_NO", + "message": "Receipt No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_SERVICE_TYPE", + "message": "Service Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_TO", + "message": "to", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_TOTAL_AMOUNT", + "message": "Total Amount", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_TOTAL_AMOUNT_DUE", + "message": "Total Amount Due", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_TOTAL_BILL_AMOUNT", + "message": "Total Bill Amount", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_TRANSACTION_ID", + "message": "Transaction ID", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_SERVICE_CATEGORY", + "message": "Service Category", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_SLA_DATE", + "message": "days to our office.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_ACCESORY_COUNT", + "message": "Accesory Count", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_ACCESORY_TYPE", + "message": "Accesory Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_APPLICATION_NO", + "message": "Application No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_APPLICATION_TYPE", + "message": "Application Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_BUILDING_COLONY_NAME", + "message": "Building/Colony Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_CITY", + "message": "City", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_CORRESPONDANCE_ADDRESS", + "message": "Correspondence Address", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_DATE_OF_BIRTH", + "message": "Date of Birth", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_DOCUMENTS", + "message": "Documents", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_DOOR_HOUSE_NO", + "message": "Door/House No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_ELECTRICITY_CONNECTION_NO", + "message": "Electricity Connection No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_EMAIL", + "message": "Email", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_FATHER_HUSBAND", + "message": "Father/Husband's Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_GENDER", + "message": "Gender", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_LICENSE_TYPE", + "message": "License Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_LOGO_HEADER", + "message": "Trade License Application", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_MOBILE_NO", + "message": "Mobile No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_MOHALLA", + "message": "Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_NAME", + "message": "Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_NO_OF_EMPLOYEES", + "message": "No. Of Employees", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_OLD_APPLICATION_NUMBER", + "message": "Old Application Number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_OPERATIONAL_AREA", + "message": "Operational Area (Sq Ft)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_OWNERSHIP_PHOTO", + "message": "Owner's Photo", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_OWNERSHIP_PROOF", + "message": "Ownership Proof", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_OWNERS_ID", + "message": "Owner's ID Proof", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_OWNER_DETAILS", + "message": "Owner Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_PAN_NO", + "message": "PAN No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_PENALTY", + "message": "Penalty", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_PINCODE", + "message": "Pincode", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_PROPERTY_ASSESSMENT_ID", + "message": "Property Assessment ID", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_REBATE", + "message": "Rebate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_RELATIONSHIP", + "message": "Relationship", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_RUPEE", + "message": "₹", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_SPECIAL_OWNER", + "message": "Special Owner Category", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_STREET_NAME", + "message": "Street Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_STRUCTURE_SUB_TYPE", + "message": "Structure Sub Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_STRUCTURE_TYPE", + "message": "Structure Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_SUB_OWNERSHIP", + "message": "Type of sub-ownership", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_TOTAL_AMOUNT", + "message": "Total Amount", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_TRADE_CATEGORY", + "message": "Trade Category", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_TRADE_COMMENCEMENT", + "message": "Trade Commencement Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_TRADE_DETAILS", + "message": "Trade Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_TRADE_GST", + "message": "Trade GST No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_TRADE_LICENSE", + "message": "Trade License Tax", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_TRADE_NAME", + "message": "Trade Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_TRADE_SUB_TYPE", + "message": "Trade Sub-Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_TRADE_TYPE", + "message": "Trade Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_TYPE_OF_OWNERSHIP", + "message": "Type of ownership", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_UOM", + "message": "UOM", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_UOM_MEASUREMENT", + "message": "UOM (Unit Of Measurement)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_UOM_VALUE", + "message": "UOM value", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLCERTIFICATE_ACCESSORIES_LABEL", + "message": "Accessories", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLCERTIFICATE_APPLICATION_NO", + "message": "Application No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLCERTIFICATE_APPROVED_BY", + "message": "Approved by", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLCERTIFICATE_COMMISSIONER", + "message": "Commissioner/EO", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLCERTIFICATE_FINANCIAL_YEAR", + "message": "Financial Year", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLCERTIFICATE_LICENSE_CERTIFICATE", + "message": "Trade License Certificate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLCERTIFICATE_LICENSE_CORPORATION_CONTACT", + "message": "Contact", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLCERTIFICATE_LICENSE_CORPORATION_EMAIL", + "message": "Email", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLCERTIFICATE_LICENSE_CORPORATION_WEBSITE", + "message": "Website", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLCERTIFICATE_LICENSE_DISCLAIMER_BODY", + "message": "Please carry valid ID proof along with the Curfew e-Pass.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLCERTIFICATE_LICENSE_DISCLAIMER_BODY_FIFTH", + "message": "5. All Pass holders to observe all COVID19 social distancing and hygiene protocols instructions as issued by the government from time to time mandatorily .", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLCERTIFICATE_LICENSE_DISCLAIMER_BODY_FIRST", + "message": "1. Lockdown e-Pass is only valid upon showing any of the ID proofs which include Aadhar Card Driving License and Voter ID Card.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLCERTIFICATE_LICENSE_DISCLAIMER_BODY_FOURTH", + "message": "4. Only travel if you are healthy and fit to travel.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLCERTIFICATE_LICENSE_DISCLAIMER_BODY_SECOND", + "message": "2. Lockdown e-Pass is only valid till 2 days from the date of issue.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLCERTIFICATE_LICENSE_DISCLAIMER_BODY_SEVENTH", + "message": "7. This e-Pass Certificate can be validated using in any QR code scanner", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLCERTIFICATE_LICENSE_DISCLAIMER_BODY_SIXTH", + "message": "6. All Pass holders should report to the local health department / District administration on reaching their destination and give information of their travel. If necessary, to comply with sample giving / test formalities as necessitated by local authority.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLCERTIFICATE_LICENSE_DISCLAIMER_BODY_THIRD", + "message": "3. This e-Pass is only valid for a one time use", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLCERTIFICATE_LICENSE_DISCLAIMER_HEADING", + "message": "Guideline", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLCERTIFICATE_LICENSE_ISSUE_DATE", + "message": "License Issue Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLCERTIFICATE_LICENSE_NO", + "message": "Trade License No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLCERTIFICATE_LICENSE_VALIDITY", + "message": "License Validity", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLCERTIFICATE_LICENSE_VALIDITY_DATE", + "message": "e-Pass Valid Till", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLCERTIFICATE_MUNICIPAL_CORPORATION", + "message": "Municipal Corporation", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLCERTIFICATE_RECIEPT_NO", + "message": "Reciept No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLCERTIFICATE_RENEWAL_APPLICATION_NO", + "message": "Renewal Application No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLCERTIFICATE_TRADE_ADDRESS", + "message": "Trade Address", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLCERTIFICATE_TRADE_LICENSE_FEE", + "message": "Trade License Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLCERTIFICATE_TRADE_NAME", + "message": "Trade Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLCERTIFICATE_TRADE_OWNER_CONTACT", + "message": "Trade Owner Contact", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLCERTIFICATE_TRADE_OWNER_NAME", + "message": "Trade Owner Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLCERTIFICATE_TRADE_TYPE", + "message": "Trade Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_CONSUMER_NUMBER_LABEL", + "message": "Consumer Number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_ESTIMATE_WARD", + "message": "Ward", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_FSM_RECEIPT_COMMISSIONER_EO", + "message": "Commissioner/EO", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_FSM_RECEIPT_CONSUMER_ID", + "message": "Application No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_FSM_RECEIPT_DISCLAIMER_FIRST_LINE", + "message": "Payment received by cheque/demand draft shall be subject to realization.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_FSM_RECEIPT_DISCLAIMER_SECOND_LINE", + "message": "This document is not a proof of Property Ownership", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_FSM_RECEIPT_DUE_AMOUNT", + "message": "Total Amount Rs", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_FSM_RECEIPT_PAID_AMOUNT", + "message": "Amount Paid Rs.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_FSM_RECEIPT_PAYER_NAME", + "message": "Paid By", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_FSM_RECEIPT_PAYMENT_DATE", + "message": "Paid On", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_FSM_RECEIPT_PAYMENT_MODE", + "message": "Mode of Payment", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_MDMS_MUNICIPAL_CORPORATION", + "message": "Municipal Corporation", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_MUATATION_APPROVAL_CERTIFICATE", + "message": "Mutation Approval Certificate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_MUATATION_NUMBER_LABEL", + "message": "Mutation Number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_MUATATION_PROPERTY_ID_LABEL", + "message": "Property ID", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_MUTATION_DECLARATION_LABEL", + "message": "In exercise of the power vested with the Municipal Commissioner under Section 207 and 208 of Municipal Corporations Act 1955) on the request made by applicant and based on the strength of documentary evidence produced the transfer of the title is hereby effected on the building premises within the Corporation limits as follows:-", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_MUTATION_DECLARATION_LABEL_PB_AMRITSAR", + "message": "In exercise of the power vested with the Municipal Commissioner under Section 207 and 208 of Municipal Corporations Act 1955) on the request made by applicant and based on the strength of documentary evidence produced the transfer of the title is hereby effected on the building premises within the Corporation limits as follows:-", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_MUTATION_DECLARATION_LABEL_PB_NAWANSHAR", + "message": "In exercise of the power vested with the Municipal Commissioner under Section 207 and 208 of Municipal Corporations Act 1955) on the request made by applicant and based on the strength of documentary evidence produced the transfer of the title is hereby effected on the building premises within the Corporation limits as follows:-", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_MUTATION_DECLARATION_LABEL_STATEA_CITYA", + "message": "In exercise of the power vested with the Municipal Commissioner under Section 207 and 208 of Municipal Corporations Act,1994(formerly MCA ACT,1955) on the request made by applicant and based on the strength of documentary evidence produced, the transfer of the title is hereby effected on the building premises within the Corporation limits as follows:-", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_MUTATION_EMAIL", + "message": "Email", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_MUTATION_FAX", + "message": "Fax", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_MUTATION_TO_LABEL", + "message": "To", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_MUTATION_WEBSITE", + "message": "Website", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_ORDER_LABEL", + "message": "Order", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_PASS_APPROVER", + "message": "Caralyn Khongwar Deshmukh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_PASS_APPROVER_CONTACT", + "message": "0755-2475603", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_PASS_APPROVER_POSITION", + "message": "OSD & Commissioner", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_PASS_FROM_DISTRICT", + "message": "From District", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_PASS_FROM_STATE", + "message": "From State", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_PASS_TO_DISTRICT", + "message": "To District", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_PASS_TO_STATE", + "message": "To State", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_RECEIPT_NUMBER_LABEL", + "message": "Reciept Number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_SHRI_SMT_LABEL", + "message": "Shri/Smt", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_SW_CONSOLIDATED_ACKNOWELDGMENT_LOGO_SUB_HEADER", + "message": "Sewerage Connection Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_TRANSFERREE_LABEL", + "message": "Transferree Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_TRANSFERRER_LABEL", + "message": "Transferrer Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS _CONSOLIDATED_ACKNOWELDGMENT_TOTAL", + "message": "Total", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_ADDITIONAL_COMMENTS", + "message": "Additional Comments", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_APPLICATION_OF_LABEL", + "message": "Application of", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_BILL_ASSESSSMENT_PAYMENT", + "message": "4. Payment mode available: Cash/Cheque at office counter,Online: Credit/Debit Card.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONNECTION_HOLDER_DETAILS", + "message": "Connection Holder Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONNECTION_LABEL", + "message": "connection", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_ACTIVATION_DETAILS_HEADER", + "message": "Activation Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_ADDITIONAL_COMMENTS_VALUES", + "message": "connection will be sanctioned after the full payment of estimation fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_ADDITIONAL_CONNECTION_HEADER", + "message": "Additional Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_ADDRESS", + "message": "Address", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_AMOUNT", + "message": "Amount", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_APPLICATION_FEE", + "message": "Application Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_APPLICATION_NO", + "message": "Application No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_APPLICATION_NUMBER", + "message": "Application Number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_APPLY_CATEGORY", + "message": "Apply For", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_APPROVED_BY", + "message": "Approved By Designated Officer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_APP_DATE", + "message": "Application Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_AREA_LABEL", + "message": "Area (in sq ft)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_BUILDING", + "message": "Building / Colony Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_BUILDING_PLAN", + "message": "Building Plan / Completion Certificate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_CITY", + "message": "City", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_COMMISSIONER_LABEL", + "message": "Commissioner / EO", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_CONNECTION_CAT", + "message": "Connection Category", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_CONNECTION_DETAILS_HEADER", + "message": "Connection Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_CONNECTION_EXECUTION_DATE", + "message": "Connection Execution Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_CONNECTION_HEADER", + "message": "Connection", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_CONNECTION_HOLDER_DETAILS_HEA\nDER", + "message": "Connection Holder Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_CONNECTION_HOLDER_DETAILS_HEADER", + "message": "Connection Holder Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_CONNECTION_TYPE", + "message": "Connection Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_CONSUMER_NO", + "message": "Consumer No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_COPY_MESSAGE1", + "message": "Copy to Asst Engineer Water Supply with a direction to issue tap connection to the above premises and initiate the date of connection.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_COPY_MESSAGE2", + "message": "Copy to Asst Engineer Water Supply with a direction to get the road cutting portion repaired within a week and report compliance.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_COPY_MESSAGE_SUB1", + "message": "connection to the above premises and initiate the date of connection.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_CORRESPONDENCE_ADDRESS", + "message": "Correspondence Address", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_CORRESPONDING_ADDRESS", + "message": "Correspondence Address", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_CORR_ADDRESS", + "message": "Correspondence Address", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_DATED_LABEL", + "message": "Dated", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_DEN_TYPE", + "message": "Rs.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_DISCONNECTION_PROPOSED_DATE", + "message": "Disconnection proposed date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_DISCONNECTION_REASON", + "message": "Reason for Disconnection", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_DISCONNECTION_TYPE", + "message": "Disconnection Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_DOB", + "message": "Date of Birth", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_DONATION", + "message": "Donation", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_DOOR_HOUSE_NO", + "message": "Door / House No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_DOOR_NO_LABEL", + "message": "Door No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_ELECTRICITY_BILL", + "message": "Electricity Bill", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_EMAIL", + "message": "Email", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_ESTIMATION_HEADER", + "message": "Estimate For", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_ESTIMATION_NOTICE_HEADER", + "message": "Estimation Notice", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_FEES_ESTIMATE_HEADER", + "message": "Fee Estimate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_FOOTER", + "message": "This is a computer generated document, Hence requires no signature.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_FORM_FEE", + "message": "Form Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_FOR_COMMISSIONER_LABEL", + "message": "For Commissioner", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_GENDER", + "message": "Gender", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_GRAND_TOTAL", + "message": "Grand Total", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_GUARDIAN", + "message": "Guardian", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_GUARDIAN_NAME", + "message": "Father / Husband's Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_HOLDER_NAME", + "message": "Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_INITIAL_METER_READING", + "message": "Initial meter reading (KL)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_IN_REF_LABEL", + "message": "n the reference 1st cited,Sri/Smt", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_LOCALITY", + "message": "Locality / Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_LOCALITY_LABEL", + "message": "Locality", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_LOCATION_DETAILS_HEADER", + "message": "Property Location Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_LOCATION_ON_MAP", + "message": "Location on Map", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_LOGO_HEADER", + "message": "Amritsar Muncipal Corporation", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_LOGO_SUB_HEADER", + "message": "Municipal Corporation Amritsar, Town Hall, Amritsar, Punjab. 0183-2545155 | www.amritsarcorp.com | cmcasr@gmail.com", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_METER_ID", + "message": "Meter ID", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_METER_INSTALLATION", + "message": "Meter Installation Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_METER_INSTALLATION_DATE", + "message": "Meter installation Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_MOBILE_NO", + "message": "Mobile Number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_MODIFY_EFFECTIVE_DATE_HEADER", + "message": "Modification Effective From", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_NO_OF_FLOOR", + "message": "No. of Floors", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_NO_OF_TAPS", + "message": "Number of Taps", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_NO_OF_TOILETS", + "message": "No. of Toilets", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_NO_OF_TOILETSS", + "message": "No. of Toilets", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_NO_OF_WATER_CLOSETS", + "message": "No. of Water Closets", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_NO_OF_WATER_CLOSETS_PROPOSED", + "message": "No. of water closets proposed", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_NO_OF_WATER_TOILETS_PROPOSED", + "message": "No. of water toilets proposed", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_ONE_TIME_FEE", + "message": "One Time Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_ORDER_DATA2", + "message": "Therefore sanction is hereby accorded for execution of 1/2,3/4 new", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_ORDER_DATA3", + "message": "connection on tap rate /Meter rate to the above premises with", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_ORDER_ISSUED", + "message": "Orders issued.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_ORDER_LABEL", + "message": "Order:", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_ORDER_MESSAGE1", + "message": "has submitted an application seeking", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_ORDER_MESSAGE2", + "message": "to the house bearing D.No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_ORDER_MESSAGE3", + "message": "and paid the following amounts towards donation and other changes.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_OTHER_CHARGE", + "message": "Other Charge", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_OWNERSHIP_PROOF", + "message": "Address Proof", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_OWNERS_ID_PROOF", + "message": "Owner's ID Proof", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_OWNER_CATEGORY", + "message": "Owner Category", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_OWNER_DETAILS_HEADER", + "message": "Property Owner Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_OWNER_MOB_NUM", + "message": "Owner Mobile Number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_OWNER_NAME", + "message": "Owner Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_PENALTY", + "message": "Penalty", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_PENALTY_COMMENTS", + "message": "Comments", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_PINCODE", + "message": "Pincode", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_PIPE_SIZE", + "message": "Pipe Size", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_PIPE_SIZE_PROPOSED", + "message": "Pipe Size proposed (in inches)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_PLOT", + "message": "Plot / House / Survey No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_PLOT_SIZE", + "message": "Plot Size (in sq meters)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_PLUMBER_DETAILS_HEADER", + "message": "Plumber Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_PLUMBER_LICENSE_NO", + "message": "Plumber Licence No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_PLUMBER_MOBILE_NO", + "message": "Plumber Mobile No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_PLUMBER_NAME", + "message": "Plumber Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_PLUMBER_PROVIDED_BY", + "message": "Plumber Provided By", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_PLUMBER_REPORT", + "message": "Plumber Report / Drawing", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_PRESENTED_BY", + "message": "Present:", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_PROPERTY_ADDRESS", + "message": "Property Address", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_PROPERTY_DETAILS_HEADER", + "message": "Property Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_PROPERTY_ID", + "message": "Property ID", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_PROPERTY_LOCATION_HEADER", + "message": "Property Location Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_PROPERTY_TAX_RECEIPT", + "message": "Property Tax Reciept", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_PROPERTY_TYPE", + "message": "Property Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_PROPERTY_USAGE_SUB_TYPE", + "message": "Property Sub Usage Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_PROPERTY_USAGE_TYPE", + "message": "Property Usage Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_RAINWATER_HARVESTING_FACILITY", + "message": "Rainwater harvesting Facility", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_RAIN_HARV_FAC", + "message": "Rainwater Harvesting Facility", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_REBATE", + "message": "Rebate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_REF_LEBEL", + "message": "Ref:", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_REF_MESSAGE1", + "message": "Application of Sri/Smt", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_REF_MESSAGE2", + "message": "Remarks of the Municipal Engineer, Dated", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_RELATIONSHIP", + "message": "Relationship", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_ROAD_CHARGE", + "message": "Road Cutting Charge", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_ROAD_CHARGES_HEADER", + "message": "Road Cutting Charges", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_ROAD_TYPE", + "message": "Road Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_ROUNDOFF", + "message": "Round Off", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_SCRUTINY_FEE", + "message": "Scrutiny Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_SECURITY_CHARGE", + "message": "Security Charge", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_SECURITY_DEPOSIT_LABEL", + "message": "Security Deposit", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_SERIAL_NO", + "message": "Sl No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_SERVICE", + "message": "Service", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_SERVICE_DETAILS_HEADER", + "message": "SERVICE DETAILS", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_SERVICE_FEE", + "message": "Service Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_SEWERAGE", + "message": "Sewerage", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_SEWERAGE_APPLICATION", + "message": "Sewerage Application", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_SPECIAL_APPLICANT_CATEGORY", + "message": "Special Applicant Category", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_SRI_SMT_LABEL", + "message": "Sri/Smt", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_STATUS", + "message": "Status", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_STREET", + "message": "Street Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_STREETNAME", + "message": "Street Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_SUB_DATA1", + "message": "Connection - Sanction of", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_SUB_DATA2", + "message": "connection to the house bearing Door No-", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_SUB_LEBEL", + "message": "Sub:", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_SUPERVISION_CHARGE_LABEL", + "message": "15% Supervision Charges", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_TAPS", + "message": "No. of taps", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_TAPS_PROPOSED", + "message": "No. Of taps proposed", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_TAX_LABEL", + "message": "Tax", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_THE_LABEL", + "message": "The", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_TOTAL_AMOUNT", + "message": "Total Amount", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_TO_LABEL", + "message": "To,", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_UAT", + "message": "UAT", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_UNIT_OF_MEASUREMENT", + "message": "Unit of Measurement", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_USAGE_TYPE", + "message": "Usage Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_USER_NAME", + "message": "Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_WATER", + "message": "Water", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_WATER_APPLICATION", + "message": "Water Application", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_WATER_CLOSETS", + "message": "Water Closets", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_WATER_CONNECTIONDETAIL", + "message": "Water Connection Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_WATER_SOURCE", + "message": "Water Source", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_WATER_SUB_SOURCE", + "message": "Water Sub Source", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_APPROVAL_EXECUTIVE_OFFICER", + "message": "Approved By Executive Officer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_BILLING_CYCLE", + "message": ". Bill will be generated from the next billing cycle.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_COMPUTER_GENERATED_DOCUMENT", + "message": "This is a computer generated document, Hence requires no signature.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_CONCERNED_PLUMBER_ALLOTED", + "message": "Concerned plumber allotted to you is", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_CONCERNED_PLUMBER_CONTACT", + "message": ", Contact No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_CONCERNED_PLUMBER_LICENCE", + "message": ", Licence No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_CONNECTION_CONSUMER_LABEL", + "message": "connection, consumer no.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_CONNECTION_HOLDER_DETAIL_HEADER", + "message": "Connection Holder Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_CONNECTION_SANCTIONED", + "message": "connection now being sanctioned is allotted with an identification bearing Application No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_CURRENT_METER_READING_LABEL", + "message": "Current Meter Reading", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_DATED_IN_LOWER_CASE", + "message": "dated", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_DATE_LABEL", + "message": "Date :", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_DISCONNECTION_BILLINGDETAILS_LABEL", + "message": "Billing Details (As on approval of application)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_DISCONNECTION_BILLINGPERIOD_LABEL", + "message": "Billing Period", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_DISCONNECTION_BILLING_AMOUNT_LABEL", + "message": "Billing Amount", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_DISCONNECTION_BILLING_DATE_LABEL", + "message": "Billing Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_DISCONNECTION_BILLING_NUMBER_LABEL", + "message": "BIll Number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_DISCONNECTION_DETAIL_HEADER", + "message": "Disconnection Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_DISCONNECTION_DUE_DATE_LABEL", + "message": "Due date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_DISCONNECTION_IN_REF_LABEL", + "message": "In the reference read above, you have submitted an application, application no", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_DISCONNECTION_LOWERCASE_TO_LABEL", + "message": "to", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_DISCONNECTION_NOTE_LABEL", + "message": "Note:", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_DISCONNECTION_NOTE_MESSAGE", + "message": "On failure of payment of dues before the due date bill for the subsequent billing period will be generated.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_DISCONNECTION_NOTICE", + "message": "Disconnection Notice", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_DISCONNECTION_ORDER_MESSAGE", + "message": "Therefore, the application of disconnection has been approved and the final bill for the charges has been generated and detail is mentioned below. Clear the dues if any before the due date in order to proceed with execution of disconnection and stop the billing.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_DOCUMENTS_DETAILS_HEADER", + "message": "Documents", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_DOCUMENT_DETAILS_HEADER", + "message": "Documents", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_DOCUMENT_DETAIL_HEADER", + "message": "Documents", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ESTIMATION_NOTICE_NO", + "message": "Estimate Notice generated for application no-", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_FURTHER", + "message": "Further, the", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ORDER", + "message": "Order :", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ORDER_DESCRIPTION", + "message": "In the reference 1st read above, you have submitted an application with application number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_PLUMBER_INFO", + "message": ". Please get the connection executed from the concerned plumber and intimate about the connection execution date within", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_PREPARATION_NOTICE", + "message": "was prepared and served to you via notice, reference 2nd read above. Therefore,", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_REFERENCE", + "message": "Reference :", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_RUPEE", + "message": "₹", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_SAID_PREMISES", + "message": "in the above said premises.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_SANCTION_LETTER", + "message": "Sanction Letter", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_SEEKING", + "message": "seeking", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_SEEKING_DICONNECTION_LABEL", + "message": "seeking disconnection of", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_SEEKING_ESTIMATE_AMOUNT", + "message": ". As per your request an estimate of Rs.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_SERVICE_PAYMENT", + "message": "Connection is hereby sanctioned after the full payment of estimation fees of Rs.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_SUBJECT", + "message": "Subject :", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_SUNAM_DEV_MUNICIPAL_COUNCIL", + "message": "Sunam-DEV Municipal Council", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_TAX_CESS", + "message": "Tax and Cess", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_WATER_TAP_CONNECTION", + "message": "connection in the premises bearing", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_CONSUMER_NO_LABEL", + "message": "consumer no", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_DISCONNECTION_OF_LABEL", + "message": "Disconnection of", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_MDMS_MUNICIPAL_CORPORATION_LOGO_HEADER", + "message": "Municipal Corporation", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABEL_WS_MUNCIPAL_COMMISIONER_LABEL", + "message": "Municipal Commissioner/Executive Officer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABE_CONSOLIDATED_RE CEIPT_BILL_AMOUNT", + "message": "Bill Amount", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_STATIC_LABE_CONSOLIDATED_RECEIPT_BILL_AMOUNT", + "message": "Bill Amount", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PDF_SYSTEM_GENERATED_ACKNOWLEDGEMENT", + "message": "- Note: This is a system generated acknowledgement and does not need any signature", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PENDINGAPPROVAL", + "message": "Pending approval", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PENDINGDOCVERIFICATION", + "message": "Pending for Document Verification", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PENDINGPAYMENT", + "message": "Pending payment", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PENDING_APPL_FEE", + "message": "Pending Application Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PENDING_APPL_FEE_PAYMENT", + "message": "Pending for Payment", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PENDING_DSO_APPROVAL", + "message": "Pending for DSO Approval", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PENDING_FEE", + "message": "Pending For Payment", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PENDING_SANC_FEE_PAYMENT", + "message": "Pending Sanction Fee Payment", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PERMIT REVOCATION", + "message": "PERMIT REVOCATION", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PERMITS_ISSUED_IN_LAST_12_MONTHS", + "message": "permits issued in the last 12 months.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PERMIT_REVOCATION", + "message": "Permit Revocation", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG.CITYA_ADMIN_B1", + "message": "Ward One", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG.CITYA_ADMIN_B2", + "message": "Ward two", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG.CITYA_ADMIN_B3", + "message": "Ward three", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG.CITYA_ADMIN_B4", + "message": "Ward four", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG.CITYA_ADMIN_SUN01", + "message": "Rajan Wala (both sides) - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG.CITYA_ADMIN_SUN02", + "message": "Gugga Maadi Road (east side) - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG.CITYA_ADMIN_SUN03", + "message": "Singhkiyan (Nothern Side) - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG.CITYA_ADMIN_SUN10", + "message": "Ajit Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG.CITYA_ADMIN_SUN11", + "message": "Bakhtaur Nagar - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG.CITYA_ADMIN_SUN12", + "message": "Gurudwara Niai Sahib Street 1 - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG.CITYA_ADMIN_SUN20", + "message": "Cinema Road - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG.CITYA_ADMIN_SUN21", + "message": "Chandar Colony Biggarwal Road - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG.CITYA_ADMIN_SUN22", + "message": "Bigharwal Chowk to Railway Station - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG.CITYA_ADMIN_SUN30", + "message": "Babu Labh Singh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG.CITYA_ADMIN_SUN31", + "message": "Dera Preet Nagar Jhuggia", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG.CITYA_ADMIN_SUN32", + "message": "Jawala Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG.CITYA_ADMIN_SUN33", + "message": "Nagra Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PGR", + "message": "Citizen Complaint Resolution System", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PGR_CREATE_ANOTHER_COMPLAIN", + "message": "Create Another Complaint", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PGR_INBOX", + "message": "Inbox", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PGR_SEARCH_RESULTS_HEADING", + "message": "Search Citizen Complaint", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_ADDISABABA_ADMIN_ADD01", + "message": "Sabiyan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_ADDISABABA_ADMIN_ADD02", + "message": "Melka Jebdu", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_AMHARA_ADMIN_AMR01", + "message": "Adama", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_AMHARA_ADMIN_AMR02", + "message": "Piasa", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_REVENUE_VIL1", + "message": "Sahadevkhunta, Chandmaripadia", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_REVENUE_VIL10", + "message": "Srikanthapur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_REVENUE_VIL11", + "message": "Gopalgaon", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_REVENUE_VIL12", + "message": "Bagbrundaban", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_REVENUE_VIL13", + "message": "Mallikashpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_REVENUE_VIL14", + "message": "Kadarabad", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_REVENUE_VIL15", + "message": "Mansinghabazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_REVENUE_VIL16", + "message": "Nalamganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_REVENUE_VIL17", + "message": "Bateswar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_REVENUE_VIL18", + "message": "Suelpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_REVENUE_VIL19", + "message": "Manikhamb", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_REVENUE_VIL2", + "message": "Sovarampur, Gudipada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_REVENUE_VIL20", + "message": "Barabati", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_REVENUE_VIL21", + "message": "Damdorpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_REVENUE_VIL22", + "message": "Noorpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_REVENUE_VIL23", + "message": "Akatpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_REVENUE_VIL24", + "message": "Kasaba", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_REVENUE_VIL25", + "message": "Mahammodpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_REVENUE_VIL26", + "message": "Sunhat", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_REVENUE_VIL27", + "message": "Purunabalasore, Farsidinga", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_REVENUE_VIL28", + "message": "Patrapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_REVENUE_VIL29", + "message": "Bagbrundaban(P), Old stadium area, Hospital Area, Convent school Area & permit Field Area", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_REVENUE_VIL3", + "message": "Angargadia, Bikash Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_REVENUE_VIL30", + "message": "Bagbrundaban(P), Manikhamb(p), Mirzapokhari Area, Daftari Sahi Area", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_REVENUE_VIL31", + "message": "Barabati, Manikhamb(P), Damodarpur(P) & Barabati Girls High School area, Balighat Area", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_REVENUE_VIL32", + "message": "Manikhamb(P), RN Dey Street, Dingamardinga Area", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_REVENUE_VIL33", + "message": "Gopalgaon, Srikanthapur(P) Sabitri School Area, Chunabhati Area", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_REVENUE_VIL34", + "message": "Srikanthapur(P), Jadpur(P), Vetenary Hospital Area & Darjo Pokhari Area", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_REVENUE_VIL35", + "message": "Jadpur(P) Arad Bazar Area, Golapolo Area", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_REVENUE_VIL4", + "message": "Isan Nagar, Rameswar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_REVENUE_VIL5", + "message": "Padhunpada, Azimabad", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_REVENUE_VIL6", + "message": "Chandragadia, Azimabad", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_REVENUE_VIL7", + "message": "Bhaskarganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_REVENUE_VIL8", + "message": "Jadpur, Arad Bazar, Darji Pokhori, Golapolo", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_REVENUE_VIL9", + "message": "Aktiarpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL10_SL001", + "message": "Mahammadpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL10_SL002", + "message": "Kanhu Behera Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL10_SL003", + "message": "Munipada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL10_SL004", + "message": "Malik Sahi-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL10_SL005", + "message": "Malik Sahi-2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL10_SL006", + "message": "Uchhapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL10_SL007", + "message": "Mansing Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL10_SL008", + "message": "Khaparapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL10_SL009", + "message": "Angaragadia Cold Store", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL10_SL010", + "message": "Angaragadia Rameswar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL10_SL011", + "message": "Angargadia DIC Office", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL10_SL012", + "message": "Angargadia Rameswar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL10_SL013", + "message": "Bateswar Sweeper Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL10_SL014", + "message": "Nua Bazar Adi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL10_SL015", + "message": "Arad bazar-3", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL10_SL016", + "message": "Nua Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL10_SL017", + "message": "Aradbazar 2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL10_SL018", + "message": "Arad Bazar-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL10_SL019", + "message": "Bhaskarganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL10_SL020", + "message": "Tail basa", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL10_SL021", + "message": "Chudakutasahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL10_SL022", + "message": "Telenga Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL10_SL023", + "message": "Gudipada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL10_SL024", + "message": "Sweeper Colony Bhaskarganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL10_SL025", + "message": "Godhibasa", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL10_SL026", + "message": "Ananda Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL10_SL027", + "message": "Railway Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL10_SL028", + "message": "Bhalia dang", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL10_SL029", + "message": "Chhachina Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL10_SL030", + "message": "Gosalapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL10_SL031", + "message": "Balighat", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL10_SL032", + "message": "Sweeper Colony Olondaz Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL10_SL033", + "message": "Adibasi Sahi Town Hall", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL10_SL034", + "message": "Congress gali baula pokhari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL10_SL035", + "message": "Gopalgaon Tala Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL10_SL036", + "message": "Mirzapokhari Sweeper Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL10_SL037", + "message": "Darzi Pokhari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL10_SL038", + "message": "Mahila College Back side Adibasi Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL10_SL039", + "message": "Jadav Pur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL10_SL040", + "message": "Lepracy Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL10_SL041", + "message": "Golapolo", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL11_SL001", + "message": "Mahammadpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL11_SL002", + "message": "Kanhu Behera Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL11_SL003", + "message": "Munipada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL11_SL004", + "message": "Malik Sahi-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL11_SL005", + "message": "Malik Sahi-2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL11_SL006", + "message": "Uchhapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL11_SL007", + "message": "Mansing Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL11_SL008", + "message": "Khaparapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL11_SL009", + "message": "Angaragadia Cold Store", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL11_SL010", + "message": "Angaragadia Rameswar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL11_SL011", + "message": "Angargadia DIC Office", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL11_SL012", + "message": "Angargadia Rameswar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL11_SL013", + "message": "Bateswar Sweeper Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL11_SL014", + "message": "Nua Bazar Adi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL11_SL015", + "message": "Arad bazar-3", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL11_SL016", + "message": "Nua Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL11_SL017", + "message": "Aradbazar 2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL11_SL018", + "message": "Arad Bazar-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL11_SL019", + "message": "Bhaskarganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL11_SL020", + "message": "Tail basa", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL11_SL021", + "message": "Chudakutasahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL11_SL022", + "message": "Telenga Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL11_SL023", + "message": "Gudipada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL11_SL024", + "message": "Sweeper Colony Bhaskarganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL11_SL025", + "message": "Godhibasa", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL11_SL026", + "message": "Ananda Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL11_SL027", + "message": "Railway Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL11_SL028", + "message": "Bhalia dang", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL11_SL029", + "message": "Chhachina Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL11_SL030", + "message": "Gosalapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL11_SL031", + "message": "Balighat", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL11_SL032", + "message": "Sweeper Colony Olondaz Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL11_SL033", + "message": "Adibasi Sahi Town Hall", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL11_SL034", + "message": "Congress gali baula pokhari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL11_SL035", + "message": "Gopalgaon Tala Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL11_SL036", + "message": "Mirzapokhari Sweeper Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL11_SL037", + "message": "Darzi Pokhari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL11_SL038", + "message": "Mahila College Back side Adibasi Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL11_SL039", + "message": "Jadav Pur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL11_SL040", + "message": "Lepracy Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL11_SL041", + "message": "Golapolo", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL12_SL001", + "message": "Mahammadpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL12_SL002", + "message": "Kanhu Behera Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL12_SL003", + "message": "Munipada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL12_SL004", + "message": "Malik Sahi-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL12_SL005", + "message": "Malik Sahi-2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL12_SL006", + "message": "Uchhapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL12_SL007", + "message": "Mansing Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL12_SL008", + "message": "Khaparapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL12_SL009", + "message": "Angaragadia Cold Store", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL12_SL010", + "message": "Angaragadia Rameswar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL12_SL011", + "message": "Angargadia DIC Office", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL12_SL012", + "message": "Angargadia Rameswar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL12_SL013", + "message": "Bateswar Sweeper Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL12_SL014", + "message": "Nua Bazar Adi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL12_SL015", + "message": "Arad bazar-3", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL12_SL016", + "message": "Nua Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL12_SL017", + "message": "Aradbazar 2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL12_SL018", + "message": "Arad Bazar-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL12_SL019", + "message": "Bhaskarganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL12_SL020", + "message": "Tail basa", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL12_SL021", + "message": "Chudakutasahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL12_SL022", + "message": "Telenga Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL12_SL023", + "message": "Gudipada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL12_SL024", + "message": "Sweeper Colony Bhaskarganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL12_SL025", + "message": "Godhibasa", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL12_SL026", + "message": "Ananda Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL12_SL027", + "message": "Railway Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL12_SL028", + "message": "Bhalia dang", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL12_SL029", + "message": "Chhachina Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL12_SL030", + "message": "Gosalapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL12_SL031", + "message": "Balighat", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL12_SL032", + "message": "Sweeper Colony Olondaz Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL12_SL033", + "message": "Adibasi Sahi Town Hall", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL12_SL034", + "message": "Congress gali baula pokhari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL12_SL035", + "message": "Gopalgaon Tala Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL12_SL036", + "message": "Mirzapokhari Sweeper Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL12_SL037", + "message": "Darzi Pokhari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL12_SL038", + "message": "Mahila College Back side Adibasi Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL12_SL039", + "message": "Jadav Pur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL12_SL040", + "message": "Lepracy Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL12_SL041", + "message": "Golapolo", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL13_SL001", + "message": "Mahammadpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL13_SL002", + "message": "Kanhu Behera Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL13_SL003", + "message": "Munipada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL13_SL004", + "message": "Malik Sahi-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL13_SL005", + "message": "Malik Sahi-2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL13_SL006", + "message": "Uchhapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL13_SL007", + "message": "Mansing Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL13_SL008", + "message": "Khaparapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL13_SL009", + "message": "Angaragadia Cold Store", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL13_SL010", + "message": "Angaragadia Rameswar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL13_SL011", + "message": "Angargadia DIC Office", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL13_SL012", + "message": "Angargadia Rameswar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL13_SL013", + "message": "Bateswar Sweeper Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL13_SL014", + "message": "Nua Bazar Adi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL13_SL015", + "message": "Arad bazar-3", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL13_SL016", + "message": "Nua Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL13_SL017", + "message": "Aradbazar 2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL13_SL018", + "message": "Arad Bazar-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL13_SL019", + "message": "Bhaskarganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL13_SL020", + "message": "Tail basa", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL13_SL021", + "message": "Chudakutasahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL13_SL022", + "message": "Telenga Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL13_SL023", + "message": "Gudipada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL13_SL024", + "message": "Sweeper Colony Bhaskarganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL13_SL025", + "message": "Godhibasa", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL13_SL026", + "message": "Ananda Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL13_SL027", + "message": "Railway Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL13_SL028", + "message": "Bhalia dang", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL13_SL029", + "message": "Chhachina Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL13_SL030", + "message": "Gosalapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL13_SL031", + "message": "Balighat", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL13_SL032", + "message": "Sweeper Colony Olondaz Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL13_SL033", + "message": "Adibasi Sahi Town Hall", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL13_SL034", + "message": "Congress gali baula pokhari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL13_SL035", + "message": "Gopalgaon Tala Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL13_SL036", + "message": "Mirzapokhari Sweeper Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL13_SL037", + "message": "Darzi Pokhari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL13_SL038", + "message": "Mahila College Back side Adibasi Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL13_SL039", + "message": "Jadav Pur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL13_SL040", + "message": "Lepracy Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL13_SL041", + "message": "Golapolo", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL14_SL001", + "message": "Mahammadpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL14_SL002", + "message": "Kanhu Behera Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL14_SL003", + "message": "Munipada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL14_SL004", + "message": "Malik Sahi-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL14_SL005", + "message": "Malik Sahi-2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL14_SL006", + "message": "Uchhapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL14_SL007", + "message": "Mansing Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL14_SL008", + "message": "Khaparapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL14_SL009", + "message": "Angaragadia Cold Store", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL14_SL010", + "message": "Angaragadia Rameswar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL14_SL011", + "message": "Angargadia DIC Office", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL14_SL012", + "message": "Angargadia Rameswar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL14_SL013", + "message": "Bateswar Sweeper Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL14_SL014", + "message": "Nua Bazar Adi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL14_SL015", + "message": "Arad bazar-3", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL14_SL016", + "message": "Nua Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL14_SL017", + "message": "Aradbazar 2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL14_SL018", + "message": "Arad Bazar-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL14_SL019", + "message": "Bhaskarganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL14_SL020", + "message": "Tail basa", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL14_SL021", + "message": "Chudakutasahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL14_SL022", + "message": "Telenga Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL14_SL023", + "message": "Gudipada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL14_SL024", + "message": "Sweeper Colony Bhaskarganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL14_SL025", + "message": "Godhibasa", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL14_SL026", + "message": "Ananda Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL14_SL027", + "message": "Railway Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL14_SL028", + "message": "Bhalia dang", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL14_SL029", + "message": "Chhachina Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL14_SL030", + "message": "Gosalapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL14_SL031", + "message": "Balighat", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL14_SL032", + "message": "Sweeper Colony Olondaz Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL14_SL033", + "message": "Adibasi Sahi Town Hall", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL14_SL034", + "message": "Congress gali baula pokhari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL14_SL035", + "message": "Gopalgaon Tala Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL14_SL036", + "message": "Mirzapokhari Sweeper Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL14_SL037", + "message": "Darzi Pokhari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL14_SL038", + "message": "Mahila College Back side Adibasi Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL14_SL039", + "message": "Jadav Pur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL14_SL040", + "message": "Lepracy Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL14_SL041", + "message": "Golapolo", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL15_SL001", + "message": "Mahammadpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL15_SL002", + "message": "Kanhu Behera Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL15_SL003", + "message": "Munipada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL15_SL004", + "message": "Malik Sahi-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL15_SL005", + "message": "Malik Sahi-2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL15_SL006", + "message": "Uchhapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL15_SL007", + "message": "Mansing Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL15_SL008", + "message": "Khaparapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL15_SL009", + "message": "Angaragadia Cold Store", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL15_SL010", + "message": "Angaragadia Rameswar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL15_SL011", + "message": "Angargadia DIC Office", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL15_SL012", + "message": "Angargadia Rameswar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL15_SL013", + "message": "Bateswar Sweeper Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL15_SL014", + "message": "Nua Bazar Adi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL15_SL015", + "message": "Arad bazar-3", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL15_SL016", + "message": "Nua Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL15_SL017", + "message": "Aradbazar 2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL15_SL018", + "message": "Arad Bazar-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL15_SL019", + "message": "Bhaskarganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL15_SL020", + "message": "Tail basa", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL15_SL021", + "message": "Chudakutasahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL15_SL022", + "message": "Telenga Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL15_SL023", + "message": "Gudipada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL15_SL024", + "message": "Sweeper Colony Bhaskarganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL15_SL025", + "message": "Godhibasa", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL15_SL026", + "message": "Ananda Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL15_SL027", + "message": "Railway Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL15_SL028", + "message": "Bhalia dang", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL15_SL029", + "message": "Chhachina Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL15_SL030", + "message": "Gosalapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL15_SL031", + "message": "Balighat", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL15_SL032", + "message": "Sweeper Colony Olondaz Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL15_SL033", + "message": "Adibasi Sahi Town Hall", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL15_SL034", + "message": "Congress gali baula pokhari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL15_SL035", + "message": "Gopalgaon Tala Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL15_SL036", + "message": "Mirzapokhari Sweeper Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL15_SL037", + "message": "Darzi Pokhari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL15_SL038", + "message": "Mahila College Back side Adibasi Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL15_SL039", + "message": "Jadav Pur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL15_SL040", + "message": "Lepracy Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL15_SL041", + "message": "Golapolo", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL16_SL001", + "message": "Mahammadpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL16_SL002", + "message": "Kanhu Behera Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL16_SL003", + "message": "Munipada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL16_SL004", + "message": "Malik Sahi-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL16_SL005", + "message": "Malik Sahi-2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL16_SL006", + "message": "Uchhapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL16_SL007", + "message": "Mansing Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL16_SL008", + "message": "Khaparapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL16_SL009", + "message": "Angaragadia Cold Store", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL16_SL010", + "message": "Angaragadia Rameswar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL16_SL011", + "message": "Angargadia DIC Office", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL16_SL012", + "message": "Angargadia Rameswar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL16_SL013", + "message": "Bateswar Sweeper Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL16_SL014", + "message": "Nua Bazar Adi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL16_SL015", + "message": "Arad bazar-3", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL16_SL016", + "message": "Nua Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL16_SL017", + "message": "Aradbazar 2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL16_SL018", + "message": "Arad Bazar-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL16_SL019", + "message": "Bhaskarganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL16_SL020", + "message": "Tail basa", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL16_SL021", + "message": "Chudakutasahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL16_SL022", + "message": "Telenga Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL16_SL023", + "message": "Gudipada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL16_SL024", + "message": "Sweeper Colony Bhaskarganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL16_SL025", + "message": "Godhibasa", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL16_SL026", + "message": "Ananda Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL16_SL027", + "message": "Railway Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL16_SL028", + "message": "Bhalia dang", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL16_SL029", + "message": "Chhachina Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL16_SL030", + "message": "Gosalapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL16_SL031", + "message": "Balighat", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL16_SL032", + "message": "Sweeper Colony Olondaz Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL16_SL033", + "message": "Adibasi Sahi Town Hall", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL16_SL034", + "message": "Congress gali baula pokhari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL16_SL035", + "message": "Gopalgaon Tala Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL16_SL036", + "message": "Mirzapokhari Sweeper Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL16_SL037", + "message": "Darzi Pokhari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL16_SL038", + "message": "Mahila College Back side Adibasi Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL16_SL039", + "message": "Jadav Pur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL16_SL040", + "message": "Lepracy Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL16_SL041", + "message": "Golapolo", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL17_SL001", + "message": "Mahammadpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL17_SL002", + "message": "Kanhu Behera Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL17_SL003", + "message": "Munipada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL17_SL004", + "message": "Malik Sahi-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL17_SL005", + "message": "Malik Sahi-2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL17_SL006", + "message": "Uchhapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL17_SL007", + "message": "Mansing Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL17_SL008", + "message": "Khaparapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL17_SL009", + "message": "Angaragadia Cold Store", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL17_SL010", + "message": "Angaragadia Rameswar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL17_SL011", + "message": "Angargadia DIC Office", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL17_SL012", + "message": "Angargadia Rameswar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL17_SL013", + "message": "Bateswar Sweeper Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL17_SL014", + "message": "Nua Bazar Adi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL17_SL015", + "message": "Arad bazar-3", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL17_SL016", + "message": "Nua Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL17_SL017", + "message": "Aradbazar 2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL17_SL018", + "message": "Arad Bazar-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL17_SL019", + "message": "Bhaskarganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL17_SL020", + "message": "Tail basa", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL17_SL021", + "message": "Chudakutasahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL17_SL022", + "message": "Telenga Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL17_SL023", + "message": "Gudipada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL17_SL024", + "message": "Sweeper Colony Bhaskarganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL17_SL025", + "message": "Godhibasa", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL17_SL026", + "message": "Ananda Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL17_SL027", + "message": "Railway Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL17_SL028", + "message": "Bhalia dang", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL17_SL029", + "message": "Chhachina Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL17_SL030", + "message": "Gosalapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL17_SL031", + "message": "Balighat", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL17_SL032", + "message": "Sweeper Colony Olondaz Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL17_SL033", + "message": "Adibasi Sahi Town Hall", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL17_SL034", + "message": "Congress gali baula pokhari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL17_SL035", + "message": "Gopalgaon Tala Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL17_SL036", + "message": "Mirzapokhari Sweeper Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL17_SL037", + "message": "Darzi Pokhari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL17_SL038", + "message": "Mahila College Back side Adibasi Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL17_SL039", + "message": "Jadav Pur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL17_SL040", + "message": "Lepracy Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL17_SL041", + "message": "Golapolo", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL18_SL001", + "message": "Mahammadpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL18_SL002", + "message": "Kanhu Behera Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL18_SL003", + "message": "Munipada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL18_SL004", + "message": "Malik Sahi-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL18_SL005", + "message": "Malik Sahi-2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL18_SL006", + "message": "Uchhapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL18_SL007", + "message": "Mansing Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL18_SL008", + "message": "Khaparapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL18_SL009", + "message": "Angaragadia Cold Store", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL18_SL010", + "message": "Angaragadia Rameswar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL18_SL011", + "message": "Angargadia DIC Office", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL18_SL012", + "message": "Angargadia Rameswar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL18_SL013", + "message": "Bateswar Sweeper Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL18_SL014", + "message": "Nua Bazar Adi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL18_SL015", + "message": "Arad bazar-3", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL18_SL016", + "message": "Nua Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL18_SL017", + "message": "Aradbazar 2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL18_SL018", + "message": "Arad Bazar-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL18_SL019", + "message": "Bhaskarganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL18_SL020", + "message": "Tail basa", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL18_SL021", + "message": "Chudakutasahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL18_SL022", + "message": "Telenga Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL18_SL023", + "message": "Gudipada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL18_SL024", + "message": "Sweeper Colony Bhaskarganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL18_SL025", + "message": "Godhibasa", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL18_SL026", + "message": "Ananda Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL18_SL027", + "message": "Railway Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL18_SL028", + "message": "Bhalia dang", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL18_SL029", + "message": "Chhachina Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL18_SL030", + "message": "Gosalapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL18_SL031", + "message": "Balighat", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL18_SL032", + "message": "Sweeper Colony Olondaz Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL18_SL033", + "message": "Adibasi Sahi Town Hall", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL18_SL034", + "message": "Congress gali baula pokhari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL18_SL035", + "message": "Gopalgaon Tala Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL18_SL036", + "message": "Mirzapokhari Sweeper Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL18_SL037", + "message": "Darzi Pokhari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL18_SL038", + "message": "Mahila College Back side Adibasi Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL18_SL039", + "message": "Jadav Pur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL18_SL040", + "message": "Lepracy Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL18_SL041", + "message": "Golapolo", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL19_SL001", + "message": "Mahammadpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL19_SL002", + "message": "Kanhu Behera Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL19_SL003", + "message": "Munipada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL19_SL004", + "message": "Malik Sahi-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL19_SL005", + "message": "Malik Sahi-2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL19_SL006", + "message": "Uchhapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL19_SL007", + "message": "Mansing Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL19_SL008", + "message": "Khaparapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL19_SL009", + "message": "Angaragadia Cold Store", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL19_SL010", + "message": "Angaragadia Rameswar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL19_SL011", + "message": "Angargadia DIC Office", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL19_SL012", + "message": "Angargadia Rameswar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL19_SL013", + "message": "Bateswar Sweeper Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL19_SL014", + "message": "Nua Bazar Adi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL19_SL015", + "message": "Arad bazar-3", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL19_SL016", + "message": "Nua Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL19_SL017", + "message": "Aradbazar 2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL19_SL018", + "message": "Arad Bazar-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL19_SL019", + "message": "Bhaskarganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL19_SL020", + "message": "Tail basa", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL19_SL021", + "message": "Chudakutasahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL19_SL022", + "message": "Telenga Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL19_SL023", + "message": "Gudipada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL19_SL024", + "message": "Sweeper Colony Bhaskarganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL19_SL025", + "message": "Godhibasa", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL19_SL026", + "message": "Ananda Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL19_SL027", + "message": "Railway Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL19_SL028", + "message": "Bhalia dang", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL19_SL029", + "message": "Chhachina Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL19_SL030", + "message": "Gosalapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL19_SL031", + "message": "Balighat", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL19_SL032", + "message": "Sweeper Colony Olondaz Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL19_SL033", + "message": "Adibasi Sahi Town Hall", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL19_SL034", + "message": "Congress gali baula pokhari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL19_SL035", + "message": "Gopalgaon Tala Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL19_SL036", + "message": "Mirzapokhari Sweeper Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL19_SL037", + "message": "Darzi Pokhari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL19_SL038", + "message": "Mahila College Back side Adibasi Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL19_SL039", + "message": "Jadav Pur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL19_SL040", + "message": "Lepracy Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL19_SL041", + "message": "Golapolo", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL1_SL001", + "message": "Mahammadpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL1_SL002", + "message": "Kanhu Behera Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL1_SL003", + "message": "Munipada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL1_SL004", + "message": "Malik Sahi-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL1_SL005", + "message": "Malik Sahi-2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL1_SL006", + "message": "Uchhapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL1_SL007", + "message": "Mansing Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL1_SL008", + "message": "Khaparapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL1_SL009", + "message": "Angaragadia Cold Store", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL1_SL010", + "message": "Angaragadia Rameswar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL1_SL011", + "message": "Angargadia DIC Office", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL1_SL012", + "message": "Angargadia Rameswar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL1_SL013", + "message": "Bateswar Sweeper Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL1_SL014", + "message": "Nua Bazar Adi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL1_SL015", + "message": "Arad bazar-3", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL1_SL016", + "message": "Nua Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL1_SL017", + "message": "Aradbazar 2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL1_SL018", + "message": "Arad Bazar-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL1_SL019", + "message": "Bhaskarganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL1_SL020", + "message": "Tail basa", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL1_SL021", + "message": "Chudakutasahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL1_SL022", + "message": "Telenga Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL1_SL023", + "message": "Gudipada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL1_SL024", + "message": "Sweeper Colony Bhaskarganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL1_SL025", + "message": "Godhibasa", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL1_SL026", + "message": "Ananda Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL1_SL027", + "message": "Railway Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL1_SL028", + "message": "Bhalia dang", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL1_SL029", + "message": "Chhachina Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL1_SL030", + "message": "Gosalapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL1_SL031", + "message": "Balighat", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL1_SL032", + "message": "Sweeper Colony Olondaz Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL1_SL033", + "message": "Adibasi Sahi Town Hall", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL1_SL034", + "message": "Congress gali baula pokhari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL1_SL035", + "message": "Gopalgaon Tala Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL1_SL036", + "message": "Mirzapokhari Sweeper Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL1_SL037", + "message": "Darzi Pokhari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL1_SL038", + "message": "Mahila College Back side Adibasi Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL1_SL039", + "message": "Jadav Pur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL1_SL040", + "message": "Lepracy Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL1_SL041", + "message": "Golapolo", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL20_SL001", + "message": "Mahammadpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL20_SL002", + "message": "Kanhu Behera Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL20_SL003", + "message": "Munipada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL20_SL004", + "message": "Malik Sahi-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL20_SL005", + "message": "Malik Sahi-2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL20_SL006", + "message": "Uchhapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL20_SL007", + "message": "Mansing Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL20_SL008", + "message": "Khaparapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL20_SL009", + "message": "Angaragadia Cold Store", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL20_SL010", + "message": "Angaragadia Rameswar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL20_SL011", + "message": "Angargadia DIC Office", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL20_SL012", + "message": "Angargadia Rameswar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL20_SL013", + "message": "Bateswar Sweeper Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL20_SL014", + "message": "Nua Bazar Adi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL20_SL015", + "message": "Arad bazar-3", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL20_SL016", + "message": "Nua Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL20_SL017", + "message": "Aradbazar 2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL20_SL018", + "message": "Arad Bazar-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL20_SL019", + "message": "Bhaskarganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL20_SL020", + "message": "Tail basa", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL20_SL021", + "message": "Chudakutasahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL20_SL022", + "message": "Telenga Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL20_SL023", + "message": "Gudipada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL20_SL024", + "message": "Sweeper Colony Bhaskarganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL20_SL025", + "message": "Godhibasa", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL20_SL026", + "message": "Ananda Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL20_SL027", + "message": "Railway Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL20_SL028", + "message": "Bhalia dang", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL20_SL029", + "message": "Chhachina Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL20_SL030", + "message": "Gosalapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL20_SL031", + "message": "Balighat", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL20_SL032", + "message": "Sweeper Colony Olondaz Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL20_SL033", + "message": "Adibasi Sahi Town Hall", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL20_SL034", + "message": "Congress gali baula pokhari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL20_SL035", + "message": "Gopalgaon Tala Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL20_SL036", + "message": "Mirzapokhari Sweeper Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL20_SL037", + "message": "Darzi Pokhari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL20_SL038", + "message": "Mahila College Back side Adibasi Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL20_SL039", + "message": "Jadav Pur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL20_SL040", + "message": "Lepracy Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL20_SL041", + "message": "Golapolo", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL21_SL001", + "message": "Mahammadpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL21_SL002", + "message": "Kanhu Behera Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL21_SL003", + "message": "Munipada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL21_SL004", + "message": "Malik Sahi-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL21_SL005", + "message": "Malik Sahi-2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL21_SL006", + "message": "Uchhapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL21_SL007", + "message": "Mansing Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL21_SL008", + "message": "Khaparapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL21_SL009", + "message": "Angaragadia Cold Store", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL21_SL010", + "message": "Angaragadia Rameswar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL21_SL011", + "message": "Angargadia DIC Office", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL21_SL012", + "message": "Angargadia Rameswar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL21_SL013", + "message": "Bateswar Sweeper Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL21_SL014", + "message": "Nua Bazar Adi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL21_SL015", + "message": "Arad bazar-3", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL21_SL016", + "message": "Nua Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL21_SL017", + "message": "Aradbazar 2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL21_SL018", + "message": "Arad Bazar-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL21_SL019", + "message": "Bhaskarganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL21_SL020", + "message": "Tail basa", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL21_SL021", + "message": "Chudakutasahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL21_SL022", + "message": "Telenga Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL21_SL023", + "message": "Gudipada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL21_SL024", + "message": "Sweeper Colony Bhaskarganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL21_SL025", + "message": "Godhibasa", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL21_SL026", + "message": "Ananda Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL21_SL027", + "message": "Railway Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL21_SL028", + "message": "Bhalia dang", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL21_SL029", + "message": "Chhachina Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL21_SL030", + "message": "Gosalapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL21_SL031", + "message": "Balighat", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL21_SL032", + "message": "Sweeper Colony Olondaz Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL21_SL033", + "message": "Adibasi Sahi Town Hall", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL21_SL034", + "message": "Congress gali baula pokhari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL21_SL035", + "message": "Gopalgaon Tala Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL21_SL036", + "message": "Mirzapokhari Sweeper Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL21_SL037", + "message": "Darzi Pokhari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL21_SL038", + "message": "Mahila College Back side Adibasi Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL21_SL039", + "message": "Jadav Pur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL21_SL040", + "message": "Lepracy Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL21_SL041", + "message": "Golapolo", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL22_SL001", + "message": "Mahammadpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL22_SL002", + "message": "Kanhu Behera Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL22_SL003", + "message": "Munipada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL22_SL004", + "message": "Malik Sahi-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL22_SL005", + "message": "Malik Sahi-2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL22_SL006", + "message": "Uchhapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL22_SL007", + "message": "Mansing Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL22_SL008", + "message": "Khaparapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL22_SL009", + "message": "Angaragadia Cold Store", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL22_SL010", + "message": "Angaragadia Rameswar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL22_SL011", + "message": "Angargadia DIC Office", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL22_SL012", + "message": "Angargadia Rameswar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL22_SL013", + "message": "Bateswar Sweeper Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL22_SL014", + "message": "Nua Bazar Adi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL22_SL015", + "message": "Arad bazar-3", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL22_SL016", + "message": "Nua Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL22_SL017", + "message": "Aradbazar 2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL22_SL018", + "message": "Arad Bazar-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL22_SL019", + "message": "Bhaskarganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL22_SL020", + "message": "Tail basa", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL22_SL021", + "message": "Chudakutasahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL22_SL022", + "message": "Telenga Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL22_SL023", + "message": "Gudipada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL22_SL024", + "message": "Sweeper Colony Bhaskarganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL22_SL025", + "message": "Godhibasa", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL22_SL026", + "message": "Ananda Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL22_SL027", + "message": "Railway Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL22_SL028", + "message": "Bhalia dang", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL22_SL029", + "message": "Chhachina Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL22_SL030", + "message": "Gosalapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL22_SL031", + "message": "Balighat", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL22_SL032", + "message": "Sweeper Colony Olondaz Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL22_SL033", + "message": "Adibasi Sahi Town Hall", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL22_SL034", + "message": "Congress gali baula pokhari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL22_SL035", + "message": "Gopalgaon Tala Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL22_SL036", + "message": "Mirzapokhari Sweeper Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL22_SL037", + "message": "Darzi Pokhari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL22_SL038", + "message": "Mahila College Back side Adibasi Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL22_SL039", + "message": "Jadav Pur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL22_SL040", + "message": "Lepracy Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL22_SL041", + "message": "Golapolo", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL23_SL001", + "message": "Mahammadpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL23_SL002", + "message": "Kanhu Behera Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL23_SL003", + "message": "Munipada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL23_SL004", + "message": "Malik Sahi-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL23_SL005", + "message": "Malik Sahi-2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL23_SL006", + "message": "Uchhapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL23_SL007", + "message": "Mansing Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL23_SL008", + "message": "Khaparapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL23_SL009", + "message": "Angaragadia Cold Store", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL23_SL010", + "message": "Angaragadia Rameswar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL23_SL011", + "message": "Angargadia DIC Office", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL23_SL012", + "message": "Angargadia Rameswar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL23_SL013", + "message": "Bateswar Sweeper Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL23_SL014", + "message": "Nua Bazar Adi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL23_SL015", + "message": "Arad bazar-3", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL23_SL016", + "message": "Nua Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL23_SL017", + "message": "Aradbazar 2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL23_SL018", + "message": "Arad Bazar-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL23_SL019", + "message": "Bhaskarganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL23_SL020", + "message": "Tail basa", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL23_SL021", + "message": "Chudakutasahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL23_SL022", + "message": "Telenga Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL23_SL023", + "message": "Gudipada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL23_SL024", + "message": "Sweeper Colony Bhaskarganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL23_SL025", + "message": "Godhibasa", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL23_SL026", + "message": "Ananda Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL23_SL027", + "message": "Railway Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL23_SL028", + "message": "Bhalia dang", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL23_SL029", + "message": "Chhachina Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL23_SL030", + "message": "Gosalapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL23_SL031", + "message": "Balighat", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL23_SL032", + "message": "Sweeper Colony Olondaz Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL23_SL033", + "message": "Adibasi Sahi Town Hall", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL23_SL034", + "message": "Congress gali baula pokhari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL23_SL035", + "message": "Gopalgaon Tala Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL23_SL036", + "message": "Mirzapokhari Sweeper Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL23_SL037", + "message": "Darzi Pokhari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL23_SL038", + "message": "Mahila College Back side Adibasi Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL23_SL039", + "message": "Jadav Pur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL23_SL040", + "message": "Lepracy Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL23_SL041", + "message": "Golapolo", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL24_SL001", + "message": "Mahammadpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL24_SL002", + "message": "Kanhu Behera Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL24_SL003", + "message": "Munipada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL24_SL004", + "message": "Malik Sahi-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL24_SL005", + "message": "Malik Sahi-2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL24_SL006", + "message": "Uchhapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL24_SL007", + "message": "Mansing Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL24_SL008", + "message": "Khaparapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL24_SL009", + "message": "Angaragadia Cold Store", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL24_SL010", + "message": "Angaragadia Rameswar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL24_SL011", + "message": "Angargadia DIC Office", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL24_SL012", + "message": "Angargadia Rameswar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL24_SL013", + "message": "Bateswar Sweeper Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL24_SL014", + "message": "Nua Bazar Adi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL24_SL015", + "message": "Arad bazar-3", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL24_SL016", + "message": "Nua Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL24_SL017", + "message": "Aradbazar 2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL24_SL018", + "message": "Arad Bazar-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL24_SL019", + "message": "Bhaskarganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL24_SL020", + "message": "Tail basa", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL24_SL021", + "message": "Chudakutasahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL24_SL022", + "message": "Telenga Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL24_SL023", + "message": "Gudipada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL24_SL024", + "message": "Sweeper Colony Bhaskarganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL24_SL025", + "message": "Godhibasa", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL24_SL026", + "message": "Ananda Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL24_SL027", + "message": "Railway Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL24_SL028", + "message": "Bhalia dang", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL24_SL029", + "message": "Chhachina Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL24_SL030", + "message": "Gosalapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL24_SL031", + "message": "Balighat", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL24_SL032", + "message": "Sweeper Colony Olondaz Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL24_SL033", + "message": "Adibasi Sahi Town Hall", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL24_SL034", + "message": "Congress gali baula pokhari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL24_SL035", + "message": "Gopalgaon Tala Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL24_SL036", + "message": "Mirzapokhari Sweeper Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL24_SL037", + "message": "Darzi Pokhari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL24_SL038", + "message": "Mahila College Back side Adibasi Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL24_SL039", + "message": "Jadav Pur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL24_SL040", + "message": "Lepracy Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL24_SL041", + "message": "Golapolo", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL25_SL001", + "message": "Mahammadpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL25_SL002", + "message": "Kanhu Behera Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL25_SL003", + "message": "Munipada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL25_SL004", + "message": "Malik Sahi-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL25_SL005", + "message": "Malik Sahi-2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL25_SL006", + "message": "Uchhapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL25_SL007", + "message": "Mansing Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL25_SL008", + "message": "Khaparapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL25_SL009", + "message": "Angaragadia Cold Store", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL25_SL010", + "message": "Angaragadia Rameswar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL25_SL011", + "message": "Angargadia DIC Office", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL25_SL012", + "message": "Angargadia Rameswar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL25_SL013", + "message": "Bateswar Sweeper Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL25_SL014", + "message": "Nua Bazar Adi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL25_SL015", + "message": "Arad bazar-3", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL25_SL016", + "message": "Nua Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL25_SL017", + "message": "Aradbazar 2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL25_SL018", + "message": "Arad Bazar-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL25_SL019", + "message": "Bhaskarganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL25_SL020", + "message": "Tail basa", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL25_SL021", + "message": "Chudakutasahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL25_SL022", + "message": "Telenga Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL25_SL023", + "message": "Gudipada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL25_SL024", + "message": "Sweeper Colony Bhaskarganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL25_SL025", + "message": "Godhibasa", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL25_SL026", + "message": "Ananda Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL25_SL027", + "message": "Railway Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL25_SL028", + "message": "Bhalia dang", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL25_SL029", + "message": "Chhachina Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL25_SL030", + "message": "Gosalapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL25_SL031", + "message": "Balighat", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL25_SL032", + "message": "Sweeper Colony Olondaz Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL25_SL033", + "message": "Adibasi Sahi Town Hall", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL25_SL034", + "message": "Congress gali baula pokhari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL25_SL035", + "message": "Gopalgaon Tala Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL25_SL036", + "message": "Mirzapokhari Sweeper Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL25_SL037", + "message": "Darzi Pokhari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL25_SL038", + "message": "Mahila College Back side Adibasi Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL25_SL039", + "message": "Jadav Pur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL25_SL040", + "message": "Lepracy Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL25_SL041", + "message": "Golapolo", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL26_SL001", + "message": "Mahammadpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL26_SL002", + "message": "Kanhu Behera Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL26_SL003", + "message": "Munipada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL26_SL004", + "message": "Malik Sahi-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL26_SL005", + "message": "Malik Sahi-2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL26_SL006", + "message": "Uchhapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL26_SL007", + "message": "Mansing Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL26_SL008", + "message": "Khaparapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL26_SL009", + "message": "Angaragadia Cold Store", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL26_SL010", + "message": "Angaragadia Rameswar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL26_SL011", + "message": "Angargadia DIC Office", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL26_SL012", + "message": "Angargadia Rameswar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL26_SL013", + "message": "Bateswar Sweeper Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL26_SL014", + "message": "Nua Bazar Adi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL26_SL015", + "message": "Arad bazar-3", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL26_SL016", + "message": "Nua Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL26_SL017", + "message": "Aradbazar 2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL26_SL018", + "message": "Arad Bazar-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL26_SL019", + "message": "Bhaskarganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL26_SL020", + "message": "Tail basa", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL26_SL021", + "message": "Chudakutasahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL26_SL022", + "message": "Telenga Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL26_SL023", + "message": "Gudipada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL26_SL024", + "message": "Sweeper Colony Bhaskarganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL26_SL025", + "message": "Godhibasa", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL26_SL026", + "message": "Ananda Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL26_SL027", + "message": "Railway Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL26_SL028", + "message": "Bhalia dang", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL26_SL029", + "message": "Chhachina Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL26_SL030", + "message": "Gosalapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL26_SL031", + "message": "Balighat", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL26_SL032", + "message": "Sweeper Colony Olondaz Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL26_SL033", + "message": "Adibasi Sahi Town Hall", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL26_SL034", + "message": "Congress gali baula pokhari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL26_SL035", + "message": "Gopalgaon Tala Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL26_SL036", + "message": "Mirzapokhari Sweeper Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL26_SL037", + "message": "Darzi Pokhari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL26_SL038", + "message": "Mahila College Back side Adibasi Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL26_SL039", + "message": "Jadav Pur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL26_SL040", + "message": "Lepracy Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL26_SL041", + "message": "Golapolo", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL27_SL001", + "message": "Mahammadpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL27_SL002", + "message": "Kanhu Behera Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL27_SL003", + "message": "Munipada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL27_SL004", + "message": "Malik Sahi-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL27_SL005", + "message": "Malik Sahi-2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL27_SL006", + "message": "Uchhapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL27_SL007", + "message": "Mansing Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL27_SL008", + "message": "Khaparapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL27_SL009", + "message": "Angaragadia Cold Store", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL27_SL010", + "message": "Angaragadia Rameswar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL27_SL011", + "message": "Angargadia DIC Office", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL27_SL012", + "message": "Angargadia Rameswar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL27_SL013", + "message": "Bateswar Sweeper Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL27_SL014", + "message": "Nua Bazar Adi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL27_SL015", + "message": "Arad bazar-3", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL27_SL016", + "message": "Nua Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL27_SL017", + "message": "Aradbazar 2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL27_SL018", + "message": "Arad Bazar-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL27_SL019", + "message": "Bhaskarganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL27_SL020", + "message": "Tail basa", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL27_SL021", + "message": "Chudakutasahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL27_SL022", + "message": "Telenga Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL27_SL023", + "message": "Gudipada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL27_SL024", + "message": "Sweeper Colony Bhaskarganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL27_SL025", + "message": "Godhibasa", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL27_SL026", + "message": "Ananda Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL27_SL027", + "message": "Railway Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL27_SL028", + "message": "Bhalia dang", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL27_SL029", + "message": "Chhachina Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL27_SL030", + "message": "Gosalapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL27_SL031", + "message": "Balighat", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL27_SL032", + "message": "Sweeper Colony Olondaz Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL27_SL033", + "message": "Adibasi Sahi Town Hall", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL27_SL034", + "message": "Congress gali baula pokhari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL27_SL035", + "message": "Gopalgaon Tala Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL27_SL036", + "message": "Mirzapokhari Sweeper Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL27_SL037", + "message": "Darzi Pokhari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL27_SL038", + "message": "Mahila College Back side Adibasi Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL27_SL039", + "message": "Jadav Pur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL27_SL040", + "message": "Lepracy Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL27_SL041", + "message": "Golapolo", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL28_SL001", + "message": "Mahammadpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL28_SL002", + "message": "Kanhu Behera Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL28_SL003", + "message": "Munipada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL28_SL004", + "message": "Malik Sahi-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL28_SL005", + "message": "Malik Sahi-2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL28_SL006", + "message": "Uchhapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL28_SL007", + "message": "Mansing Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL28_SL008", + "message": "Khaparapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL28_SL009", + "message": "Angaragadia Cold Store", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL28_SL010", + "message": "Angaragadia Rameswar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL28_SL011", + "message": "Angargadia DIC Office", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL28_SL012", + "message": "Angargadia Rameswar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL28_SL013", + "message": "Bateswar Sweeper Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL28_SL014", + "message": "Nua Bazar Adi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL28_SL015", + "message": "Arad bazar-3", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL28_SL016", + "message": "Nua Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL28_SL017", + "message": "Aradbazar 2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL28_SL018", + "message": "Arad Bazar-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL28_SL019", + "message": "Bhaskarganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL28_SL020", + "message": "Tail basa", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL28_SL021", + "message": "Chudakutasahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL28_SL022", + "message": "Telenga Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL28_SL023", + "message": "Gudipada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL28_SL024", + "message": "Sweeper Colony Bhaskarganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL28_SL025", + "message": "Godhibasa", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL28_SL026", + "message": "Ananda Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL28_SL027", + "message": "Railway Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL28_SL028", + "message": "Bhalia dang", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL28_SL029", + "message": "Chhachina Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL28_SL030", + "message": "Gosalapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL28_SL031", + "message": "Balighat", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL28_SL032", + "message": "Sweeper Colony Olondaz Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL28_SL033", + "message": "Adibasi Sahi Town Hall", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL28_SL034", + "message": "Congress gali baula pokhari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL28_SL035", + "message": "Gopalgaon Tala Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL28_SL036", + "message": "Mirzapokhari Sweeper Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL28_SL037", + "message": "Darzi Pokhari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL28_SL038", + "message": "Mahila College Back side Adibasi Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL28_SL039", + "message": "Jadav Pur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL28_SL040", + "message": "Lepracy Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL28_SL041", + "message": "Golapolo", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL2_SL001", + "message": "Mahammadpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL2_SL002", + "message": "Kanhu Behera Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL2_SL003", + "message": "Munipada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL2_SL004", + "message": "Malik Sahi-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL2_SL005", + "message": "Malik Sahi-2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL2_SL006", + "message": "Uchhapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL2_SL007", + "message": "Mansing Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL2_SL008", + "message": "Khaparapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL2_SL009", + "message": "Angaragadia Cold Store", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL2_SL010", + "message": "Angaragadia Rameswar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL2_SL011", + "message": "Angargadia DIC Office", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL2_SL012", + "message": "Angargadia Rameswar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL2_SL013", + "message": "Bateswar Sweeper Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL2_SL014", + "message": "Nua Bazar Adi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL2_SL015", + "message": "Arad bazar-3", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL2_SL016", + "message": "Nua Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL2_SL017", + "message": "Aradbazar 2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL2_SL018", + "message": "Arad Bazar-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL2_SL019", + "message": "Bhaskarganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL2_SL020", + "message": "Tail basa", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL2_SL021", + "message": "Chudakutasahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL2_SL022", + "message": "Telenga Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL2_SL023", + "message": "Gudipada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL2_SL024", + "message": "Sweeper Colony Bhaskarganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL2_SL025", + "message": "Godhibasa", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL2_SL026", + "message": "Ananda Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL2_SL027", + "message": "Railway Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL2_SL028", + "message": "Bhalia dang", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL2_SL029", + "message": "Chhachina Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL2_SL030", + "message": "Gosalapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL2_SL031", + "message": "Balighat", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL2_SL032", + "message": "Sweeper Colony Olondaz Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL2_SL033", + "message": "Adibasi Sahi Town Hall", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL2_SL034", + "message": "Congress gali baula pokhari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL2_SL035", + "message": "Gopalgaon Tala Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL2_SL036", + "message": "Mirzapokhari Sweeper Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL2_SL037", + "message": "Darzi Pokhari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL2_SL038", + "message": "Mahila College Back side Adibasi Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL2_SL039", + "message": "Jadav Pur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL2_SL040", + "message": "Lepracy Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL2_SL041", + "message": "Golapolo", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL3_SL001", + "message": "Mahammadpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL3_SL002", + "message": "Kanhu Behera Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL3_SL003", + "message": "Munipada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL3_SL004", + "message": "Malik Sahi-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL3_SL005", + "message": "Malik Sahi-2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL3_SL006", + "message": "Uchhapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL3_SL007", + "message": "Mansing Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL3_SL008", + "message": "Khaparapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL3_SL009", + "message": "Angaragadia Cold Store", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL3_SL010", + "message": "Angaragadia Rameswar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL3_SL011", + "message": "Angargadia DIC Office", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL3_SL012", + "message": "Angargadia Rameswar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL3_SL013", + "message": "Bateswar Sweeper Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL3_SL014", + "message": "Nua Bazar Adi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL3_SL015", + "message": "Arad bazar-3", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL3_SL016", + "message": "Nua Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL3_SL017", + "message": "Aradbazar 2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL3_SL018", + "message": "Arad Bazar-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL3_SL019", + "message": "Bhaskarganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL3_SL020", + "message": "Tail basa", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL3_SL021", + "message": "Chudakutasahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL3_SL022", + "message": "Telenga Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL3_SL023", + "message": "Gudipada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL3_SL024", + "message": "Sweeper Colony Bhaskarganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL3_SL025", + "message": "Godhibasa", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL3_SL026", + "message": "Ananda Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL3_SL027", + "message": "Railway Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL3_SL028", + "message": "Bhalia dang", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL3_SL029", + "message": "Chhachina Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL3_SL030", + "message": "Gosalapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL3_SL031", + "message": "Balighat", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL3_SL032", + "message": "Sweeper Colony Olondaz Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL3_SL033", + "message": "Adibasi Sahi Town Hall", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL3_SL034", + "message": "Congress gali baula pokhari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL3_SL035", + "message": "Gopalgaon Tala Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL3_SL036", + "message": "Mirzapokhari Sweeper Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL3_SL037", + "message": "Darzi Pokhari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL3_SL038", + "message": "Mahila College Back side Adibasi Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL3_SL039", + "message": "Jadav Pur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL3_SL040", + "message": "Lepracy Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL3_SL041", + "message": "Golapolo", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL4_SL001", + "message": "Mahammadpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL4_SL002", + "message": "Kanhu Behera Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL4_SL003", + "message": "Munipada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL4_SL004", + "message": "Malik Sahi-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL4_SL005", + "message": "Malik Sahi-2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL4_SL006", + "message": "Uchhapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL4_SL007", + "message": "Mansing Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL4_SL008", + "message": "Khaparapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL4_SL009", + "message": "Angaragadia Cold Store", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL4_SL010", + "message": "Angaragadia Rameswar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL4_SL011", + "message": "Angargadia DIC Office", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL4_SL012", + "message": "Angargadia Rameswar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL4_SL013", + "message": "Bateswar Sweeper Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL4_SL014", + "message": "Nua Bazar Adi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL4_SL015", + "message": "Arad bazar-3", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL4_SL016", + "message": "Nua Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL4_SL017", + "message": "Aradbazar 2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL4_SL018", + "message": "Arad Bazar-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL4_SL019", + "message": "Bhaskarganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL4_SL020", + "message": "Tail basa", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL4_SL021", + "message": "Chudakutasahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL4_SL022", + "message": "Telenga Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL4_SL023", + "message": "Gudipada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL4_SL024", + "message": "Sweeper Colony Bhaskarganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL4_SL025", + "message": "Godhibasa", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL4_SL026", + "message": "Ananda Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL4_SL027", + "message": "Railway Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL4_SL028", + "message": "Bhalia dang", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL4_SL029", + "message": "Chhachina Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL4_SL030", + "message": "Gosalapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL4_SL031", + "message": "Balighat", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL4_SL032", + "message": "Sweeper Colony Olondaz Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL4_SL033", + "message": "Adibasi Sahi Town Hall", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL4_SL034", + "message": "Congress gali baula pokhari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL4_SL035", + "message": "Gopalgaon Tala Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL4_SL036", + "message": "Mirzapokhari Sweeper Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL4_SL037", + "message": "Darzi Pokhari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL4_SL038", + "message": "Mahila College Back side Adibasi Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL4_SL039", + "message": "Jadav Pur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL4_SL040", + "message": "Lepracy Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL4_SL041", + "message": "Golapolo", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL5_SL001", + "message": "Mahammadpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL5_SL002", + "message": "Kanhu Behera Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL5_SL003", + "message": "Munipada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL5_SL004", + "message": "Malik Sahi-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL5_SL005", + "message": "Malik Sahi-2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL5_SL006", + "message": "Uchhapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL5_SL007", + "message": "Mansing Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL5_SL008", + "message": "Khaparapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL5_SL009", + "message": "Angaragadia Cold Store", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL5_SL010", + "message": "Angaragadia Rameswar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL5_SL011", + "message": "Angargadia DIC Office", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL5_SL012", + "message": "Angargadia Rameswar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL5_SL013", + "message": "Bateswar Sweeper Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL5_SL014", + "message": "Nua Bazar Adi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL5_SL015", + "message": "Arad bazar-3", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL5_SL016", + "message": "Nua Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL5_SL017", + "message": "Aradbazar 2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL5_SL018", + "message": "Arad Bazar-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL5_SL019", + "message": "Bhaskarganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL5_SL020", + "message": "Tail basa", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL5_SL021", + "message": "Chudakutasahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL5_SL022", + "message": "Telenga Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL5_SL023", + "message": "Gudipada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL5_SL024", + "message": "Sweeper Colony Bhaskarganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL5_SL025", + "message": "Godhibasa", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL5_SL026", + "message": "Ananda Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL5_SL027", + "message": "Railway Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL5_SL028", + "message": "Bhalia dang", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL5_SL029", + "message": "Chhachina Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL5_SL030", + "message": "Gosalapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL5_SL031", + "message": "Balighat", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL5_SL032", + "message": "Sweeper Colony Olondaz Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL5_SL033", + "message": "Adibasi Sahi Town Hall", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL5_SL034", + "message": "Congress gali baula pokhari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL5_SL035", + "message": "Gopalgaon Tala Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL5_SL036", + "message": "Mirzapokhari Sweeper Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL5_SL037", + "message": "Darzi Pokhari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL5_SL038", + "message": "Mahila College Back side Adibasi Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL5_SL039", + "message": "Jadav Pur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL5_SL040", + "message": "Lepracy Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL5_SL041", + "message": "Golapolo", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL6_SL001", + "message": "Mahammadpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL6_SL002", + "message": "Kanhu Behera Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL6_SL003", + "message": "Munipada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL6_SL004", + "message": "Malik Sahi-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL6_SL005", + "message": "Malik Sahi-2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL6_SL006", + "message": "Uchhapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL6_SL007", + "message": "Mansing Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL6_SL008", + "message": "Khaparapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL6_SL009", + "message": "Angaragadia Cold Store", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL6_SL010", + "message": "Angaragadia Rameswar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL6_SL011", + "message": "Angargadia DIC Office", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL6_SL012", + "message": "Angargadia Rameswar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL6_SL013", + "message": "Bateswar Sweeper Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL6_SL014", + "message": "Nua Bazar Adi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL6_SL015", + "message": "Arad bazar-3", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL6_SL016", + "message": "Nua Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL6_SL017", + "message": "Aradbazar 2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL6_SL018", + "message": "Arad Bazar-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL6_SL019", + "message": "Bhaskarganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL6_SL020", + "message": "Tail basa", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL6_SL021", + "message": "Chudakutasahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL6_SL022", + "message": "Telenga Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL6_SL023", + "message": "Gudipada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL6_SL024", + "message": "Sweeper Colony Bhaskarganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL6_SL025", + "message": "Godhibasa", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL6_SL026", + "message": "Ananda Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL6_SL027", + "message": "Railway Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL6_SL028", + "message": "Bhalia dang", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL6_SL029", + "message": "Chhachina Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL6_SL030", + "message": "Gosalapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL6_SL031", + "message": "Balighat", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL6_SL032", + "message": "Sweeper Colony Olondaz Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL6_SL033", + "message": "Adibasi Sahi Town Hall", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL6_SL034", + "message": "Congress gali baula pokhari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL6_SL035", + "message": "Gopalgaon Tala Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL6_SL036", + "message": "Mirzapokhari Sweeper Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL6_SL037", + "message": "Darzi Pokhari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL6_SL038", + "message": "Mahila College Back side Adibasi Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL6_SL039", + "message": "Jadav Pur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL6_SL040", + "message": "Lepracy Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL6_SL041", + "message": "Golapolo", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL7_SL001", + "message": "Mahammadpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL7_SL002", + "message": "Kanhu Behera Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL7_SL003", + "message": "Munipada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL7_SL004", + "message": "Malik Sahi-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL7_SL005", + "message": "Malik Sahi-2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL7_SL006", + "message": "Uchhapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL7_SL007", + "message": "Mansing Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL7_SL008", + "message": "Khaparapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL7_SL009", + "message": "Angaragadia Cold Store", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL7_SL010", + "message": "Angaragadia Rameswar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL7_SL011", + "message": "Angargadia DIC Office", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL7_SL012", + "message": "Angargadia Rameswar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL7_SL013", + "message": "Bateswar Sweeper Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL7_SL014", + "message": "Nua Bazar Adi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL7_SL015", + "message": "Arad bazar-3", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL7_SL016", + "message": "Nua Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL7_SL017", + "message": "Aradbazar 2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL7_SL018", + "message": "Arad Bazar-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL7_SL019", + "message": "Bhaskarganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL7_SL020", + "message": "Tail basa", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL7_SL021", + "message": "Chudakutasahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL7_SL022", + "message": "Telenga Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL7_SL023", + "message": "Gudipada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL7_SL024", + "message": "Sweeper Colony Bhaskarganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL7_SL025", + "message": "Godhibasa", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL7_SL026", + "message": "Ananda Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL7_SL027", + "message": "Railway Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL7_SL028", + "message": "Bhalia dang", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL7_SL029", + "message": "Chhachina Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL7_SL030", + "message": "Gosalapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL7_SL031", + "message": "Balighat", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL7_SL032", + "message": "Sweeper Colony Olondaz Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL7_SL033", + "message": "Adibasi Sahi Town Hall", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL7_SL034", + "message": "Congress gali baula pokhari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL7_SL035", + "message": "Gopalgaon Tala Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL7_SL036", + "message": "Mirzapokhari Sweeper Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL7_SL037", + "message": "Darzi Pokhari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL7_SL038", + "message": "Mahila College Back side Adibasi Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL7_SL039", + "message": "Jadav Pur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL7_SL040", + "message": "Lepracy Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL7_SL041", + "message": "Golapolo", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL8_SL001", + "message": "Mahammadpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL8_SL002", + "message": "Kanhu Behera Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL8_SL003", + "message": "Munipada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL8_SL004", + "message": "Malik Sahi-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL8_SL005", + "message": "Malik Sahi-2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL8_SL006", + "message": "Uchhapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL8_SL007", + "message": "Mansing Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL8_SL008", + "message": "Khaparapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL8_SL009", + "message": "Angaragadia Cold Store", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL8_SL010", + "message": "Angaragadia Rameswar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL8_SL011", + "message": "Angargadia DIC Office", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL8_SL012", + "message": "Angargadia Rameswar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL8_SL013", + "message": "Bateswar Sweeper Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL8_SL014", + "message": "Nua Bazar Adi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL8_SL015", + "message": "Arad bazar-3", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL8_SL016", + "message": "Nua Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL8_SL017", + "message": "Aradbazar 2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL8_SL018", + "message": "Arad Bazar-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL8_SL019", + "message": "Bhaskarganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL8_SL020", + "message": "Tail basa", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL8_SL021", + "message": "Chudakutasahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL8_SL022", + "message": "Telenga Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL8_SL023", + "message": "Gudipada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL8_SL024", + "message": "Sweeper Colony Bhaskarganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL8_SL025", + "message": "Godhibasa", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL8_SL026", + "message": "Ananda Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL8_SL027", + "message": "Railway Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL8_SL028", + "message": "Bhalia dang", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL8_SL029", + "message": "Chhachina Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL8_SL030", + "message": "Gosalapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL8_SL031", + "message": "Balighat", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL8_SL032", + "message": "Sweeper Colony Olondaz Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL8_SL033", + "message": "Adibasi Sahi Town Hall", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL8_SL034", + "message": "Congress gali baula pokhari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL8_SL035", + "message": "Gopalgaon Tala Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL8_SL036", + "message": "Mirzapokhari Sweeper Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL8_SL037", + "message": "Darzi Pokhari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL8_SL038", + "message": "Mahila College Back side Adibasi Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL8_SL039", + "message": "Jadav Pur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL8_SL040", + "message": "Lepracy Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL8_SL041", + "message": "Golapolo", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL9_SL001", + "message": "Mahammadpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL9_SL002", + "message": "Kanhu Behera Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL9_SL003", + "message": "Munipada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL9_SL004", + "message": "Malik Sahi-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL9_SL005", + "message": "Malik Sahi-2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL9_SL006", + "message": "Uchhapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL9_SL007", + "message": "Mansing Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL9_SL008", + "message": "Khaparapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL9_SL009", + "message": "Angaragadia Cold Store", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL9_SL010", + "message": "Angaragadia Rameswar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL9_SL011", + "message": "Angargadia DIC Office", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL9_SL012", + "message": "Angargadia Rameswar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL9_SL013", + "message": "Bateswar Sweeper Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL9_SL014", + "message": "Nua Bazar Adi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL9_SL015", + "message": "Arad bazar-3", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL9_SL016", + "message": "Nua Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL9_SL017", + "message": "Aradbazar 2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL9_SL018", + "message": "Arad Bazar-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL9_SL019", + "message": "Bhaskarganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL9_SL020", + "message": "Tail basa", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL9_SL021", + "message": "Chudakutasahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL9_SL022", + "message": "Telenga Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL9_SL023", + "message": "Gudipada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL9_SL024", + "message": "Sweeper Colony Bhaskarganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL9_SL025", + "message": "Godhibasa", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL9_SL026", + "message": "Ananda Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL9_SL027", + "message": "Railway Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL9_SL028", + "message": "Bhalia dang", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL9_SL029", + "message": "Chhachina Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL9_SL030", + "message": "Gosalapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL9_SL031", + "message": "Balighat", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL9_SL032", + "message": "Sweeper Colony Olondaz Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL9_SL033", + "message": "Adibasi Sahi Town Hall", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL9_SL034", + "message": "Congress gali baula pokhari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL9_SL035", + "message": "Gopalgaon Tala Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL9_SL036", + "message": "Mirzapokhari Sweeper Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL9_SL037", + "message": "Darzi Pokhari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL9_SL038", + "message": "Mahila College Back side Adibasi Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL9_SL039", + "message": "Jadav Pur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL9_SL040", + "message": "Lepracy Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BALASORE_VIL9_SL041", + "message": "Golapolo", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_REVENUE_VIL37", + "message": "Gola Raghunathpur. R. Raghunathpur, Matiya Raghunath pur, Acharya Street. Kakali Bada Street, Harida Khandi. Tota Sahi, Dhoba Sahi, Bauri sahi, Harijana Sahi. Dharmanagar. Shantinagar, Kailash Nagar, Bodo Sahi. Goudo Sahi.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_REVENUE_VIL38", + "message": "Ananda Nagar. Canal Street, Sramika Nagar, Duduman Colony, Kasi Nagar, Mhurikalua Street, Panigrahi Nagar, Gayatri Nagar, digapahani Road. 1St GateBurma Colone, Kathamentu road, Aska Road Near 1St Gate. Ambica nagar, Laxminarasing Street, Haridakhandi road.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_REVENUE_VIL39", + "message": "Raghupati Nagar, aska road, Dhobandha Huda, Gurumurtipeta, Narayan Nagar, Cement Road Street, Chaitany Nagar, Ganapati Nagar, Khandiakumuti Sahi, Aska Road, Kansari Street, New Kalupatra Street.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_REVENUE_VIL40", + "message": "Forest Colony, New Raja Street, Sri Ramanagar (all area), Ratha Street, Adarsh Marg, Dashagharia Street, Pandara Bada Street, Brajaraj Nagar, Anandanagar, Nelia Bandha, Harsh Vihar.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_REVENUE_VIL41", + "message": "Samanath Nagar All area, Aska road Main Road in front of Chatrubhuja Petrol Pump, Niladri Vihar (all area), Trinath Nagar, Tulasi Nagar (all area). Suraj Vihar, Subham Bihar, Bishnu Nagar, Aska Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_REVENUE_VIL42", + "message": "Rampa Street, Padma Nagar, Brudabati Nagar, Gate Bazar, Bank Colony, Bhabani Nagar, Burma Nagar, Banka Bihari Nagar, Radhakrushna Billa Street, Mukteswar Billa Street", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_REVENUE_VIL43", + "message": "Baria Billo Street, Padma nagar, Sarojini Peta, Balaki Peta, Govardhana Peta, dera Street, Sandha Mahanti Street, Aska Road, (South Side) Gramadevati Street, Police Colony, Taluka Police Colony, Kalupatra Sahi, Adua Street, Kedarswar Peta, Trimurty Jaganath Temple Street, Sankarpur Street, Sitaram Street, Jena Street, Pandara Street, Panigrahipentha Street, Aska Road.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_REVENUE_VIL44", + "message": "Raja Street, Bachwari Street, Dase Behera Street, Bada Bazar , Mahuri Raja Street, Kumbhar Street, Nadia Bazar, Chandrama Street, Elubehera Street, Marth petta Sahi, Malubehera St, Jangambadi Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_REVENUE_VIL45", + "message": "Pattara street, Mangalabarmpeta, Jami street, Aga Street, Krishnama Peta, Bada Redika Street, Mediri Street, Sana Redika Street, Jagabandhu Street-1&2, Ganesh Nagar, Gajananapeta, Prahalad Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_REVENUE_VIL46", + "message": "Pandabanagar, Sita Dhimira Street, Tota Street, Ainabandha Street, Radhakant Street, Radha Krushna Street, Pandara Street, Nelia Bandha Road, Talamentu Chaka, Bhima Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_REVENUE_VIL47", + "message": "Bauri Street, Purna Berhampur, Neelanchala Street, Purna Berhamur, Street, Khaspa Street, Jaura Street, PandarabadaStreet, Redika Street, (p), Karibari street, Chandrasekhar Street, Martha Street, Karana Street, Rajama Street, Gaigotha Street, Kharuda Street, Big Bazaar Gouda Street.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_REVENUE_VIL48", + "message": "Prem Nagar-(1to6), Dharamanagar (all) Municipal Colony (back), Purnabasi Colony, Harrijana Basti, Municiality Colony, Prema Nagar-7th line, Prem Nagar (west), Cannal Street, Harishara Nagar, Bimala Naga, Ganesh Nagar.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_REVENUE_VIL49", + "message": "Utkal Cinema Road, Medri Street, ranguni Bandha Street, (all) Sastri Nagar (all) Jamadeipentha, sankari Street, Narasing Deula Street, Panchudeula Street, Rangalaa Tota", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_REVENUE_VIL50", + "message": "Main Road Brit Colony, Housing Bard (all Meenakhi Nagar, Nilakantha nagar, Brit colony, Trinath Nagar, Narasingh Nagar, Sribach Nagar, Kothari Temple Street, Nirakar Nagar, Panchanan Nagar, Arabinda Nagar, Hari Krushna Nagar.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_REVENUE_VIL51", + "message": "Addamji Lane, Kamala Wari Street, Daya Mahanty, Bandha Road, City High school Road, Pauls Lane, Berika Street, Venketswara Temple Street, Kallika Temple Street, Gopal Rao Garuda, Jayanti Petta, Dallusu Wari Street, Metta Street, Sani Baram Petta, Pakala Wari Street, Thakurani Tample Street, Much Street, Nua Gouda Street, Knasari Street, Gadivari Stret, Malasen Petta, Pudipedavari Street.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_REVENUE_VIL52", + "message": "Patro Petta Street, Abdul Bahar Street, Koka Wari Street, Giri Market, Musiaganti Street, Urban Bank Road, Vardawari Street, Gallila Street, Gallila Street, Bhapur Bazar, ankula Street, Telgu Dhoba Street, Telgubhandari Street , kampa Street, K.C. Town High School Road, Park Street, Ramalingaswar Road, S.N.T Road Khalasi Street, (all lines). Corporation Road.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_REVENUE_VIL53", + "message": "Military line (1&2), Bhimarao Petta, Dalua Street, Raula Street, Pandarawadi Street, Raghunath Petta, Madhuriwari Street, Bangali Street, Irrigation Colony, Vetanary Colony, Police lane, Muchi Sahi, Khaja Street, Militaline Main road, Cantonment road, Radha Krushna Canal Street.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_REVENUE_VIL54", + "message": "Sanatrani Street, Gouda Stret, Kapilleswar Petta, Bandha Street, Masjid Lane, Bhuta Street, Lala Street, Rauta Penth Street, Sana Bazar, Phulla Sundari Street, Nua Street, balaji Pentho street, Triveni Nagar, Gula Street, Gunduluvari Street, Hanuman Bazar, Bandhahuda Tameya Tank, Madhb Nagar, Manan Mohan Nagar, Gangadhar Nagar, Hanuman Nagar, Mathura Nagar.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_REVENUE_VIL55", + "message": "Mitra Street, Teli Street, Pallia Street, Mukteswar Temple Street, Bagulli Street, Gundu Malla Street, Dig Murti Street, Fire Station Road, Chaterji Lane, State Bank Road, New Barackes Street, City hospital Road, Babaji Tota Street, Brahamna Street, Chandra Prabha Street 1&2, Ratha Street, Church Road, Telephone Bhawan, Convent school road, Town Hall Road, Chikit Bangala, Panigrahi Street, Pallor Bunglow, Bauri Street, Badhei Street.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_REVENUE_VIL56", + "message": "Raghunath Temple Street, Bada Kehmundi Street, Gollapalli Street, Surya Nagar, Harijan Colony, Cannal Street, Chandramani Petta, Bhagavati Gadi, Manjari Nagar, Bhandari Street.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_REVENUE_VIL57", + "message": "Dasiri Street, Nua Street, Jagili Street, New Canal Street, Lochapada Road, Mochi street, Bada Harizan Street, Sana Harizan Street, dudarshan Colony, Dhoba Sahi.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_REVENUE_VIL58", + "message": "Brahman Nagar (all area), ORT Colony, Laxmi Nagar, Muktipath Street, Baikuntha Nagar (all area).", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_REVENUE_VIL59", + "message": "Gandhi Nagar Canal Street (I,II,III,). Gandhi Nagar 3rd lane, Gandhi Nagar Part, Gandhi Nagar 1&2. Spectrum Coloney, Gandhi Nagar 4-10. Ambika Nagar (all area).", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_REVENUE_VIL60", + "message": "Bijipur kalua Street, Laxmi Street, rather Street, Bada Street, Bada Bauri street, Sano Bauri sahi, Bijipur Naidu Street, Boarding Street, Bijipur Bazar, Apana Patra Street, Bijipur Canal Street, Sunari Jbandha Street, Police Colony, Sundar Nagar.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_REVENUE_VIL61", + "message": "Burma Colony, Nilakanth Nagar (all area), Dhimira Bauri Street, Tota Street Main Road, Chandi Street, Gopinath Nagar, Sastri Nagar (All-area) Gosaninuagaon Tota Street, Balaji Nagar, Sastri Nagar, Sastri Nagar Billo Street, Gupta Drundabarn Street, K.C. High School Road, mandira Street, Dasagharia Street, Harizan Street, Mandiapadar Street, Charidiba Street, Sanyasi Nagar.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_REVENUE_VIL62", + "message": "Damana Street, Baidya Street, Panigrahi Street, Laxminarayan Street, Kalua Street, Salliabanha Street, Patita Paban Gangar, Kadalibada Street, Badrraj Nagar, Sakti Nagar, Nua Street, Rajudhoba Street, Puruna Bauri Street, Gjosani Nuagaon (Ansa), Gosaninuagaon Main Road, Aduva Sahi, Kaituki Nagar, Lingaraj Nagar.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_REVENUE_VIL63", + "message": "Gosani Nuagaon Main Road East, Harihar Nagar, Utareswar Temple Road, Sana Mudia Street, Railway Colony West Side, Gali Road, Chanchada Padia Street (All), RWS Colony, Trinath Street, Gjoods Shed Road, Khajuria road, Somanath Nagar Nehru Nagar 9&10, Burma colony, Central Wire House Lane.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_REVENUE_VIL64", + "message": "Nehru Nagar (1-8), Giri Road (all area), Bijipur Road, PWD Colony, Station Road, Hillpatna (all), Tota Street all area, Santosi Maa Temple Road.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_REVENUE_VIL65", + "message": "Ananda sarani, Aurobindo Nagar (all area). Godabarish Nagar (all area), Invadid Peta, swarnamayee Nagar, Hatibandha Street, Rama Krushna Nagar (all area), New Bus Stand Road.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_REVENUE_VIL66", + "message": "Ramahari Nagar, Tatabejnz Square, Old Chistrian Street, Women’s Hostel Road, Zenana Hospital Road, Saragada Bunglow, Sastri Nagar, Giri Road, Ananta Nagar, PWD Coloney, Irrigation Colony, Laxminursingh Street, Gopabandhu nagar, R.C. Das Lane, Medri Street, U.A. Road, Sri Tower.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_REVENUE_VIL67", + "message": "Copprative Colony (all). Ashok Nagar (all). Kamapalli Main Road, Kamapali street, Khalla Street, Gouilundi Road, Kamapli Nayak Street, Kamapali Bandha Street, Kamapalli P.N.T. Colony.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_REVENUE_VIL68", + "message": "Bidya Nagar, Goilundi Square, temple Street, Sree Nagar, Bhava Nagar, friends Colony, Krushna Nagar, Bagadevi Temple Street, Peon Quarter, Panda Colony Road, Goilundi Chancada Pathar Sahi, Goilundi Gig Street and Main road, Shani Nagar, Ratha Colony, Chandra Sekhar Road Goilundi.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_REVENUE_VIL69", + "message": "Gajapti Nagar (1-14), Medical Campus, sidhartha Nagar (all Street) EWS Colony, DIG Office, OMP Barrack, P&T Colony, Sales Tax Colony, Jaya Prakash Nagar, LIG Colony, Santi Kunja, State Abank Colony, Jyouti Nagar, Bapuji Nagar.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_REVENUE_VIL70", + "message": "Ajodhya Nagar, P.H.D. Colony, Jarada Bunglow, D.I.G. Colony, Forest Colony, Drundavan Nayak Marg, V.I.P Colony, Police line back side Street, Irrigation Colony, IB PED, Komopalli to Goilundi Main Road towards South side, Old Post Office Street, Bidya Nagar, P&T colony, S.E. Railway Colony, Komopalli main Road, South side Ramanagar-1, Rama Nagar-2, Hadi Street, Ganjam Club, Sanadandasi Street, Komopalli Bazar, Rama Nagar Odiya Street north, Dayanidhi Das lane.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_REVENUE_VIL71", + "message": "Krush Nagar-5th South Side and North Side 4th line, Kurhsana Nagar,Budhia Mohanty Street, Krusshna Nagar-2,3,4 to Kalayana Mandap Ramnagar & Municipla Colony, Old Post Office Line, Rama Nagar-3rd, Half Ramanagar, Teli Bhandari Street, Deepa Street, Burmha Street, municipal colony, Rama Nagar, Anand Nagar, New Railway Colony, Station Road (L. Palli).", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_REVENUE_VIL72", + "message": "Central Jail Colony, Bauri Street, Padhi Colony, Sree Krushna Nagar, Kuthari Street, Jail Back Side, Lanjipalli back side to Lanjipalli Bye Pass, to kanjiamma Street and Nua Street, Chankya Nagar, East Adua Street, Radha kanta Temple Street to Golla Redika Street main Road Lanjipalli main Road Street main Road, Lanjipalli Main Road South Street, DEO Colony, Adua Street, Main Road West High School Road.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_REVENUE_VIL73", + "message": "Jaill Back Side Street, Subash Nagar, Chandi Mondir Street, East Side of Lanjipalli High School, Tota Sahi 1&2, Sashibhusan Nagar, Industrial State, Laxmi Nagar, Lingaraj Nagar, Brundaban Nagar, Industrial Road Square, R.D.C. Colony Choudhury House lane, Surjya Nagar, Labour Colony, MI. REO Colony, Indira Nagar, PHED Colony, Bhairabi Nagar, Jail Quarter, Jail Hospital, Panakalapalli.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_REVENUE_VIL74", + "message": "Nigam Nagar, Kasturi Nagar, Nigam Nagar 3to7, Bauri Street, Karji Street, Dandasi Street, Nigam Nagar, Bauri Street, Joleswar Khand, N.H. 5 South Street, Bada Street, Ananda Nagar, Kalinji Street, Nua Street, Laxmi Nurshingh Street, Harishankar Colony, Dhoba Street, Sundhi Street.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_REVENUE_VIL75", + "message": "Panda Colony, De Poul School area. Bidutpuri Colony, Back side Colony, Khodasingi Main Road, Engineering School Colony, ITI Colony, Law College, Engineer School, ITI school, Tota Sahi 1&2 Hanuman Nagar, Khodasiingi Main Road, New Bauri Street, Jayadurga Nagar, Shakti Nagar, Aalekha Nagar, Rajiv Nagar, Kuthari Nagar.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_REVENUE_VIL76", + "message": "Gopalpur Jn, Housing Board, Byue Pass, Basudev Nagar, Jagannath Bihar, Ex-Military Colony, Pokudibandha Chhak Road, Madhav Nagar, Bhima Nagar-1.2.3. & 4. Saradhabali and Roland Firma Area, Ambapua Gaon, Nua Sahi, Sibananda Nagar,Adua Sahi, Khadasinghi, Puruna Bauri Street, Bada Street, Dhoba Street, Banchanidhi Nagar, Kalinga Bihar.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL52_SL003", + "message": "Bank Colony (Nabin Nagar)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL52_SL004", + "message": "Khalasi sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL52_SL005", + "message": "Giri Market", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL52_SL006", + "message": "Patra Peta Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL55_SL007", + "message": "Bhandari Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL55_SL008", + "message": "Badhei Street", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL55_SL009", + "message": "Badakhemundi Bauri Street (Tota Palli Bauri Sahi)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL57_SL010", + "message": "Mukteswar Bandha Street", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL57_SL011", + "message": "Jagili Street", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL58_SL012", + "message": "Bada Harijan Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL59_SL013", + "message": "Keuta Sahi & New Laxmi Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL61_SL014", + "message": "Gandhi Nagar Canal Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL62_SL015", + "message": "Dhimira Bauri Street", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL63_SL016", + "message": "Trinath Mandir Street", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL63_SL017", + "message": "Chanchada Pathar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL63_SL018", + "message": "Somanatha Nagar, Khajuria Rd.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL63_SL019", + "message": "Khajuria Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL63_SL020", + "message": "Santi Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL63_SL021", + "message": "Nehru Nagar 9th & 10th", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL63_SL022", + "message": "Sishu Mandir Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL63_SL023", + "message": "Main Road Dhoba Street", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL66_SL024", + "message": "Harihar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL68_SL025", + "message": "Giri road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL68_SL026", + "message": "Chanchada pathara", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL68_SL027", + "message": "Chandrasekhar Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL6_SL002", + "message": "Somnath/Trinath Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL6_SL010", + "message": "Kalara Gada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL6_SL011", + "message": "Stadium Back side, Durga Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL6_SL012", + "message": "Mali Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL70_SL028", + "message": "Dandasi Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL71_SL029", + "message": "Ram Nagar Odia Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL72_SL030", + "message": "Deepa Harijansahi, Lanji palli", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL72_SL031", + "message": "Dandasi Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL72_SL032", + "message": "Chandi Street", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL72_SL033", + "message": "Harijana sahi, Lanjipalli", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL72_SL034", + "message": "Lanjipalli main road(Bauri Sahi, Adua Sahi & Keuta Sahi)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL72_SL035", + "message": "Goudabandha sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL72_SL036", + "message": "Lanjipalli main road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL73_SL037", + "message": "Bapuji Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL74_SL038", + "message": "BrundabanNagar Hota Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL74_SL039", + "message": "Dhoba sahi(Ankuli)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL74_SL040", + "message": "Kalinji Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL74_SL041", + "message": "Pradhan Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL74_SL042", + "message": "Ananda Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL74_SL043", + "message": "Jaleswarpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL74_SL044", + "message": "Dhobasahi (Ankuli)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL74_SL045", + "message": "Reddy Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL74_SL046", + "message": "Ankuli Sano Bauri Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL74_SL047", + "message": "Ankuli Bada Bauri Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL74_SL048", + "message": "Karji Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL74_SL049", + "message": "Nua Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL74_SL050", + "message": "Ankuli Mali Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL74_SL051", + "message": "Bada Sahi, Hadi Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL75_SL052", + "message": "Main Road Sundhi Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL75_SL053", + "message": "Bauri Sahi (Ambapur)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL75_SL054", + "message": "Old Bauri Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL75_SL055", + "message": "Dhobasahi (Khodasangi)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL75_SL056", + "message": "Dhobasahi(Ambapua)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL7_SL013", + "message": "Danda Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL7_SL014", + "message": "Murdangia Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL8_SL015", + "message": "Mahisapat Dalei Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL8_SL016", + "message": "Bankuala Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL8_SL017", + "message": "Gajamara Juanga Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL8_SL018", + "message": "Rengali Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL8_SL019", + "message": "Mahisapat Harijan Sahi-2 & Mahisapat Khaira Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL9_SL020", + "message": "Kantanali Kandha Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL9_SL021", + "message": "Banamali Prasad Juanga Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL9_SL022", + "message": "Fatha Bandha Harijana Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL9_SL023", + "message": "Kuntunia Juanga Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL9_SL024", + "message": "Fatha Bandha Juanga Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL9_SL025", + "message": "Balaram Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_BRHMAPUR_VIL9_SL026", + "message": "Kuntunia Nua Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1", + "message": "Mohalla Rajan Wala (both sides) - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC10", + "message": "Mohalla Majoran - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC100", + "message": "Mohalla Angaria wala - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1000", + "message": "Maqsudan Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1001", + "message": "Nagra Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1002", + "message": "Jawala Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1003", + "message": "New Jawala Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1004", + "message": "Patel Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1005", + "message": "New Patel Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1006", + "message": "Guru Ravidass Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1007", + "message": "Bhupinder Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1008", + "message": "Ashok Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1009", + "message": "Nagra Pind", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC101", + "message": "Miya Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1010", + "message": "New Nagra", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1011", + "message": "Shital Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1012", + "message": "New Shital Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1013", + "message": "Jugian", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1014", + "message": "Sham Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1015", + "message": "Amar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1016", + "message": "Babu Labh Singh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1017", + "message": "Rattan Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1018", + "message": "New Rattan Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1019", + "message": "Shaheed Babu Labh Singh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC102", + "message": "Shalimar Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1020", + "message": "New Shaheed Babu Labh Singh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1021", + "message": "Madhuban Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1022", + "message": "Gujrati Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1023", + "message": "Jagwali Kathi Near Canal", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1024", + "message": "Ragu Nath Mandir Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1025", + "message": "Kacha Kot", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1026", + "message": "Old Green Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1027", + "message": "Green Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1028", + "message": "Raja Garden", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1029", + "message": "Raja Garden Extension", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC103", + "message": "New Dashmesh Nagar Part", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1030", + "message": "V.I.P Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1031", + "message": "Butti Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1032", + "message": "Gagan Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1033", + "message": "Bhai Gurdass Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1034", + "message": "Baba Bachittar Ji Nagar Mithu Basti", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1035", + "message": "Tara Singh Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1036", + "message": "New Rasila Nagar Basti Danishmandan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1037", + "message": "Dilbagh Nagar Ext.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1038", + "message": "Rasila Nagar Phase 2 Danishmandan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1039", + "message": "Rasila Nagar Basti Danishmandan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC104", + "message": "Kaki Pind", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1040", + "message": "Begampura Colony Danishmandan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1041", + "message": "Baba Budha Ji Nagar Mithu Nagar Basti", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1042", + "message": "Ekta Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1043", + "message": "New Shastri Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1044", + "message": "Satnam Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1045", + "message": "Anoop Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1046", + "message": "Bal bro Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1047", + "message": "Badhri Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1048", + "message": "Badhri Colony Phase (2)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1049", + "message": "Ram Shernam Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC105", + "message": "New Joginder Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1050", + "message": "Peer Das Basti", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1051", + "message": "Kamar Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1052", + "message": "Panu Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1053", + "message": "Paras Estate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1054", + "message": "Paras Estate 2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1055", + "message": "Maharaja Garden", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1056", + "message": "Harbanse Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1057", + "message": "5 Peer Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1058", + "message": "Anoop Nagar (2)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1059", + "message": "Sher Singh Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC106", + "message": "Part of Joginder Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1060", + "message": "Roshan Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1061", + "message": "Qilla Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1062", + "message": "Kathera Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1063", + "message": "Gautam Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1064", + "message": "New Gautam Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1065", + "message": "Kabir Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1066", + "message": "Guru Ram Dass Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1067", + "message": "Mata Sant Kaur Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1068", + "message": "City A Prime", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1069", + "message": "City A Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC107", + "message": "New Beant Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1070", + "message": "City A Kunj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1071", + "message": "Rajan Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1072", + "message": "Kailash Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1073", + "message": "Balmik Mohalla Bawa Khel", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1074", + "message": "Akal Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1075", + "message": "Basti Bawa Khel (main)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1076", + "message": "Raj Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1077", + "message": "New Raj Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1078", + "message": "Kabir Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1079", + "message": "Bank Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC108", + "message": "Part of Beant Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1080", + "message": "Basti Bawa Khel", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1081", + "message": "Katehara Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1082", + "message": "New Rattan Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1083", + "message": "Guru Nanak Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1084", + "message": "New Guru Nanak Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1085", + "message": "Shiv Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1086", + "message": "Baba Kahandass Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1087", + "message": "Village Nagara", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1088", + "message": "Abinandan Park", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1089", + "message": "National Park", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC109", + "message": "Gulmarg Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1090", + "message": "Ashok Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1091", + "message": "Vivek Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1092", + "message": "Green Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1093", + "message": "Shanti Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1094", + "message": "Viveka Nand Park", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1095", + "message": "Subash Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1096", + "message": "Golden Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1097", + "message": "Navyug Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1098", + "message": "New Shiv Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1099", + "message": "Maqsudan Byepass", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC11", + "message": "Indra Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC110", + "message": "Mehtab Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1100", + "message": "Mahasha Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1101", + "message": "Anand Ngr", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1102", + "message": "New Anand Ngr", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1103", + "message": "Janta Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1104", + "message": "Navnirman Janta Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1105", + "message": "Issa Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1106", + "message": "Guru Nanak Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1107", + "message": "Aara Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1108", + "message": "Surat Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1109", + "message": "Master Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC111", + "message": "Professor Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1110", + "message": "Angad Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC1111", + "message": "Amandip Avenue.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC112", + "message": "Mohan Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC113", + "message": "Part of Ladhewali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC114", + "message": "Part of New Dashmesh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC115", + "message": "Dhilwan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC116", + "message": "Dhanowali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC117", + "message": "Sanik Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC118", + "message": "Old Dashmesh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC119", + "message": "Ajeet Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC12", + "message": "Sant Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC120", + "message": "Guru Anged Dev Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC121", + "message": "Sunder Nagar Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC122", + "message": "Kohinoor Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC123", + "message": "Sunny Prime", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC124", + "message": "Arman Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC125", + "message": "Johan Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC126", + "message": "Ganesh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC127", + "message": "New Ganesh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC128", + "message": "Masi Mohalla Dakoha", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC129", + "message": "Tarun Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC13", + "message": "Kalia Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC130", + "message": "Kaki Pind", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC131", + "message": "Arman Nagar 2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC132", + "message": "Birring Pind-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC133", + "message": "Birring Pind-2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC134", + "message": "Mohinder Singh Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC135", + "message": "Mehnga Singh Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC136", + "message": "Dada Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC137", + "message": "Peace Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC138", + "message": "Bunga Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC139", + "message": "Golden Colony (Phase 1)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC14", + "message": "Kalia Colony Ph-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC140", + "message": "Golden Colony (Phase 2)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC141", + "message": "Golden Colony (Phase 3)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC142", + "message": "Model Estate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC143", + "message": "Defence Colony (Phase 1)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC144", + "message": "New Defence Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC145", + "message": "Paragpura ( Old Phagwara Road)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC146", + "message": "Paragpura ( Pind )", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC147", + "message": "Paragpura ( Abadi Near Railway fatak )", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC148", + "message": "Ratti Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC149", + "message": "Thakur Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC15", + "message": "Kalia Colony PH-2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC150", + "message": "Ram Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC151", + "message": "Chotte Ram Bagh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC152", + "message": "Panch Sheel Colony ( Half )", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC153", + "message": "Bhullar Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC154", + "message": "Modern State", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC155", + "message": "Yadav Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC156", + "message": "Baba Budha Ji Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC157", + "message": "Bhuda Ji Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC158", + "message": "Shaheed Gurvinder Singh Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC159", + "message": "National Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC16", + "message": "Kalia Colony PH-3", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC160", + "message": "Ravidass Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC161", + "message": "Guru Nanak Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC162", + "message": "Jagjit Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC163", + "message": "Old Kaki Pind", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC164", + "message": "Village Dakoha", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC165", + "message": "Baba Budha Singh Nagar Street No 1 to 9", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC166", + "message": "Ekta Nagar PH-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC167", + "message": "Ekta Nagar PH-2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC168", + "message": "Joginder Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC169", + "message": "Panch Rattan Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC17", + "message": "Kalia Farm", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC170", + "message": "New Defence Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC171", + "message": "Beant Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC172", + "message": "Old Beant Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC173", + "message": "PSEB Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC174", + "message": "BB Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC175", + "message": "Half Rama Mandi Main Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC176", + "message": "Khateek Market Ramamandi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC177", + "message": "Valmik Mohalla Ramamandi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC178", + "message": "Krishna Sweet Wali Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC179", + "message": "Palwon Wali Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC18", + "message": "Guru Amar Dass Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC180", + "message": "Fouji Wali Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC181", + "message": "Bhatra Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC182", + "message": "Aytar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC183", + "message": "Guru Nanak Pura East", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC184", + "message": "Guru Nanak Pura West", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC185", + "message": "Chugitti", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC186", + "message": "Ekta Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC187", + "message": "P.A.P", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC188", + "message": "Railway Colony-3", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC189", + "message": "Rajinder Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC19", + "message": "Guru Amar Dass Nagar 2- Marla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC190", + "message": "Preet Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC191", + "message": "Sehgal Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC192", + "message": "Kirti Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC193", + "message": "Mohalla Ladowali Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC194", + "message": "Mohyal Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC195", + "message": "Link Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC196", + "message": "Hargobind Pura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC197", + "message": "Ranjit Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC198", + "message": "New Rajinder Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC199", + "message": "Police Line", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC2", + "message": "Bank Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC20", + "message": "New Guru Amar Dass Nagar Ext.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC200", + "message": "Guru Nanak Pura (West) Street No. 1 to 8", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC201", + "message": "New Guru Nanak Pura (West)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC202", + "message": "Bhojowal Patti (Chugittee)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC203", + "message": "Bharat Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC204", + "message": "Satnam Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC205", + "message": "Chugittee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC206", + "message": "Ved Ram Parkash Street", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC207", + "message": "Guru Gobind Singh Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC208", + "message": "Sureya Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC209", + "message": "Komal Vihar Old & New", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC21", + "message": "Guru Amar Dass Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC210", + "message": "Bashirpura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC211", + "message": "Thakur Singh Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC212", + "message": "Royal Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC213", + "message": "Jhansi Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC214", + "message": "Gobind Garh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC215", + "message": "Arjun Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC216", + "message": "40 Quarter", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC217", + "message": "Dashmesh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC218", + "message": "New Dashmesh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC219", + "message": "Sant Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC22", + "message": "Venus Valley", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC220", + "message": "Shanti Pura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC221", + "message": "New Baradari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC222", + "message": "Poultry Form Area", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC223", + "message": "Prem Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC224", + "message": "Mandi Fenton Garg", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC225", + "message": "Partap Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC226", + "message": "Rishi Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC227", + "message": "Brahm Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC228", + "message": "Mandi Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC229", + "message": "Railway Colony No. 1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC23", + "message": "Baba Mohan Dass Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC230", + "message": "Guard Colony No-2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC231", + "message": "Old Jawahar Nagar Single Lane", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC232", + "message": "Central Town", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC233", + "message": "Krishan Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC234", + "message": "Old Jawahar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC235", + "message": "Master Tara Singh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC236", + "message": "P & T Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC237", + "message": "Riaz Pura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC238", + "message": "Ramesh Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC239", + "message": "Shiva Ji Park", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC24", + "message": "Salempur Muslmana", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC240", + "message": "Netaji Park", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC241", + "message": "Civil Lines", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC242", + "message": "Mohalla Makhdumpura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC243", + "message": "Mohalla Shastri Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC244", + "message": "Fauji Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC245", + "message": "Shivalik Apartments", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC246", + "message": "Venus Apartments", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC247", + "message": "B-Block Apartments", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC248", + "message": "Paradise Apartments", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC249", + "message": "Gurkirpa Apartments", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC25", + "message": "Swarn Park-1Swarn Prak- 2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC250", + "message": "Ganga Apartments", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC251", + "message": "Nakodar Road Market", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC252", + "message": "Lajpat Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC253", + "message": "Lajpat Nagar Market", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC254", + "message": "Abadpura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC255", + "message": "Balmiki Colony Link Road Abadpura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC256", + "message": "Major Bahadur Singh Nagar & Marg", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC257", + "message": "New Model Town Mall Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC258", + "message": "New Jawahar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC259", + "message": "Guru Nanak Mission Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC26", + "message": "Sanjay Gandhi Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC260", + "message": "Badridass Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC261", + "message": "Purani Baradari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC262", + "message": "Skylark Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC263", + "message": "Civil Lines", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC264", + "message": "Sehdev Market", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC265", + "message": "Namdev Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC266", + "message": "G.T Road Market", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC267", + "message": "Shastri Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC268", + "message": "Sanjay Gandhi Market", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC269", + "message": "New Courts Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC27", + "message": "Gadaipur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC270", + "message": "Police Line Market", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC271", + "message": "BMC Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC272", + "message": "Market Opposite Bus Stand", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC273", + "message": "Link Road Model Town", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC274", + "message": "Valmiki Colony Major Bahadur Singh Marg", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC275", + "message": "Radio Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC276", + "message": "New Jawahar Nagar (Point)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC277", + "message": "Green Park", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC278", + "message": "Mota Singh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC279", + "message": "Modern Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC28", + "message": "Raja Garden", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC280", + "message": "Gurjaipal Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC281", + "message": "Wariam Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC282", + "message": "Gian Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC283", + "message": "New Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC284", + "message": "Defence Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC285", + "message": "Defence Colony Ext.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC286", + "message": "Chotti Baradari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC287", + "message": "Jaswant Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC288", + "message": "Roop Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC289", + "message": "Atwal Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC29", + "message": "Ram Bagh Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC290", + "message": "Atwal House", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC291", + "message": "New Hardyal Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC292", + "message": "Hardyal Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC293", + "message": "Rubi Hospital", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC294", + "message": "BSF Camp", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC295", + "message": "New Green Park", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC296", + "message": "Railway Quarter ( Cool Road)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC297", + "message": "Garha/Shiv Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC298", + "message": "Dayanand chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC299", + "message": "Rattan Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC3", + "message": "Sarabha Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC30", + "message": "Dada Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC300", + "message": "Sark Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC301", + "message": "Valmiki Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC302", + "message": "Ravi dass Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC303", + "message": "Makhan Ramwali Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC304", + "message": "School wali Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC305", + "message": "Jiwan Singh Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC306", + "message": "Tanki Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC307", + "message": "Phagu Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC308", + "message": "Sarpanch wali Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC309", + "message": "Main Bazar Rama Mandir", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC31", + "message": "Industrial Area", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC310", + "message": "Main Bazar Gurudwara Singh Sabha", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC311", + "message": "Garha Vehanda", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC312", + "message": "Phagu Mohalla Ram Mandir wali Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC313", + "message": "Phagwari Mohalla Near Janj Ghar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC314", + "message": "Phagwari Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC315", + "message": "Dr. Mana Wali Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC316", + "message": "Old Div. 7 Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC317", + "message": "Cantt. Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC318", + "message": "Cantt. Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC319", + "message": "New Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC32", + "message": "Focal Point", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC320", + "message": "Jaswant Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC321", + "message": "Jawant Nagar near Gurudwara", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC322", + "message": "Jaswant Nagar Gali No. 1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC323", + "message": "Jaswant Nagar Gali Thekewali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC324", + "message": "Jaswant Nagar Gali no. 100 3 to 5", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC325", + "message": "Jaswant Nagar Gali 2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC326", + "message": "Golden Aveune-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC327", + "message": "Golden Avenue-2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC328", + "message": "Gurjeet Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC329", + "message": "Dashmesh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC33", + "message": "Transport Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC330", + "message": "Chanchal Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC331", + "message": "Chotti Baradari Part-2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC332", + "message": "Idgah Mohalla Garha", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC333", + "message": "Sarak Mohalla Garha", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC334", + "message": "Guru Diwan Nagar Garha", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC335", + "message": "Tara Chand Colony Garha", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC336", + "message": "Chintpurni Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC337", + "message": "Geeta Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC338", + "message": "Garha", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC339", + "message": "Labour Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC34", + "message": "Udyog Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC340", + "message": "Kunowali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC341", + "message": "Urban Estate Ph-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC342", + "message": "M.I.G", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC343", + "message": "Urban Estate Phase Half", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC344", + "message": "Sabowal Old.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC345", + "message": "Isherpuri Colony (Some Part)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC346", + "message": "Urban Estate 2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC347", + "message": "Sabowal", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC348", + "message": "Lahor Nangal", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC349", + "message": "Isherpuri Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC35", + "message": "Parshuram Pur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC350", + "message": "Ranjit Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC351", + "message": "Kalgidhar Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC352", + "message": "New Kalgidhar Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC353", + "message": "Ravinder Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC354", + "message": "Dashmesh Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC355", + "message": "Karol Bagh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC356", + "message": "Vijay Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC357", + "message": "Guru Ram Dass Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC358", + "message": "Baba Makhan Shah Lubana", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC359", + "message": "Friends Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC36", + "message": "Vadda Saipur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC360", + "message": "Officer Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC361", + "message": "D.C Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC362", + "message": "White Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC363", + "message": "Punjabi Bagh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC364", + "message": "Lahor Nagar Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC365", + "message": "Happy Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC366", + "message": "New Isherpuri", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC367", + "message": "Universal Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC368", + "message": "Singh Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC369", + "message": "Engineer Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC37", + "message": "Reru", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC370", + "message": "Green Garden Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC371", + "message": "Ravinder Nagar Extension", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC372", + "message": "Punjabi Bagh Extension", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC373", + "message": "Model Town", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC374", + "message": "Parkash Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC375", + "message": "Guru Nanak Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC376", + "message": "Guru Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC377", + "message": "Rishi Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC378", + "message": "Jyoti Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC379", + "message": "Shankar Garden", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC38", + "message": "Hargobind Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC380", + "message": "Lal Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC381", + "message": "Satkartar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC382", + "message": "Ravinder Nagar Extension", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC383", + "message": "Cheema Nagar Ext.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC384", + "message": "Vasant Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC385", + "message": "Vasant Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC386", + "message": "Vasant Vihar Ext.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC387", + "message": "Urban Estate Ph-2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC388", + "message": "Model Town", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC389", + "message": "New Jawahar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC39", + "message": "Punjabi Bagh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC390", + "message": "Lajpat Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC391", + "message": "Dada Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC392", + "message": "Green Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC393", + "message": "Green Model Town", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC394", + "message": "Kewal Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC395", + "message": "Indra Park", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC396", + "message": "Cheema Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC397", + "message": "Shiv Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC398", + "message": "Gurmeet Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC399", + "message": "Ramneek Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC4", + "message": "Paschim Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC40", + "message": "Bachint Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC400", + "message": "Bank Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC401", + "message": "Bank Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC402", + "message": "Raja Garden", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC403", + "message": "Keshev Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC404", + "message": "Ekta Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC405", + "message": "New Raja Garden", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC406", + "message": "New Raja Garden Extension", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC407", + "message": "Bhai Samund Singh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC408", + "message": "New Arora Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC409", + "message": "Mithapur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC41", + "message": "Parsuram Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC410", + "message": "King Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC411", + "message": "Green Wood Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC412", + "message": "Ram Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC413", + "message": "Sewerage Board Quarter", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC414", + "message": "75 Garden Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC415", + "message": "Panch Sheel Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC416", + "message": "Mayor Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC417", + "message": "New Light Colony Phase -1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC418", + "message": "Bank Enclave Phase-2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC419", + "message": "Residence Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC42", + "message": "Kahanpur Abadi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC420", + "message": "Sudhama Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC421", + "message": "New Sudhama Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC422", + "message": "Rocky Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC423", + "message": "New Light Colony Phase-2 (Sudhama Vihar)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC424", + "message": "VIP Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC425", + "message": "Sadhu Singh Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC426", + "message": "Red Face Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC427", + "message": "New Garden Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC428", + "message": "Bhai Banno Ji Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC429", + "message": "Gill Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC43", + "message": "Ramneek Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC430", + "message": "Parkash Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC431", + "message": "Khurla Kingra", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC432", + "message": "Tower Town Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC433", + "message": "Silver Residency", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC434", + "message": "Tower Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC435", + "message": "Guru Nanak Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC436", + "message": "Boota Mandi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC437", + "message": "Boota Pind (Back Side Dr.B.R. Ambedkar Park", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC438", + "message": "Swami Lal JI Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC439", + "message": "New Green Park", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC44", + "message": "Baba Deep Singh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC440", + "message": "Khurla Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC441", + "message": "Professor Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC442", + "message": "Army Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC443", + "message": "Mann Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC444", + "message": "Chopra Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC445", + "message": "Khurla Kingra (Back Side Sai Mandir)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC446", + "message": "Door Darshan Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC447", + "message": "Bombay Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC448", + "message": "Friends Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC449", + "message": "SAS Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC45", + "message": "Nurpur Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC450", + "message": "SAS Nagar Extension", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC451", + "message": "New Green Model Town", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC452", + "message": "Palam Rajeet Apartments", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC453", + "message": "Bank Enclave Part 1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC454", + "message": "Kuki Dhab", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC455", + "message": "Green Woods Apartments", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC456", + "message": "Park View Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC457", + "message": "Housing Board Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC458", + "message": "Satnam Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC459", + "message": "Mann Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC46", + "message": "Sunder Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC460", + "message": "Punjabi Bagh Wadala Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC461", + "message": "Silver heights", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC462", + "message": "Partap Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC463", + "message": "Guru Gobind Singh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC464", + "message": "Guru Arjan dev Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC465", + "message": "G.T.B Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC466", + "message": "Garden Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC467", + "message": "G.T.B Nagar extension", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC468", + "message": "GTB Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC469", + "message": "F.C.I Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC47", + "message": "Hargobind Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC470", + "message": "Chanakya Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC471", + "message": "New GTB Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC472", + "message": "Vivek Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC473", + "message": "Green Model Town", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC474", + "message": "Boota Pind", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC475", + "message": "Wadala Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC476", + "message": "Main Road Abadpura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC477", + "message": "Gali No. 2 To Gali No. 6", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC478", + "message": "Preet Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC479", + "message": "Rameshwar Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC48", + "message": "Gulmarg Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC480", + "message": "Sh. Guru Ravidass Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC481", + "message": "Tubewell wali Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC482", + "message": "Labour Court Gali Panj Peer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC483", + "message": "Maharishi Valmiki Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC484", + "message": "Taneja New Abadpura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC485", + "message": "Avtar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC486", + "message": "New Avtar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC487", + "message": "New Suraj Ganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC488", + "message": "Pishori Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC489", + "message": "Naqvi Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC49", + "message": "Bachint Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC490", + "message": "Dairy Kalu Ram-O Band Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC491", + "message": "Bhargo Camp-Add", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC492", + "message": "Pishori Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC493", + "message": "Link Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC494", + "message": "Abadpura Gali No.1 to 2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC495", + "message": "New Suraj Ganj –west", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC496", + "message": "Gali No-10-B-11-B", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC497", + "message": "Bhargo Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC498", + "message": "Bhargo Camp", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC499", + "message": "Ravidass Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC5", + "message": "Amrit Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC50", + "message": "Sarabha Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC500", + "message": "Channan Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC501", + "message": "Boota Mandi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC502", + "message": "Silver Oak Apartments", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC503", + "message": "Nakodar Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC504", + "message": "Chappli Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC505", + "message": "Sant Pura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC506", + "message": "Arya Samaj Mandir", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC507", + "message": "Valmiki Mandir", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC508", + "message": "Chapal Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC509", + "message": "Kabir Mandir", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC51", + "message": "Chack Hussiana", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC510", + "message": "Gain Giri Mandir", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC511", + "message": "Nirankari Bhawan Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC512", + "message": "Ravidass Dham", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC513", + "message": "Kanth Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC514", + "message": "State Bank Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC515", + "message": "Ravidass Mandir", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC516", + "message": "Sharif Pura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC517", + "message": "Tokri Chowk Bhargo Camp", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC518", + "message": "Gali Mirasiya Wali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC519", + "message": "Gali Somnath Aara Wala", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC52", + "message": "Lamba Pind", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC520", + "message": "Prem Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC521", + "message": "Gali Ravi Karyana Store", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC522", + "message": "Gali Sharma Model School", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC523", + "message": "Chune Wali Gali Boota Mandi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC524", + "message": "Gali Pawan Koushal", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC525", + "message": "Bhargo Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC526", + "message": "Nive Passe Bhargo Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC527", + "message": "Azad Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC528", + "message": "New Suraj Ganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC529", + "message": "New Suraj Ganj (West)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC53", + "message": "Chandigarh Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC530", + "message": "Model House Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC531", + "message": "Main Bazar Bhargo", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC532", + "message": "Mohalla Amar Saw Mill", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC533", + "message": "Bhargo Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC534", + "message": "Shamshan Ghat Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC535", + "message": "Mohalla Vari Vatt", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC536", + "message": "Bhargo Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC537", + "message": "Tej Mohan Nagar Gali No-5 to Gali No-11", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC538", + "message": "New Ashok Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC539", + "message": "Narayan Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC54", + "message": "Succhi Pind", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC540", + "message": "Ashok Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC541", + "message": "New Sant Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC542", + "message": "Sant Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC543", + "message": "Nijatam Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC544", + "message": "Chouhan Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC545", + "message": "Ganesh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC546", + "message": "Basti Nau", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC547", + "message": "Bank Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC548", + "message": "Chaar Marla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC549", + "message": "Block-A,B,C.D", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC55", + "message": "Hardial Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC550", + "message": "Bhagat Singh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC551", + "message": "Rajput Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC552", + "message": "Taranwali Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC553", + "message": "Mohalla Kot", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC554", + "message": "Uttam Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC555", + "message": "Mohalla Chaiaam", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC556", + "message": "Tej Mohan Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC557", + "message": "Sant Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC558", + "message": "Siddhartha Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC559", + "message": "New Abadi Jallowal", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC56", + "message": "New Hardial Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC560", + "message": "Kay Pee Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC561", + "message": "New Model House", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC562", + "message": "Model Gram Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC563", + "message": "Gahi Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC564", + "message": "Jaina Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC565", + "message": "New Ghai Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC566", + "message": "Chiragpura Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC567", + "message": "New Deol Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC568", + "message": "New Dashmesh Nagar Block-A", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC569", + "message": "New Dashmesh Nagar Block-C", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC57", + "message": "Hardip Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC570", + "message": "Tilak Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC571", + "message": "Kartar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC572", + "message": "New Kartar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC573", + "message": "Udye Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC574", + "message": "Deol Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC575", + "message": "New Deol Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC576", + "message": "Aman Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC577", + "message": "Major Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC578", + "message": "Pink City Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC579", + "message": "Kot Sadiq Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC58", + "message": "Judge Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC580", + "message": "Khara Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC581", + "message": "Kot Sadiq", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC582", + "message": "Mast Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC583", + "message": "Thind Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC584", + "message": "Sai Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC585", + "message": "BT Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC586", + "message": "Kanshi Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC587", + "message": "Green Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC588", + "message": "Geeta Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC589", + "message": "New Geeta Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC59", + "message": "Prem Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC590", + "message": "Ishwar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC591", + "message": "New Dashmesh Nagar B Block", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC592", + "message": "Dordarshan Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC593", + "message": "Tower Enclave Phase 2nd", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC594", + "message": "Hamilton Tower", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC595", + "message": "Guru Ravidass Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC596", + "message": "New Ravidass Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC597", + "message": "Shiva Ji Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC598", + "message": "New Shiva Ji Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC599", + "message": "Lasuri Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC6", + "message": "Chak Jinda", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC60", + "message": "Gulmohar City", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC600", + "message": "New Lasuri Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC601", + "message": "Begampura Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC602", + "message": "Main Adda Basti Danishmandan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC603", + "message": "Main Bazar Basti Danishmandan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC604", + "message": "Valmiki Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC605", + "message": "Chandigarh Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC606", + "message": "New Chandigarh Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC607", + "message": "Chungi Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC608", + "message": "Chungi No-9", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC609", + "message": "Tagri Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC61", + "message": "Three Star Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC610", + "message": "Guru Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC611", + "message": "Surjit Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC612", + "message": "Basti Sheikh + Danishmandan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC613", + "message": "Kattra Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC614", + "message": "Guru Sant Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC615", + "message": "Guru Nanak Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC616", + "message": "Lasuri Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC617", + "message": "Baldev Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC618", + "message": "Satkartar Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC619", + "message": "Ujala Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC62", + "message": "Soma Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC620", + "message": "Mohindra Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC621", + "message": "Valmiki Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC622", + "message": "Vada Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC623", + "message": "Banian Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC624", + "message": "Satran Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC625", + "message": "Mochian Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC626", + "message": "Tarkhana Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC627", + "message": "Telian Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC628", + "message": "Road Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC629", + "message": "Manjit Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC63", + "message": "Mata Salani Mandir", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC630", + "message": "Chet Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC631", + "message": "Janak Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC632", + "message": "Chaian Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC633", + "message": "Kot Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC634", + "message": "Gulabia Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC635", + "message": "Bara Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC636", + "message": "Hargobind Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC637", + "message": "Gurditta Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC638", + "message": "Borah Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC639", + "message": "Sethia Wali Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC64", + "message": "Baba Gadila Sham colony (Succhi Pind)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC640", + "message": "Dhankian Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC641", + "message": "Jairath Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC642", + "message": "Bagh Ahluwalia", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC643", + "message": "Kamaliya Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC644", + "message": "Gobind Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC645", + "message": "New Gobind Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC646", + "message": "Dilbagh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC647", + "message": "120' Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC648", + "message": "Shastri Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC649", + "message": "Old Shastri Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC65", + "message": "Deep Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC650", + "message": "Old Dusshara Ground", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC651", + "message": "Surya Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC652", + "message": "Basti Gujan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC653", + "message": "Ambedkar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC654", + "message": "Shah Kuli Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC655", + "message": "Virdi Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC656", + "message": "Valmiki Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC657", + "message": "Vada Vehra", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC658", + "message": "Sunyara Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC659", + "message": "Jangra Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC66", + "message": "New Upkar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC660", + "message": "Machi Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC661", + "message": "Harkrishan Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC662", + "message": "Manjit Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC663", + "message": "New Dilbagh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC664", + "message": "Dilbagh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC665", + "message": "Lahoria Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC666", + "message": "Kot Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC667", + "message": "Binda Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC668", + "message": "Doriya Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC669", + "message": "Board Wali Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC67", + "message": "Moh Kot Ram Dass ( Abadi )", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC670", + "message": "Main Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC671", + "message": "Shibu Mandir Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC672", + "message": "New Adarsh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC673", + "message": "J.P.Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC674", + "message": "Adarsh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC675", + "message": "J.P. Nagar Extension", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC676", + "message": "Basti Nau", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC677", + "message": "Krishan Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC678", + "message": "Basti Mithu", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC679", + "message": "Patwar Khana", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC68", + "message": "Karol Bagh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC680", + "message": "Conal Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC681", + "message": "Harbans Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC682", + "message": "New Harbans Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC683", + "message": "New Harbans Nagar Ext.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC684", + "message": "Adarsh Nagar up to Satyam Hospital Street", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC685", + "message": "New Vijay Nagar Left Side", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC686", + "message": "Tagore Nagar Right Side St.NO.7", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC687", + "message": "Dyal Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC688", + "message": "Gujral Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC689", + "message": "Shakti Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC69", + "message": "Rail Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC690", + "message": "Vijay Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC691", + "message": "S.U.S Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC692", + "message": "Ajit Singh Nagar up to Nakodar Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC693", + "message": "Niwan Suraj Gunj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC694", + "message": "Islam Gunj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC695", + "message": "Islamabad", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC696", + "message": "Mission Compound Left Side Batra Hospital", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC697", + "message": "Makhdoom Pura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC698", + "message": "Dhobi Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC699", + "message": "Mohalla Pacca Bagh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC7", + "message": "Toor Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC70", + "message": "Patel Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC700", + "message": "Ram Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC701", + "message": "Saidan Gate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC702", + "message": "Chowk Kade Shah", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC703", + "message": "Batakh Wala Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC704", + "message": "Rainak Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC705", + "message": "Naya Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC706", + "message": "Shaheed Udham Singh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC707", + "message": "Flats", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC708", + "message": "Civil Hospital", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC709", + "message": "E.S.I Hospital", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC71", + "message": "Sangam Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC710", + "message": "E.S.I Hospital Flats", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC711", + "message": "Milap Chowk to G.P.O", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC712", + "message": "G.P.O to Shastri Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC713", + "message": "Shastri to Milap Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC714", + "message": "Milap to Sunrise Hotal", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC715", + "message": "Sunrise Hotal to Partap Bagh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC716", + "message": "Partap Bagh to Phagwara Gate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC717", + "message": "Naya Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC718", + "message": "Saiden Gate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC719", + "message": "Peer Bodla Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC72", + "message": "Preet Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC720", + "message": "Khazuria Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC721", + "message": "Guru Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC722", + "message": "Neehya Band Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC723", + "message": "Jybal Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC724", + "message": "Neem Wali Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC725", + "message": "Tanki Wali Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC726", + "message": "Khodiya Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC727", + "message": "Kotpakshiya", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC728", + "message": "Hotel Raj Mahal back Side Gurudawara and Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC729", + "message": "Pakka Bagh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC73", + "message": "Mann Singh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC730", + "message": "Chohal Bagh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC731", + "message": "Hindsamachar Ground", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC732", + "message": "Mina Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC733", + "message": "Tikki Bagh Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC734", + "message": "Ucha Suraj Gunj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC735", + "message": "Jyoti chowk to preet Hotel", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC736", + "message": "Charanjit Pura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC737", + "message": "Ajit Pura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC738", + "message": "Jatt Pura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC739", + "message": "Valmiki Gate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC74", + "message": "Suchi Pind", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC740", + "message": "Malka Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC741", + "message": "Mohindru Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC742", + "message": "Mitha Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC743", + "message": "Telwali Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC744", + "message": "Chota Ali Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC745", + "message": "Alli Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC746", + "message": "Bansa Wala Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC747", + "message": "Chajju Ram Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC748", + "message": "Kotwali Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC749", + "message": "Malora Muhalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC75", + "message": "Indian Oil Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC750", + "message": "Nauhrian Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC751", + "message": "Kot Bahadur Khan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC752", + "message": "Sheikhan Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC753", + "message": "Sudan Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC754", + "message": "Deen Dayal Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC755", + "message": "Prem Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC756", + "message": "New Prem Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC757", + "message": "Sat Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC758", + "message": "Chandan Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC759", + "message": "Fateh Puri", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC76", + "message": "Green County", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC760", + "message": "Vikrampura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC761", + "message": "Subash Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC762", + "message": "Partap Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC763", + "message": "Purani Kachehri", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC764", + "message": "Piplan Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC765", + "message": "Chadhian Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC766", + "message": "Lawan Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC767", + "message": "Charjian Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC768", + "message": "Mitha Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC769", + "message": "Bhairon Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC77", + "message": "Ladhewali Pind", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC770", + "message": "Quilla Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC771", + "message": "Qazi Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC772", + "message": "Khingran Gate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC773", + "message": "Mughlan Dhiki", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC774", + "message": "Prem Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC775", + "message": "Purian Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC776", + "message": "Sehglan Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC777", + "message": "Modian Tod", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC778", + "message": "Thapra Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC779", + "message": "Mai Hiran Gate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC78", + "message": "Chokan Kalan Pind", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC780", + "message": "Phagwara Gate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC781", + "message": "Rasta Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC782", + "message": "Biliya Mandir", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC783", + "message": "Talhi Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC784", + "message": "Baghia Whra", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC785", + "message": "Quda Shah Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC786", + "message": "Phir Bodhla Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC787", + "message": "Kalo Vani Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC788", + "message": "Atari Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC789", + "message": "Nacha Badh Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC79", + "message": "Nagal Shama Pind", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC790", + "message": "Kanchia Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC791", + "message": "Qazi Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC792", + "message": "Qilla Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC793", + "message": "Shivraz Garh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC794", + "message": "Panj Peer Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC795", + "message": "Bhagat Singh Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC796", + "message": "Railway Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC797", + "message": "Rishi Nagar Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC798", + "message": "Partap Bagh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC799", + "message": "Awa Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC8", + "message": "Navjot Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC80", + "message": "Datar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC800", + "message": "Kot Kishan Chand", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC801", + "message": "Jagat Pura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC802", + "message": "Dhan Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC803", + "message": "Rishi Nagar (5 Gali)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC804", + "message": "Kishanpura (5 Gali)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC805", + "message": "Inderparsth Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC806", + "message": "Arya Samaj Mandir", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC807", + "message": "Bheem Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC808", + "message": "Sansi Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC809", + "message": "Dolatpuri", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC81", + "message": "Khehra Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC810", + "message": "Kapoor Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC811", + "message": "Ajit Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC812", + "message": "Amrik Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC813", + "message": "New Ajit Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC814", + "message": "New Amrik Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC815", + "message": "Baba Math Shah", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC816", + "message": "Santoshi Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC817", + "message": "Madrasi Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC818", + "message": "Qazi Mandi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC819", + "message": "Kishan Pura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC82", + "message": "Kabir Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC820", + "message": "Hoshiarpur Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC821", + "message": "Old Hoshiarpur Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC822", + "message": "Baldev Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC823", + "message": "New Baldev Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC824", + "message": "Baba Balak Nath Market", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC825", + "message": "Madrasi Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC826", + "message": "Ravidass School Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC827", + "message": "Dhonka Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC828", + "message": "Prithvi Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC829", + "message": "New Prithvi Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC83", + "message": "Kabir Avenue Extension", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC830", + "message": "Lambapind Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC831", + "message": "Dutta Street", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC832", + "message": "Raman Shiv Mandir Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC833", + "message": "Ajit Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC834", + "message": "Balmiki Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC835", + "message": "Vivek Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC836", + "message": "New Vivek Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC837", + "message": "Arjun Singh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC838", + "message": "Jaimal Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC839", + "message": "Durga Mandir Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC84", + "message": "Punjab Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC840", + "message": "Vinay Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC841", + "message": "Akash Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC842", + "message": "Arjun Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC843", + "message": "Jaimal Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC844", + "message": "Upkar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC845", + "message": "New Upkar Nargar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC846", + "message": "Ghandi Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC847", + "message": "New Ghandi Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC848", + "message": "Chakk Hussaina", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC849", + "message": "Hoshiarpur Road Lamba Pind(Left Side)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC85", + "message": "Punjab Avenue Extension", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC850", + "message": "Muslim Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC851", + "message": "New Vinay Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC852", + "message": "Hans Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC853", + "message": "New Santokhpura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC854", + "message": "Durga Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC855", + "message": "Sarabha Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC856", + "message": "Guru Ram Dass Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC857", + "message": "Niwi Abadi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC858", + "message": "Lakshmipura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC859", + "message": "New Lakshmipura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC86", + "message": "Dhaliwal Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC860", + "message": "Vij Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC861", + "message": "Sant Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC862", + "message": "Bhagatpura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC863", + "message": "Jeet Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC864", + "message": "Vikaspuri", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC865", + "message": "New Vikaspuri", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC866", + "message": "Ambika Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC867", + "message": "B.D.Steel", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC868", + "message": "Santokhpura Nivi Abadi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC869", + "message": "Basti Bhure Kha", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC87", + "message": "Himachal Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC870", + "message": "Shah Sikandar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC871", + "message": "Ram Gharia School", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC872", + "message": "Preet Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC873", + "message": "Basant Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC874", + "message": "New Basant Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC875", + "message": "Aman Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC876", + "message": "New Aman Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC877", + "message": "New colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC878", + "message": "Kamal Park", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC879", + "message": "Preet Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC88", + "message": "Green Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC880", + "message": "New Preet Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC881", + "message": "Sodal Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC882", + "message": "Sidh Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC883", + "message": "Ashok Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC884", + "message": "Ramco Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC885", + "message": "New Sodal Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC886", + "message": "Mathura Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC887", + "message": "Kot Baba Deep Singh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC888", + "message": "Tobari Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC889", + "message": "Tanda Road Hanuman Mandir Chowk to Tanda Road Railway Crossing", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC89", + "message": "Sunshine Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC890", + "message": "Shah Sikandar Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC891", + "message": "Kailash Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC892", + "message": "New Kailash Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC893", + "message": "New Kailash Nagar Ext.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC894", + "message": "Gobind Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC895", + "message": "New Gobind Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC896", + "message": "J.M.C Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC897", + "message": "Gujja Peer Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC898", + "message": "Amar Garden", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC899", + "message": "Saipur Kalan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC9", + "message": "New Guru Amar Das Extension Paschim", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC90", + "message": "Silver Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC900", + "message": "Sanjay Gandhi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC901", + "message": "Dada Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC902", + "message": "Saini Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC903", + "message": "Chotta Saipur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC904", + "message": "Hari Singh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC905", + "message": "Shashi Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC906", + "message": "Lathi Mar Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC907", + "message": "Sodal Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC908", + "message": "Gujja Peer Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC909", + "message": "Sodal Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC91", + "message": "Randhawa Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC910", + "message": "Laxmi Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC911", + "message": "Kali Mata Mandir Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC912", + "message": "Bhagat Singh Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC913", + "message": "Baba Balak Nath Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC914", + "message": "Shiv Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC915", + "message": "Canal Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC916", + "message": "Industrial Area", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC917", + "message": "Dada Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC918", + "message": "Chota Saipur Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC919", + "message": "Shiv Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC92", + "message": "Lahora Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC920", + "message": "Brij Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC921", + "message": "Gajji Gulla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC922", + "message": "Parbhat Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC923", + "message": "Ram Nagar Railway", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC924", + "message": "Crossing to Gajji Gujja Chowk Left Side", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC925", + "message": "Industrial Area Ext.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC926", + "message": "Canal Industrial Complex", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC927", + "message": "Gandhi Camp", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC928", + "message": "Gurdev Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC929", + "message": "Gopal Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC93", + "message": "Nanak Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC930", + "message": "Satnam Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC931", + "message": "Sawan Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC932", + "message": "Valmiki Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC933", + "message": "New Grain Market", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC934", + "message": "Jain Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC935", + "message": "New Gopal Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC936", + "message": "Neela Mahal", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC937", + "message": "Mohalla Krar Khan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC938", + "message": "Sangra Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC939", + "message": "Teacher Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC94", + "message": "Basant Hill", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC940", + "message": "Krishna Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC941", + "message": "Tobri Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC942", + "message": "Guru Nanak Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC943", + "message": "Harnamdasspura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC944", + "message": "Kot Lakhpat Rai", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC945", + "message": "Banda Bahadur Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC946", + "message": "Kapurthala Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC947", + "message": "Bagh Baharia", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC948", + "message": "Gulab Devi Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC949", + "message": "Bulton Park Cricket Stadium", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC95", + "message": "University Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC950", + "message": "Durga Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC951", + "message": "B.S.F Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC952", + "message": "Gopal Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC953", + "message": "New Colony Gopal Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC954", + "message": "Main Road Old Sabzi Mandi to Burton Park", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC955", + "message": "Sangat Singh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC956", + "message": "Balwant Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC957", + "message": "Bandha Bhadur Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC958", + "message": "Sarswati Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC959", + "message": "PNT Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC96", + "message": "Moti Bagh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC960", + "message": "Bagh Bharia", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC961", + "message": "Bhagwan Dass Pura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC962", + "message": "Dhiman Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC963", + "message": "Adresh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC964", + "message": "Natha Bagechi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC965", + "message": "Misson Compound", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC966", + "message": "Talab Bharia", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC967", + "message": "Jail Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC968", + "message": "Kabir Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC969", + "message": "Kachari Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC97", + "message": "Park Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC970", + "message": "Gandhi Camp 3 Lain", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC971", + "message": "Windsor Park", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC972", + "message": "Rose Park", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC973", + "message": "Jain Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC974", + "message": "Gupta Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC975", + "message": "Hardev Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC976", + "message": "Guru Nanak Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC977", + "message": "Guru Arjun Dev Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC978", + "message": "Sarswati Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC979", + "message": "Surjit Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC98", + "message": "Chopra Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC980", + "message": "Malak Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC981", + "message": "Kalyani Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC982", + "message": "Suriya Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC983", + "message": "Vivekananda Park", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC984", + "message": "Ariya Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC985", + "message": "Pingalwara", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC986", + "message": "Gujrati Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC987", + "message": "Shardha Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC988", + "message": "Sawarn Park", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC989", + "message": "Ram Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC99", + "message": "Dr. Ambedkar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC990", + "message": "Chhota Gandhi Nagar Camp", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC991", + "message": "Friends Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC992", + "message": "Seth Hukam Chand Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC993", + "message": "Greater Kailash", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC994", + "message": "Moti Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC995", + "message": "New Moti Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC996", + "message": "Tagore Park/ Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC997", + "message": "Professor Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC998", + "message": "Maqsudan Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_JLC999", + "message": "Bohar Wala Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_SUN01", + "message": "Locality 01", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_SUN02", + "message": "Locality 02", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_SUN03", + "message": "Locality 03", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_SUN10", + "message": "Locality 10", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_SUN11", + "message": "Locality 11", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_SUN12", + "message": "Locality 12", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_SUN20", + "message": "Locality 20", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_SUN21", + "message": "Locality 21", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_SUN22", + "message": "Locality 22", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_SUN30", + "message": "Locality 30", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_SUN31", + "message": "Locality 31", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_SUN32", + "message": "Locality 32", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_ADMIN_SUN33", + "message": "Locality 33", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_CITYA_LABEL", + "message": "City A", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_JLC476_SL0001", + "message": "Kathagada juanga sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_JLC476_SL0013", + "message": "K.K sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_JLC476_SL0014", + "message": "G.G slum", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_JLC476_SL0015", + "message": "North border sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_JLC477_SL0002", + "message": "Kathagada Parbatia Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_JLC477_SL0016", + "message": "New Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_JLC477_SL0017", + "message": "Old Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_JLC477_SL0018", + "message": "AJS Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_JLC478_SL0003", + "message": "Gangadhar Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_JLC478_SL0019", + "message": "New Giojyothi Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_JLC478_SL0020", + "message": "2nd cross Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_JLC478_SL0021", + "message": "Drose nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_JLC478_SL0022", + "message": "New life sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_JLC479_SL0004", + "message": "Pandab Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_JLC479_SL0023", + "message": "Pandab cross street", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_JLC479_SL0024", + "message": "Gandhi mandap sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_JLC479_SL0025", + "message": "K.K nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_JLC479_SL0026", + "message": "Post office road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_JLC479_SL0027", + "message": "Amritsar bypass road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_JLC480_SL0005", + "message": "Haridakhandi Harijana sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_JLC480_SL0028", + "message": "BPL colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_JLC480_SL0029", + "message": "CMC out gate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_JLC480_SL0030", + "message": "City slum development colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_JLC481_SL0006", + "message": "Haridakhandi Kadalibada Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_JLC482_SL0007", + "message": "Haridakhandi Bada sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_JLC483_SL0008", + "message": "Haridakhandi Redika Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_JLC484_SL0009", + "message": "Golapali Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_JLC485_SL0010", + "message": "Surya Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_JLC486_SL0011", + "message": "Damba Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_JLC487_SL0012", + "message": "Raju Dhoba Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1", + "message": "Ashok Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC10", + "message": "Gurbachan Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC100", + "message": "Dera Preet Nagar Jhuggia", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1000", + "message": "Maqsudan Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1001", + "message": "Nagra Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1002", + "message": "Jawala Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1003", + "message": "New Jawala Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1004", + "message": "Patel Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1005", + "message": "New Patel Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1006", + "message": "Guru Ravidass Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1007", + "message": "Bhupinder Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1008", + "message": "Ashok Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1009", + "message": "Nagra Pind", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC101", + "message": "Miya Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1010", + "message": "New Nagra", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1011", + "message": "Shital Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1012", + "message": "New Shital Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1013", + "message": "Jugian", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1014", + "message": "Sham Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1015", + "message": "Amar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1016", + "message": "Babu Labh Singh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1017", + "message": "Rattan Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1018", + "message": "New Rattan Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1019", + "message": "Shaheed Babu Labh Singh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC102", + "message": "Shalimar Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1020", + "message": "New Shaheed Babu Labh Singh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1021", + "message": "Madhuban Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1022", + "message": "Gujrati Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1023", + "message": "Jagwali Kathi Near Canal", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1024", + "message": "Ragu Nath Mandir Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1025", + "message": "Kacha Kot", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1026", + "message": "Old Green Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1027", + "message": "Green Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1028", + "message": "Raja Garden", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1029", + "message": "Raja Garden Extension", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC103", + "message": "New Dashmesh Nagar Part", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1030", + "message": "V.I.P Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1031", + "message": "Butti Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1032", + "message": "Gagan Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1033", + "message": "Bhai Gurdass Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1034", + "message": "Baba Bachittar Ji Nagar Mithu Basti", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1035", + "message": "Tara Singh Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1036", + "message": "New Rasila Nagar Basti Danishmandan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1037", + "message": "Dilbagh Nagar Ext.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1038", + "message": "Rasila Nagar Phase 2 Danishmandan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1039", + "message": "Rasila Nagar Basti Danishmandan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC104", + "message": "Kaki Pind", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1040", + "message": "Begampura Colony Danishmandan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1041", + "message": "Baba Budha Ji Nagar Mithu Nagar Basti", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1042", + "message": "Ekta Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1043", + "message": "New Shastri Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1044", + "message": "Satnam Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1045", + "message": "Anoop Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1046", + "message": "Bal bro Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1047", + "message": "Badhri Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1048", + "message": "Badhri Colony Phase (2)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1049", + "message": "Ram Shernam Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC105", + "message": "New Joginder Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1050", + "message": "Peer Das Basti", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1051", + "message": "Kamar Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1052", + "message": "Panu Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1053", + "message": "Paras Estate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1054", + "message": "Paras Estate 2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1055", + "message": "Maharaja Garden", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1056", + "message": "Harbanse Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1057", + "message": "5 Peer Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1058", + "message": "Anoop Nagar (2)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1059", + "message": "Sher Singh Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC106", + "message": "Part of Joginder Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1060", + "message": "Roshan Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1061", + "message": "Qilla Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1062", + "message": "Kathera Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1063", + "message": "Gautam Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1064", + "message": "New Gautam Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1065", + "message": "Kabir Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1066", + "message": "Guru Ram Dass Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1067", + "message": "Mata Sant Kaur Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1068", + "message": "City A Prime", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1069", + "message": "City A Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC107", + "message": "New Beant Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1070", + "message": "City A Kunj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1071", + "message": "Rajan Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1072", + "message": "Kailash Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1073", + "message": "Balmik Mohalla Bawa Khel", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1074", + "message": "Akal Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1075", + "message": "Basti Bawa Khel (main)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1076", + "message": "Raj Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1077", + "message": "New Raj Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1078", + "message": "Kabir Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1079", + "message": "Bank Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC108", + "message": "Part of Beant Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1080", + "message": "Basti Bawa Khel", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1081", + "message": "Katehara Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1082", + "message": "New Rattan Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1083", + "message": "Guru Nanak Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1084", + "message": "New Guru Nanak Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1085", + "message": "Shiv Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1086", + "message": "Baba Kahandass Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1087", + "message": "Village Nagara", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1088", + "message": "Abinandan Park", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1089", + "message": "National Park", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC109", + "message": "Gulmarg Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1090", + "message": "Ashok Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1091", + "message": "Vivek Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1092", + "message": "Green Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1093", + "message": "Shanti Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1094", + "message": "Viveka Nand Park", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1095", + "message": "Subash Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1096", + "message": "Golden Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1097", + "message": "Navyug Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1098", + "message": "New Shiv Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1099", + "message": "Maqsudan Byepass", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC11", + "message": "Indra Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC110", + "message": "Mehtab Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1100", + "message": "Mahasha Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1101", + "message": "Anand Ngr", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1102", + "message": "New Anand Ngr", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1103", + "message": "Janta Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1104", + "message": "Navnirman Janta Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1105", + "message": "Issa Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1106", + "message": "Guru Nanak Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1107", + "message": "Aara Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1108", + "message": "Surat Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1109", + "message": "Master Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC111", + "message": "Professor Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1110", + "message": "Angad Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC1111", + "message": "Amandip Avenue.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC112", + "message": "Mohan Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC113", + "message": "Part of Ladhewali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC114", + "message": "Part of New Dashmesh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC115", + "message": "Dhilwan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC116", + "message": "Dhanowali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC117", + "message": "Sanik Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC118", + "message": "Old Dashmesh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC119", + "message": "Ajeet Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC12", + "message": "Sant Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC120", + "message": "Guru Anged Dev Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC121", + "message": "Sunder Nagar Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC122", + "message": "Kohinoor Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC123", + "message": "Sunny Prime", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC124", + "message": "Arman Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC125", + "message": "Johan Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC126", + "message": "Ganesh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC127", + "message": "New Ganesh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC128", + "message": "Masi Mohalla Dakoha", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC129", + "message": "Tarun Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC13", + "message": "Kalia Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC130", + "message": "Kaki Pind", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC131", + "message": "Arman Nagar 2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC132", + "message": "Birring Pind-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC133", + "message": "Birring Pind-2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC134", + "message": "Mohinder Singh Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC135", + "message": "Mehnga Singh Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC136", + "message": "Dada Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC137", + "message": "Peace Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC138", + "message": "Bunga Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC139", + "message": "Golden Colony (Phase 1)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC14", + "message": "Kalia Colony Ph-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC140", + "message": "Golden Colony (Phase 2)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC141", + "message": "Golden Colony (Phase 3)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC142", + "message": "Model Estate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC143", + "message": "Defence Colony (Phase 1)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC144", + "message": "New Defence Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC145", + "message": "Paragpura ( Old Phagwara Road)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC146", + "message": "Paragpura ( Pind )", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC147", + "message": "Paragpura ( Abadi Near Railway fatak )", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC148", + "message": "Ratti Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC149", + "message": "Thakur Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC15", + "message": "Kalia Colony PH-2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC150", + "message": "Ram Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC151", + "message": "Chotte Ram Bagh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC152", + "message": "Panch Sheel Colony ( Half )", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC153", + "message": "Bhullar Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC154", + "message": "Modern State", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC155", + "message": "Yadav Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC156", + "message": "Baba Budha Ji Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC157", + "message": "Bhuda Ji Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC158", + "message": "Shaheed Gurvinder Singh Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC159", + "message": "National Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC16", + "message": "Kalia Colony PH-3", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC160", + "message": "Ravidass Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC161", + "message": "Guru Nanak Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC162", + "message": "Jagjit Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC163", + "message": "Old Kaki Pind", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC164", + "message": "Village Dakoha", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC165", + "message": "Baba Budha Singh Nagar Street No 1 to 9", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC166", + "message": "Ekta Nagar PH-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC167", + "message": "Ekta Nagar PH-2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC168", + "message": "Joginder Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC169", + "message": "Panch Rattan Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC17", + "message": "Kalia Farm", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC170", + "message": "New Defence Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC171", + "message": "Beant Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC172", + "message": "Old Beant Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC173", + "message": "PSEB Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC174", + "message": "BB Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC175", + "message": "Half Rama Mandi Main Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC176", + "message": "Khateek Market Ramamandi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC177", + "message": "Valmik Mohalla Ramamandi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC178", + "message": "Krishna Sweet Wali Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC179", + "message": "Palwon Wali Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC18", + "message": "Guru Amar Dass Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC180", + "message": "Fouji Wali Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC181", + "message": "Bhatra Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC182", + "message": "Aytar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC183", + "message": "Guru Nanak Pura East", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC184", + "message": "Guru Nanak Pura West", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC185", + "message": "Chugitti", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC186", + "message": "Ekta Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC187", + "message": "P.A.P", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC188", + "message": "Railway Colony-3", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC189", + "message": "Rajinder Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC19", + "message": "Guru Amar Dass Nagar 2- Marla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC190", + "message": "Preet Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC191", + "message": "Sehgal Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC192", + "message": "Kirti Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC193", + "message": "Mohalla Ladowali Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC194", + "message": "Mohyal Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC195", + "message": "Link Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC196", + "message": "Hargobind Pura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC197", + "message": "Ranjit Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC198", + "message": "New Rajinder Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC199", + "message": "Police Line", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC2", + "message": "Bank Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC20", + "message": "New Guru Amar Dass Nagar Ext.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC200", + "message": "Guru Nanak Pura (West) Street No. 1 to 8", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC201", + "message": "New Guru Nanak Pura (West)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC202", + "message": "Bhojowal Patti (Chugittee)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC203", + "message": "Bharat Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC204", + "message": "Satnam Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC205", + "message": "Chugittee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC206", + "message": "Ved Ram Parkash Street", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC207", + "message": "Guru Gobind Singh Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC208", + "message": "Sureya Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC209", + "message": "Komal Vihar Old & New", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC21", + "message": "Guru Amar Dass Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC210", + "message": "Bashirpura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC211", + "message": "Thakur Singh Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC212", + "message": "Royal Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC213", + "message": "Jhansi Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC214", + "message": "Gobind Garh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC215", + "message": "Arjun Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC216", + "message": "40 Quarter", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC217", + "message": "Dashmesh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC218", + "message": "New Dashmesh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC219", + "message": "Sant Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC22", + "message": "Venus Valley", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC220", + "message": "Shanti Pura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC221", + "message": "New Baradari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC222", + "message": "Poultry Form Area", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC223", + "message": "Prem Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC224", + "message": "Mandi Fenton Garg", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC225", + "message": "Partap Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC226", + "message": "Rishi Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC227", + "message": "Brahm Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC228", + "message": "Mandi Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC229", + "message": "Railway Colony No. 1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC23", + "message": "Baba Mohan Dass Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC230", + "message": "Guard Colony No-2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC231", + "message": "Old Jawahar Nagar Single Lane", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC232", + "message": "Central Town", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC233", + "message": "Krishan Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC234", + "message": "Old Jawahar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC235", + "message": "Master Tara Singh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC236", + "message": "P & T Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC237", + "message": "Riaz Pura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC238", + "message": "Ramesh Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC239", + "message": "Shiva Ji Park", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC24", + "message": "Salempur Muslmana", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC240", + "message": "Netaji Park", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC241", + "message": "Civil Lines", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC242", + "message": "Mohalla Makhdumpura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC243", + "message": "Mohalla Shastri Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC244", + "message": "Fauji Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC245", + "message": "Shivalik Apartments", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC246", + "message": "Venus Apartments", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC247", + "message": "B-Block Apartments", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC248", + "message": "Paradise Apartments", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC249", + "message": "Gurkirpa Apartments", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC25", + "message": "Swarn Park-1Swarn Prak- 2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC250", + "message": "Ganga Apartments", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC251", + "message": "Nakodar Road Market", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC252", + "message": "Lajpat Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC253", + "message": "Lajpat Nagar Market", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC254", + "message": "Abadpura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC255", + "message": "Balmiki Colony Link Road Abadpura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC256", + "message": "Major Bahadur Singh Nagar & Marg", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC257", + "message": "New Model Town Mall Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC258", + "message": "New Jawahar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC259", + "message": "Guru Nanak Mission Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC26", + "message": "Sanjay Gandhi Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC260", + "message": "Badridass Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC261", + "message": "Purani Baradari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC262", + "message": "Skylark Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC263", + "message": "Civil Lines", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC264", + "message": "Sehdev Market", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC265", + "message": "Namdev Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC266", + "message": "G.T Road Market", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC267", + "message": "Shastri Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC268", + "message": "Sanjay Gandhi Market", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC269", + "message": "New Courts Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC27", + "message": "Gadaipur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC270", + "message": "Police Line Market", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC271", + "message": "BMC Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC272", + "message": "Market Opposite Bus Stand", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC273", + "message": "Link Road Model Town", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC274", + "message": "Valmiki Colony Major Bahadur Singh Marg", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC275", + "message": "Radio Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC276", + "message": "New Jawahar Nagar (Point)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC277", + "message": "Green Park", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC278", + "message": "Mota Singh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC279", + "message": "Modern Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC28", + "message": "Raja Garden", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC280", + "message": "Gurjaipal Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC281", + "message": "Wariam Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC282", + "message": "Gian Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC283", + "message": "New Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC284", + "message": "Defence Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC285", + "message": "Defence Colony Ext.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC286", + "message": "Chotti Baradari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC287", + "message": "Jaswant Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC288", + "message": "Roop Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC289", + "message": "Atwal Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC29", + "message": "Ram Bagh Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC290", + "message": "Atwal House", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC291", + "message": "New Hardyal Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC292", + "message": "Hardyal Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC293", + "message": "Rubi Hospital", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC294", + "message": "BSF Camp", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC295", + "message": "New Green Park", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC296", + "message": "Railway Quarter ( Cool Road)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC297", + "message": "Garha/Shiv Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC298", + "message": "Dayanand chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC299", + "message": "Rattan Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC3", + "message": "Sarabha Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC30", + "message": "Dada Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC300", + "message": "Sark Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC301", + "message": "Valmiki Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC302", + "message": "Ravi dass Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC303", + "message": "Makhan Ramwali Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC304", + "message": "School wali Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC305", + "message": "Jiwan Singh Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC306", + "message": "Tanki Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC307", + "message": "Phagu Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC308", + "message": "Sarpanch wali Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC309", + "message": "Main Bazar Rama Mandir", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC31", + "message": "Industrial Area", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC310", + "message": "Main Bazar Gurudwara Singh Sabha", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC311", + "message": "Garha Vehanda", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC312", + "message": "Phagu Mohalla Ram Mandir wali Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC313", + "message": "Phagwari Mohalla Near Janj Ghar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC314", + "message": "Phagwari Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC315", + "message": "Dr. Mana Wali Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC316", + "message": "Old Div. 7 Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC317", + "message": "Cantt. Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC318", + "message": "Cantt. Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC319", + "message": "New Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC32", + "message": "Focal Point", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC320", + "message": "Jaswant Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC321", + "message": "Jawant Nagar near Gurudwara", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC322", + "message": "Jaswant Nagar Gali No. 1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC323", + "message": "Jaswant Nagar Gali Thekewali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC324", + "message": "Jaswant Nagar Gali no. 100 3 to 5", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC325", + "message": "Jaswant Nagar Gali 2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC326", + "message": "Golden Aveune-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC327", + "message": "Golden Avenue-2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC328", + "message": "Gurjeet Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC329", + "message": "Dashmesh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC33", + "message": "Transport Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC330", + "message": "Chanchal Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC331", + "message": "Chotti Baradari Part-2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC332", + "message": "Idgah Mohalla Garha", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC333", + "message": "Sarak Mohalla Garha", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC334", + "message": "Guru Diwan Nagar Garha", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC335", + "message": "Tara Chand Colony Garha", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC336", + "message": "Chintpurni Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC337", + "message": "Geeta Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC338", + "message": "Garha", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC339", + "message": "Labour Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC34", + "message": "Udyog Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC340", + "message": "Kunowali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC341", + "message": "Urban Estate Ph-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC342", + "message": "M.I.G", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC343", + "message": "Urban Estate Phase Half", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC344", + "message": "Sabowal Old.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC345", + "message": "Isherpuri Colony (Some Part)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC346", + "message": "Urban Estate 2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC347", + "message": "Sabowal", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC348", + "message": "Lahor Nangal", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC349", + "message": "Isherpuri Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC35", + "message": "Parshuram Pur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC350", + "message": "Ranjit Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC351", + "message": "Kalgidhar Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC352", + "message": "New Kalgidhar Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC353", + "message": "Ravinder Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC354", + "message": "Dashmesh Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC355", + "message": "Karol Bagh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC356", + "message": "Vijay Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC357", + "message": "Guru Ram Dass Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC358", + "message": "Baba Makhan Shah Lubana", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC359", + "message": "Friends Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC36", + "message": "Vadda Saipur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC360", + "message": "Officer Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC361", + "message": "D.C Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC362", + "message": "White Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC363", + "message": "Punjabi Bagh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC364", + "message": "Lahor Nagar Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC365", + "message": "Happy Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC366", + "message": "New Isherpuri", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC367", + "message": "Universal Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC368", + "message": "Singh Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC369", + "message": "Engineer Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC37", + "message": "Reru", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC370", + "message": "Green Garden Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC371", + "message": "Ravinder Nagar Extension", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC372", + "message": "Punjabi Bagh Extension", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC373", + "message": "Model Town", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC374", + "message": "Parkash Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC375", + "message": "Guru Nanak Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC376", + "message": "Guru Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC377", + "message": "Rishi Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC378", + "message": "Jyoti Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC379", + "message": "Shankar Garden", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC38", + "message": "Hargobind Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC380", + "message": "Lal Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC381", + "message": "Satkartar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC382", + "message": "Ravinder Nagar Extension", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC383", + "message": "Cheema Nagar Ext.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC384", + "message": "Vasant Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC385", + "message": "Vasant Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC386", + "message": "Vasant Vihar Ext.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC387", + "message": "Urban Estate Ph-2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC388", + "message": "Model Town", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC389", + "message": "New Jawahar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC39", + "message": "Punjabi Bagh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC390", + "message": "Lajpat Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC391", + "message": "Dada Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC392", + "message": "Green Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC393", + "message": "Green Model Town", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC394", + "message": "Kewal Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC395", + "message": "Indra Park", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC396", + "message": "Cheema Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC397", + "message": "Shiv Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC398", + "message": "Gurmeet Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC399", + "message": "Ramneek Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC4", + "message": "Paschim Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC40", + "message": "Bachint Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC400", + "message": "Bank Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC401", + "message": "Bank Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC402", + "message": "Raja Garden", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC403", + "message": "Keshev Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC404", + "message": "Ekta Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC405", + "message": "New Raja Garden", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC406", + "message": "New Raja Garden Extension", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC407", + "message": "Bhai Samund Singh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC408", + "message": "New Arora Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC409", + "message": "Mithapur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC41", + "message": "Parsuram Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC410", + "message": "King Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC411", + "message": "Green Wood Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC412", + "message": "Ram Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC413", + "message": "Sewerage Board Quarter", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC414", + "message": "75 Garden Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC415", + "message": "Panch Sheel Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC416", + "message": "Mayor Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC417", + "message": "New Light Colony Phase -1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC418", + "message": "Bank Enclave Phase-2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC419", + "message": "Residence Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC42", + "message": "Kahanpur Abadi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC420", + "message": "Sudhama Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC421", + "message": "New Sudhama Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC422", + "message": "Rocky Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC423", + "message": "New Light Colony Phase-2 (Sudhama Vihar)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC424", + "message": "VIP Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC425", + "message": "Sadhu Singh Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC426", + "message": "Red Face Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC427", + "message": "New Garden Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC428", + "message": "Bhai Banno Ji Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC429", + "message": "Gill Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC43", + "message": "Ramneek Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC430", + "message": "Parkash Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC431", + "message": "Khurla Kingra", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC432", + "message": "Tower Town Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC433", + "message": "Silver Residency", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC434", + "message": "Tower Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC435", + "message": "Guru Nanak Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC436", + "message": "Boota Mandi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC437", + "message": "Boota Pind (Back Side Dr.B.R. Ambedkar Park", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC438", + "message": "Swami Lal JI Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC439", + "message": "New Green Park", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC44", + "message": "Baba Deep Singh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC440", + "message": "Khurla Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC441", + "message": "Professor Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC442", + "message": "Army Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC443", + "message": "Mann Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC444", + "message": "Chopra Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC445", + "message": "Khurla Kingra (Back Side Sai Mandir)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC446", + "message": "Door Darshan Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC447", + "message": "Bombay Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC448", + "message": "Friends Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC449", + "message": "SAS Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC45", + "message": "Nurpur Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC450", + "message": "SAS Nagar Extension", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC451", + "message": "New Green Model Town", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC452", + "message": "Palam Rajeet Apartments", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC453", + "message": "Bank Enclave Part 1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC454", + "message": "Kuki Dhab", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC455", + "message": "Green Woods Apartments", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC456", + "message": "Park View Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC457", + "message": "Housing Board Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC458", + "message": "Satnam Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC459", + "message": "Mann Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC46", + "message": "Sunder Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC460", + "message": "Punjabi Bagh Wadala Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC461", + "message": "Silver heights", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC462", + "message": "Partap Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC463", + "message": "Guru Gobind Singh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC464", + "message": "Guru Arjan dev Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC465", + "message": "G.T.B Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC466", + "message": "Garden Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC467", + "message": "G.T.B Nagar extension", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC468", + "message": "GTB Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC469", + "message": "F.C.I Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC47", + "message": "Hargobind Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC470", + "message": "Chanakya Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC471", + "message": "New GTB Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC472", + "message": "Vivek Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC473", + "message": "Green Model Town", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC474", + "message": "Boota Pind", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC475", + "message": "Wadala Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC476", + "message": "Main Road Abadpura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC477", + "message": "Gali No. 2 To Gali No. 6", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC478", + "message": "Preet Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC479", + "message": "Rameshwar Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC48", + "message": "Gulmarg Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC480", + "message": "Sh. Guru Ravidass Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC481", + "message": "Tubewell wali Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC482", + "message": "Labour Court Gali Panj Peer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC483", + "message": "Maharishi Valmiki Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC484", + "message": "Taneja New Abadpura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC485", + "message": "Avtar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC486", + "message": "New Avtar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC487", + "message": "New Suraj Ganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC488", + "message": "Pishori Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC489", + "message": "Naqvi Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC49", + "message": "Bachint Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC490", + "message": "Dairy Kalu Ram-O Band Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC491", + "message": "Bhargo Camp-Add", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC492", + "message": "Pishori Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC493", + "message": "Link Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC494", + "message": "Abadpura Gali No.1 to 2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC495", + "message": "New Suraj Ganj –west", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC496", + "message": "Gali No-10-B-11-B", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC497", + "message": "Bhargo Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC498", + "message": "Bhargo Camp", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC499", + "message": "Ravidass Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC5", + "message": "Amrit Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC50", + "message": "Sarabha Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC500", + "message": "Channan Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC501", + "message": "Boota Mandi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC502", + "message": "Silver Oak Apartments", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC503", + "message": "Nakodar Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC504", + "message": "Chappli Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC505", + "message": "Sant Pura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC506", + "message": "Arya Samaj Mandir", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC507", + "message": "Valmiki Mandir", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC508", + "message": "Chapal Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC509", + "message": "Kabir Mandir", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC51", + "message": "Chack Hussiana", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC510", + "message": "Gain Giri Mandir", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC511", + "message": "Nirankari Bhawan Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC512", + "message": "Ravidass Dham", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC513", + "message": "Kanth Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC514", + "message": "State Bank Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC515", + "message": "Ravidass Mandir", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC516", + "message": "Sharif Pura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC517", + "message": "Tokri Chowk Bhargo Camp", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC518", + "message": "Gali Mirasiya Wali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC519", + "message": "Gali Somnath Aara Wala", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC52", + "message": "Lamba Pind", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC520", + "message": "Prem Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC521", + "message": "Gali Ravi Karyana Store", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC522", + "message": "Gali Sharma Model School", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC523", + "message": "Chune Wali Gali Boota Mandi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC524", + "message": "Gali Pawan Koushal", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC525", + "message": "Bhargo Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC526", + "message": "Nive Passe Bhargo Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC527", + "message": "Azad Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC528", + "message": "New Suraj Ganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC529", + "message": "New Suraj Ganj (West)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC53", + "message": "Chandigarh Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC530", + "message": "Model House Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC531", + "message": "Main Bazar Bhargo", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC532", + "message": "Mohalla Amar Saw Mill", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC533", + "message": "Bhargo Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC534", + "message": "Shamshan Ghat Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC535", + "message": "Mohalla Vari Vatt", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC536", + "message": "Bhargo Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC537", + "message": "Tej Mohan Nagar Gali No-5 to Gali No-11", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC538", + "message": "New Ashok Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC539", + "message": "Narayan Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC54", + "message": "Succhi Pind", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC540", + "message": "Ashok Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC541", + "message": "New Sant Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC542", + "message": "Sant Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC543", + "message": "Nijatam Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC544", + "message": "Chouhan Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC545", + "message": "Ganesh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC546", + "message": "Basti Nau", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC547", + "message": "Bank Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC548", + "message": "Chaar Marla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC549", + "message": "Block-A,B,C,D", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC55", + "message": "Hardial Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC550", + "message": "Bhagat Singh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC551", + "message": "Rajput Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC552", + "message": "Taranwali Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC553", + "message": "Mohalla Kot", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC554", + "message": "Uttam Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC555", + "message": "Mohalla Chaiaam", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC556", + "message": "Tej Mohan Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC557", + "message": "Sant Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC558", + "message": "Siddhartha Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC559", + "message": "New Abadi Jallowal", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC56", + "message": "New Hardial Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC560", + "message": "Kay Pee Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC561", + "message": "New Model House", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC562", + "message": "Model Gram Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC563", + "message": "Gahi Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC564", + "message": "Jaina Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC565", + "message": "New Ghai Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC566", + "message": "Chiragpura Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC567", + "message": "New Deol Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC568", + "message": "New Dashmesh Nagar Block-A", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC569", + "message": "New Dashmesh Nagar Block-C", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC57", + "message": "Hardip Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC570", + "message": "Tilak Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC571", + "message": "Kartar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC572", + "message": "New Kartar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC573", + "message": "Udye Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC574", + "message": "Deol Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC575", + "message": "New Deol Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC576", + "message": "Aman Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC577", + "message": "Major Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC578", + "message": "Pink City Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC579", + "message": "Kot Sadiq Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC58", + "message": "Judge Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC580", + "message": "Khara Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC581", + "message": "Kot Sadiq", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC582", + "message": "Mast Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC583", + "message": "Thind Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC584", + "message": "Sai Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC585", + "message": "BT Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC586", + "message": "Kanshi Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC587", + "message": "Green Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC588", + "message": "Geeta Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC589", + "message": "New Geeta Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC59", + "message": "Prem Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC590", + "message": "Ishwar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC591", + "message": "New Dashmesh Nagar B Block", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC592", + "message": "Dordarshan Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC593", + "message": "Tower Enclave Phase 2nd", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC594", + "message": "Hamilton Tower", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC595", + "message": "Guru Ravidass Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC596", + "message": "New Ravidass Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC597", + "message": "Shiva Ji Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC598", + "message": "New Shiva Ji Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC599", + "message": "Lasuri Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC6", + "message": "Chak Jinda", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC60", + "message": "Gulmohar City", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC600", + "message": "New Lasuri Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC601", + "message": "Begampura Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC602", + "message": "Main Adda Basti Danishmandan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC603", + "message": "Main Bazar Basti Danishmandan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC604", + "message": "Valmiki Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC605", + "message": "Chandigarh Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC606", + "message": "New Chandigarh Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC607", + "message": "Chungi Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC608", + "message": "Chungi No-9", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC609", + "message": "Tagri Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC61", + "message": "Three Star Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC610", + "message": "Guru Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC611", + "message": "Surjit Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC612", + "message": "Basti Sheikh + Danishmandan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC613", + "message": "Kattra Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC614", + "message": "Guru Sant Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC615", + "message": "Guru Nanak Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC616", + "message": "Lasuri Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC617", + "message": "Baldev Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC618", + "message": "Satkartar Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC619", + "message": "Ujala Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC62", + "message": "Soma Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC620", + "message": "Mohindra Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC621", + "message": "Valmiki Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC622", + "message": "Vada Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC623", + "message": "Banian Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC624", + "message": "Satran Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC625", + "message": "Mochian Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC626", + "message": "Tarkhana Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC627", + "message": "Telian Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC628", + "message": "Road Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC629", + "message": "Manjit Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC63", + "message": "Mata Salani Mandir", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC630", + "message": "Chet Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC631", + "message": "Janak Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC632", + "message": "Chaian Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC633", + "message": "Kot Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC634", + "message": "Gulabia Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC635", + "message": "Bara Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC636", + "message": "Hargobind Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC637", + "message": "Gurditta Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC638", + "message": "Borah Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC639", + "message": "Sethia Wali Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC64", + "message": "Baba Gadila Sham colony (Succhi Pind)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC640", + "message": "Dhankian Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC641", + "message": "Jairath Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC642", + "message": "Bagh Ahluwalia", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC643", + "message": "Kamaliya Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC644", + "message": "Gobind Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC645", + "message": "New Gobind Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC646", + "message": "Dilbagh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC647", + "message": "120' Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC648", + "message": "Shastri Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC649", + "message": "Old Shastri Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC65", + "message": "Deep Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC650", + "message": "Old Dusshara Ground", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC651", + "message": "Surya Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC652", + "message": "Basti Gujan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC653", + "message": "Ambedkar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC654", + "message": "Shah Kuli Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC655", + "message": "Virdi Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC656", + "message": "Valmiki Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC657", + "message": "Vada Vehra", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC658", + "message": "Sunyara Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC659", + "message": "Jangra Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC66", + "message": "New Upkar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC660", + "message": "Machi Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC661", + "message": "Harkrishan Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC662", + "message": "Manjit Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC663", + "message": "New Dilbagh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC664", + "message": "Dilbagh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC665", + "message": "Lahoria Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC666", + "message": "Kot Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC667", + "message": "Binda Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC668", + "message": "Doriya Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC669", + "message": "Board Wali Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC67", + "message": "Moh Kot Ram Dass ( Abadi )", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC670", + "message": "Main Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC671", + "message": "Shibu Mandir Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC672", + "message": "New Adarsh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC673", + "message": "J.P.Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC674", + "message": "Adarsh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC675", + "message": "J.P. Nagar Extension", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC676", + "message": "Basti Nau", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC677", + "message": "Krishan Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC678", + "message": "Basti Mithu", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC679", + "message": "Patwar Khana", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC68", + "message": "Karol Bagh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC680", + "message": "Conal Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC681", + "message": "Harbans Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC682", + "message": "New Harbans Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC683", + "message": "New Harbans Nagar Ext.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC684", + "message": "Adarsh Nagar up to Satyam Hospital Street", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC685", + "message": "New Vijay Nagar Left Side", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC686", + "message": "Tagore Nagar Right Side St.NO.7", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC687", + "message": "Dyal Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC688", + "message": "Gujral Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC689", + "message": "Shakti Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC69", + "message": "Rail Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC690", + "message": "Vijay Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC691", + "message": "S.U.S Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC692", + "message": "Ajit Singh Nagar up to Nakodar Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC693", + "message": "Niwan Suraj Gunj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC694", + "message": "Islam Gunj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC695", + "message": "Islamabad", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC696", + "message": "Mission Compound Left Side Batra Hospital", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC697", + "message": "Makhdoom Pura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC698", + "message": "Dhobi Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC699", + "message": "Mohalla Pacca Bagh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC7", + "message": "Toor Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC70", + "message": "Patel Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC700", + "message": "Ram Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC701", + "message": "Saidan Gate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC702", + "message": "Chowk Kade Shah", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC703", + "message": "Batakh Wala Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC704", + "message": "Rainak Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC705", + "message": "Naya Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC706", + "message": "Shaheed Udham Singh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC707", + "message": "Flats", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC708", + "message": "Civil Hospital", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC709", + "message": "E.S.I Hospital", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC71", + "message": "Sangam Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC710", + "message": "E.S.I Hospital Flats", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC711", + "message": "Milap Chowk to G.P.O", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC712", + "message": "G.P.O to Shastri Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC713", + "message": "Shastri to Milap Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC714", + "message": "Milap to Sunrise Hotal", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC715", + "message": "Sunrise Hotal to Partap Bagh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC716", + "message": "Partap Bagh to Phagwara Gate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC717", + "message": "Naya Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC718", + "message": "Saiden Gate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC719", + "message": "Peer Bodla Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC72", + "message": "Preet Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC720", + "message": "Khazuria Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC721", + "message": "Guru Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC722", + "message": "Neehya Band Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC723", + "message": "Jybal Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC724", + "message": "Neem Wali Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC725", + "message": "Tanki Wali Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC726", + "message": "Khodiya Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC727", + "message": "Kotpakshiya", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC728", + "message": "Hotel Raj Mahal back Side Gurudawara and Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC729", + "message": "Pakka Bagh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC73", + "message": "Mann Singh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC730", + "message": "Chohal Bagh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC731", + "message": "Hindsamachar Ground", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC732", + "message": "Mina Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC733", + "message": "Tikki Bagh Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC734", + "message": "Ucha Suraj Gunj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC735", + "message": "Jyoti chowk to preet Hotel", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC736", + "message": "Charanjit Pura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC737", + "message": "Ajit Pura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC738", + "message": "Jatt Pura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC739", + "message": "Valmiki Gate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC74", + "message": "Suchi Pind", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC740", + "message": "Malka Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC741", + "message": "Mohindru Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC742", + "message": "Mitha Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC743", + "message": "Telwali Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC744", + "message": "Chota Ali Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC745", + "message": "Alli Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC746", + "message": "Bansa Wala Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC747", + "message": "Chajju Ram Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC748", + "message": "Kotwali Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC749", + "message": "Malora Muhalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC75", + "message": "Indian Oil Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC750", + "message": "Nauhrian Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC751", + "message": "Kot Bahadur Khan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC752", + "message": "Sheikhan Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC753", + "message": "Sudan Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC754", + "message": "Deen Dayal Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC755", + "message": "Prem Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC756", + "message": "New Prem Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC757", + "message": "Sat Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC758", + "message": "Chandan Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC759", + "message": "Fateh Puri", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC76", + "message": "Green County", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC760", + "message": "Vikrampura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC761", + "message": "Subash Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC762", + "message": "Partap Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC763", + "message": "Purani Kachehri", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC764", + "message": "Piplan Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC765", + "message": "Chadhian Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC766", + "message": "Lawan Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC767", + "message": "Charjian Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC768", + "message": "Mitha Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC769", + "message": "Bhairon Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC77", + "message": "Ladhewali Pind", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC770", + "message": "Quilla Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC771", + "message": "Qazi Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC772", + "message": "Khingran Gate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC773", + "message": "Mughlan Dhiki", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC774", + "message": "Prem Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC775", + "message": "Purian Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC776", + "message": "Sehglan Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC777", + "message": "Modian Tod", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC778", + "message": "Thapra Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC779", + "message": "Mai Hiran Gate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC78", + "message": "Chokan Kalan Pind", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC780", + "message": "Phagwara Gate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC781", + "message": "Rasta Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC782", + "message": "Biliya Mandir", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC783", + "message": "Talhi Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC784", + "message": "Baghia Whra", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC785", + "message": "Quda Shah Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC786", + "message": "Phir Bodhla Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC787", + "message": "Kalo Vani Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC788", + "message": "Atari Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC789", + "message": "Nacha Badh Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC79", + "message": "Nagal Shama Pind", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC790", + "message": "Kanchia Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC791", + "message": "Qazi Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC792", + "message": "Qilla Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC793", + "message": "Shivraz Garh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC794", + "message": "Panj Peer Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC795", + "message": "Bhagat Singh Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC796", + "message": "Railway Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC797", + "message": "Rishi Nagar Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC798", + "message": "Partap Bagh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC799", + "message": "Awa Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC8", + "message": "Navjot Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC80", + "message": "Datar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC800", + "message": "Kot Kishan Chand", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC801", + "message": "Jagat Pura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC802", + "message": "Dhan Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC803", + "message": "Rishi Nagar (5 Gali)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC804", + "message": "Kishanpura (5 Gali)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC805", + "message": "Inderparsth Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC806", + "message": "Arya Samaj Mandir", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC807", + "message": "Bheem Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC808", + "message": "Sansi Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC809", + "message": "Dolatpuri", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC81", + "message": "Khehra Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC810", + "message": "Kapoor Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC811", + "message": "Ajit Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC812", + "message": "Amrik Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC813", + "message": "New Ajit Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC814", + "message": "New Amrik Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC815", + "message": "Baba Math Shah", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC816", + "message": "Santoshi Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC817", + "message": "Madrasi Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC818", + "message": "Qazi Mandi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC819", + "message": "Kishan Pura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC82", + "message": "Kabir Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC820", + "message": "Hoshiarpur Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC821", + "message": "Old Hoshiarpur Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC822", + "message": "Baldev Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC823", + "message": "New Baldev Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC824", + "message": "Baba Balak Nath Market", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC825", + "message": "Madrasi Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC826", + "message": "Ravidass School Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC827", + "message": "Dhonka Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC828", + "message": "Prithvi Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC829", + "message": "New Prithvi Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC83", + "message": "Kabir Avenue Extension", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC830", + "message": "Lambapind Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC831", + "message": "Dutta Street", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC832", + "message": "Raman Shiv Mandir Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC833", + "message": "Ajit Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC834", + "message": "Balmiki Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC835", + "message": "Vivek Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC836", + "message": "New Vivek Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC837", + "message": "Arjun Singh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC838", + "message": "Jaimal Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC839", + "message": "Durga Mandir Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC84", + "message": "Punjab Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC840", + "message": "Vinay Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC841", + "message": "Akash Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC842", + "message": "Arjun Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC843", + "message": "Jaimal Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC844", + "message": "Upkar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC845", + "message": "New Upkar Nargar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC846", + "message": "Ghandi Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC847", + "message": "New Ghandi Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC848", + "message": "Chakk Hussaina", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC849", + "message": "Hoshiarpur Road Lamba Pind(Left Side)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC85", + "message": "Punjab Avenue Extension", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC850", + "message": "Muslim Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC851", + "message": "New Vinay Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC852", + "message": "Hans Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC853", + "message": "New Santokhpura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC854", + "message": "Durga Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC855", + "message": "Sarabha Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC856", + "message": "Guru Ram Dass Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC857", + "message": "Niwi Abadi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC858", + "message": "Lakshmipura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC859", + "message": "New Lakshmipura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC86", + "message": "Dhaliwal Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC860", + "message": "Vij Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC861", + "message": "Sant Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC862", + "message": "Bhagatpura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC863", + "message": "Jeet Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC864", + "message": "Vikaspuri", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC865", + "message": "New Vikaspuri", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC866", + "message": "Ambika Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC867", + "message": "B.D.Steel", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC868", + "message": "Santokhpura Nivi Abadi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC869", + "message": "Basti Bhure Kha", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC87", + "message": "Himachal Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC870", + "message": "Shah Sikandar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC871", + "message": "Ram Gharia School", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC872", + "message": "Preet Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC873", + "message": "Basant Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC874", + "message": "New Basant Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC875", + "message": "Aman Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC876", + "message": "New Aman Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC877", + "message": "New colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC878", + "message": "Kamal Park", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC879", + "message": "Preet Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC88", + "message": "Green Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC880", + "message": "New Preet Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC881", + "message": "Sodal Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC882", + "message": "Sidh Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC883", + "message": "Ashok Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC884", + "message": "Ramco Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC885", + "message": "New Sodal Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC886", + "message": "Mathura Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC887", + "message": "Kot Baba Deep Singh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC888", + "message": "Tobari Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC889", + "message": "Tanda Road Hanuman Mandir Chowk to Tanda Road Railway Crossing", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC89", + "message": "Sunshine Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC890", + "message": "Shah Sikandar Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC891", + "message": "Kailash Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC892", + "message": "New Kailash Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC893", + "message": "New Kailash Nagar Ext.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC894", + "message": "Gobind Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC895", + "message": "New Gobind Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC896", + "message": "J.M.C Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC897", + "message": "Gujja Peer Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC898", + "message": "Amar Garden", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC899", + "message": "Saipur Kalan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC9", + "message": "New Guru Amar Das Extension Paschim", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC90", + "message": "Silver Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC900", + "message": "Sanjay Gandhi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC901", + "message": "Dada Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC902", + "message": "Saini Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC903", + "message": "Chotta Saipur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC904", + "message": "Hari Singh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC905", + "message": "Shashi Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC906", + "message": "Lathi Mar Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC907", + "message": "Sodal Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC908", + "message": "Gujja Peer Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC909", + "message": "Sodal Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC91", + "message": "Randhawa Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC910", + "message": "Laxmi Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC911", + "message": "Kali Mata Mandir Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC912", + "message": "Bhagat Singh Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC913", + "message": "Baba Balak Nath Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC914", + "message": "Shiv Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC915", + "message": "Canal Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC916", + "message": "Industrial Area", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC917", + "message": "Dada Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC918", + "message": "Chota Saipur Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC919", + "message": "Shiv Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC92", + "message": "Lahora Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC920", + "message": "Brij Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC921", + "message": "Gajji Gulla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC922", + "message": "Parbhat Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC923", + "message": "Ram Nagar Railway", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC924", + "message": "Crossing to Gajji Gujja Chowk Left Side", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC925", + "message": "Industrial Area Ext.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC926", + "message": "Canal Industrial Complex", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC927", + "message": "Gandhi Camp", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC928", + "message": "Gurdev Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC929", + "message": "Gopal Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC93", + "message": "Nanak Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC930", + "message": "Satnam Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC931", + "message": "Sawan Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC932", + "message": "Valmiki Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC933", + "message": "New Grain Market", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC934", + "message": "Jain Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC935", + "message": "New Gopal Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC936", + "message": "Neela Mahal", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC937", + "message": "Mohalla Krar Khan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC938", + "message": "Sangra Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC939", + "message": "Teacher Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC94", + "message": "Basant Hill", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC940", + "message": "Krishna Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC941", + "message": "Tobri Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC942", + "message": "Guru Nanak Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC943", + "message": "Harnamdasspura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC944", + "message": "Kot Lakhpat Rai", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC945", + "message": "Banda Bahadur Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC946", + "message": "Kapurthala Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC947", + "message": "Bagh Baharia", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC948", + "message": "Gulab Devi Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC949", + "message": "Bulton Park Cricket Stadium", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC95", + "message": "University Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC950", + "message": "Durga Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC951", + "message": "B.S.F Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC952", + "message": "Gopal Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC953", + "message": "New Colony Gopal Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC954", + "message": "Main Road Old Sabzi Mandi to Burton Park", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC955", + "message": "Sangat Singh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC956", + "message": "Balwant Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC957", + "message": "Bandha Bhadur Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC958", + "message": "Sarswati Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC959", + "message": "PNT Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC96", + "message": "Moti Bagh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC960", + "message": "Bagh Bharia", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC961", + "message": "Bhagwan Dass Pura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC962", + "message": "Dhiman Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC963", + "message": "Adresh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC964", + "message": "Natha Bagechi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC965", + "message": "Misson Compound", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC966", + "message": "Talab Bharia", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC967", + "message": "Jail Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC968", + "message": "Kabir Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC969", + "message": "Kachari Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC97", + "message": "Park Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC970", + "message": "Gandhi Camp 3 Lain", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC971", + "message": "Windsor Park", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC972", + "message": "Rose Park", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC973", + "message": "Jain Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC974", + "message": "Gupta Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC975", + "message": "Hardev Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC976", + "message": "Guru Nanak Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC977", + "message": "Guru Arjun Dev Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC978", + "message": "Sarswati Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC979", + "message": "Surjit Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC98", + "message": "Chopra Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC980", + "message": "Malak Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC981", + "message": "Kalyani Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC982", + "message": "Suriya Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC983", + "message": "Vivekananda Park", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC984", + "message": "Ariya Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC985", + "message": "Pingalwara", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC986", + "message": "Gujrati Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC987", + "message": "Shardha Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC988", + "message": "Sawarn Park", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC989", + "message": "Ram Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC99", + "message": "Dr. Ambedkar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC990", + "message": "Chhota Gandhi Nagar Camp", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC991", + "message": "Friends Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC992", + "message": "Seth Hukam Chand Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC993", + "message": "Greater Kailash", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC994", + "message": "Moti Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC995", + "message": "New Moti Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC996", + "message": "Tagore Park/ Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC997", + "message": "Professor Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC998", + "message": "Maqsudan Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_JLC999", + "message": "Bohar Wala Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_LOCALITY_STATEA_01_01_SUN01", + "message": "Ajit Nagar - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_LOCALITY_STATEA_01_02_SUN02", + "message": "Back Side 33 KVA Grid Patiala Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_LOCALITY_STATEA_01_03_SUN03", + "message": "Bharath Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_LOCALITY_STATEA_02_01_SUN10", + "message": "Backside Brijbala Hospital - Area3", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_LOCALITY_STATEA_02_02_SUN11", + "message": "Bigharwal Chowk to Railway Station - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_LOCALITY_STATEA_02_03_SUN12", + "message": "Chandar Colony Biggarwal Road - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_LOCALITY_STATEA_03_01_SUN20", + "message": "Aggarsain Chowk to Mal Godown - Both Sides - Area3", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_LOCALITY_STATEA_03_02_SUN21", + "message": "ATAR SINGH COLONY - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_LOCALITY_STATEA_03_03_SUN22", + "message": "Back Side Naina Devi Mandir - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_LOCALITY_STATEA_04_01_SUN30", + "message": "Bakhtaur Nagar - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_LOCALITY_STATEA_04_02_SUN31", + "message": "Bhai Mool Chand Sahib Colony - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_LOCALITY_STATEA_04_03_SUN32", + "message": "College Road (Southern side) - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_LOCALITY_STATEA_04_04_SUN33", + "message": "Ekta Colony (Southern Side) - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_REVENUE_LOCALITY_STATEA_01_01_SUN01", + "message": "Ajit Nagar - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_REVENUE_LOCALITY_STATEA_01_02_SUN02", + "message": "Back Side 33 KVA Grid Patiala Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_REVENUE_LOCALITY_STATEA_01_03_SUN03", + "message": "Bharath Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_REVENUE_LOCALITY_STATEA_02_01_SUN10", + "message": "Backside Brijbala Hospital - Area3", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_REVENUE_LOCALITY_STATEA_02_02_SUN11", + "message": "Bigharwal Chowk to Railway Station - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_REVENUE_LOCALITY_STATEA_02_03_SUN12", + "message": "Chandar Colony Biggarwal Road - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_REVENUE_LOCALITY_STATEA_03_01_SUN20", + "message": "Aggarsain Chowk to Mal Godown - Both Sides - Area3", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_REVENUE_LOCALITY_STATEA_03_02_SUN21", + "message": "ATAR SINGH COLONY - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_REVENUE_LOCALITY_STATEA_03_03_SUN22", + "message": "Back Side Naina Devi Mandir - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_REVENUE_LOCALITY_STATEA_04_01_SUN30", + "message": "Bakhtaur Nagar - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_REVENUE_LOCALITY_STATEA_04_02_SUN31", + "message": "Bhai Mool Chand Sahib Colony - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_REVENUE_LOCALITY_STATEA_04_03_SUN32", + "message": "College Road (Southern side) - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_REVENUE_LOCALITY_STATEA_04_04_SUN33", + "message": "Ekta Colony (Southern Side) - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_SUN01", + "message": "Ajit Nagar - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_SUN02", + "message": "Back Side 33 KVA Grid Patiala Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_SUN03", + "message": "Bharath Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_SUN10", + "message": "Backside Brijbala Hospital - Area3", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_SUN11", + "message": "Bigharwal Chowk to Railway Station - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_SUN12", + "message": "Chandar Colony Biggarwal Road - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_SUN20", + "message": "Aggarsain Chowk to Mal Godown - Both Sides - Area3", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_SUN21", + "message": "ATAR SINGH COLONY - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_SUN22", + "message": "Back Side Naina Devi Mandir - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_SUN30", + "message": "Bakhtaur Nagar - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_SUN31", + "message": "Bhai Mool Chand Sahib Colony - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_SUN32", + "message": "College Road (Southern side) - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_SUN33", + "message": "Ekta Colony (Southern Side) - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYA_REVENUE_null", + "message": "NA", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_ADMIN_SU166", + "message": "Mohalla Majoran", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_ADMIN_SUN02", + "message": "Aggarsain Chowk to Mal Godown - Both Sides", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_ADMIN_SUN04", + "message": "Ajit Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_ADMIN_SUN08", + "message": "ATAR SINGH COLONY", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_ADMIN_SUN105", + "message": "Jaura Khoo to Saraffa Bazaar (Southern Side)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_ADMIN_SUN109", + "message": "Kailash Parbat", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_ADMIN_SUN11", + "message": "Back Side 33 KVA Grid Patiala Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_ADMIN_SUN12", + "message": "Back Side 66 KVA Grid Patiala Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_ADMIN_SUN13", + "message": "Back Side Civil Courts Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_ADMIN_SUN132", + "message": "Mohalla Akalgarh Gurudwara", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_ADMIN_SUN134", + "message": "Mohalla Bhadra Kali Mandir", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_ADMIN_SUN136", + "message": "Mohalla Bhatta Wala", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_ADMIN_SUN137", + "message": "Mohalla Bhawdeyan Wala", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_ADMIN_SUN138", + "message": "Mohalla Bhojeka (both sides)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_ADMIN_SUN144", + "message": "Mohalla Kohliyan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_ADMIN_SUN150", + "message": "Mohalla Rajan Wala (both sides)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_ADMIN_SUN153", + "message": "Mohalla Singhkiyan (Nothern Side)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_ADMIN_SUN158", + "message": "Mohalla-Kashayian wala", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_ADMIN_SUN161", + "message": "Mohalla-Singhkiya wala", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_ADMIN_SUN167", + "message": "Mohalla Angaria wala", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_ADMIN_SUN169", + "message": "Mohalla Banda Patti", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_ADMIN_SUN170", + "message": "Mohalla Bhai Ka", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_ADMIN_SUN173", + "message": "Mohalla Ganj Sheeda", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_ADMIN_SUN176", + "message": "Mohalla Kango", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_ADMIN_SUN178", + "message": "Mohalla Singh kia", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_ADMIN_SUN18", + "message": "Back Side Naina Devi Mandir", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_ADMIN_SUN194", + "message": "NEAR GURUDWARA PEHALI PATSHAHI UDAM SINGH ROAD", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_ADMIN_SUN20", + "message": "Backside Brijbala Hospital", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_ADMIN_SUN23", + "message": "BACKSIDE OLD GRAIN MARKET", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_ADMIN_SUN25", + "message": "Bakhtaur Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_ADMIN_SUN31", + "message": "Bhai Mool Chand Sahib Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_ADMIN_SUN35", + "message": "Bigharwal Chowk to Railway Station", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_ADMIN_SUN40", + "message": "Chandar Colony Biggarwal Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_ADMIN_SUN41", + "message": "Charjan Wala Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_ADMIN_SUN45", + "message": "Cinema Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_ADMIN_SUN46", + "message": "Cinema Road to Ali Bazaar (Nothern Side)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_ADMIN_SUN49", + "message": "College Road (Southern side)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_ADMIN_SUN54", + "message": "Deedar Tailor to Mata Modi Park- West Side", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_ADMIN_SUN55", + "message": "Deep Rice Mill Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_ADMIN_SUN56", + "message": "Dental College", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_ADMIN_SUN62", + "message": "Ekta Colony (Southern Side)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_ADMIN_SUN75", + "message": "Gaushala", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_ADMIN_SUN80", + "message": "Gugga Maadi Road (east side)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_ADMIN_SUN84", + "message": "Gurudwara Niai Sahib Street 1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_REVENUE_SU166", + "message": "Mohalla Majoran - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_REVENUE_SUN02", + "message": "Aggarsain Chowk to Mal Godown - Both Sides - Area3", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_REVENUE_SUN04", + "message": "Ajit Nagar - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_REVENUE_SUN08", + "message": "ATAR SINGH COLONY - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_REVENUE_SUN105", + "message": "Jaura Khoo to Saraffa Bazaar (Southern Side) - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_REVENUE_SUN109", + "message": "Kailash Parbat - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_REVENUE_SUN11", + "message": "Back Side 33 KVA Grid Patiala Road - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_REVENUE_SUN12", + "message": "Back Side 66 KVA Grid Patiala Road - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_REVENUE_SUN13", + "message": "Back Side Civil Courts Colony - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_REVENUE_SUN132", + "message": "Mohalla Akalgarh Gurudwara - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_REVENUE_SUN134", + "message": "Mohalla Bhadra Kali Mandir - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_REVENUE_SUN136", + "message": "Mohalla Bhatta Wala - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_REVENUE_SUN137", + "message": "Mohalla Bhawdeyan Wala - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_REVENUE_SUN138", + "message": "Mohalla Bhojeka (both sides) - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_REVENUE_SUN144", + "message": "Mohalla Kohliyan - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_REVENUE_SUN150", + "message": "Mohalla Rajan Wala (both sides) - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_REVENUE_SUN153", + "message": "Mohalla Singhkiyan (Nothern Side) - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_REVENUE_SUN158", + "message": "Mohalla-Kashayian wala - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_REVENUE_SUN161", + "message": "Mohalla-Singhkiya wala - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_REVENUE_SUN167", + "message": "Mohalla Angaria wala - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_REVENUE_SUN169", + "message": "Mohalla Banda Patti - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_REVENUE_SUN170", + "message": "Mohalla Bhai Ka - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_REVENUE_SUN173", + "message": "Mohalla Ganj Sheeda - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_REVENUE_SUN176", + "message": "Mohalla Kango - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_REVENUE_SUN178", + "message": "Mohalla Singh kia - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_REVENUE_SUN18", + "message": "Back Side Naina Devi Mandir - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_REVENUE_SUN194", + "message": "NEAR GURUDWARA PEHALI PATSHAHI UDAM SINGH ROAD - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_REVENUE_SUN20", + "message": "Backside Brijbala Hospital - Area3", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_REVENUE_SUN23", + "message": "BACKSIDE OLD GRAIN MARKET - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_REVENUE_SUN25", + "message": "Bakhtaur Nagar - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_REVENUE_SUN31", + "message": "Bhai Mool Chand Sahib Colony - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_REVENUE_SUN35", + "message": "Bigharwal Chowk to Railway Station - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_REVENUE_SUN40", + "message": "Chandar Colony Biggarwal Road - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_REVENUE_SUN41", + "message": "Charjan Wala Mohalla - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_REVENUE_SUN45", + "message": "Cinema Road - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_REVENUE_SUN46", + "message": "Cinema Road to Ali Bazaar (Nothern Side) - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_REVENUE_SUN49", + "message": "College Road (Southern side) - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_REVENUE_SUN54", + "message": "Deedar Tailor to Mata Modi Park- West Side - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_REVENUE_SUN55", + "message": "Deep Rice Mill Road - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_REVENUE_SUN56", + "message": "Dental College - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_REVENUE_SUN62", + "message": "Ekta Colony (Southern Side) - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_REVENUE_SUN75", + "message": "Gaushala", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_REVENUE_SUN80", + "message": "Gugga Maadi Road (east side) - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYB_REVENUE_SUN84", + "message": "Gurudwara Niai Sahib Street 1 - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_ADMIN_SU166", + "message": "Mohalla Majoran", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_ADMIN_SUN02", + "message": "Aggarsain Chowk to Mal Godown - Both Sides", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_ADMIN_SUN04", + "message": "Ajit Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_ADMIN_SUN08", + "message": "ATAR SINGH COLONY", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_ADMIN_SUN105", + "message": "Jaura Khoo to Saraffa Bazaar (Southern Side)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_ADMIN_SUN109", + "message": "Kailash Parbat", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_ADMIN_SUN11", + "message": "Back Side 33 KVA Grid Patiala Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_ADMIN_SUN12", + "message": "Back Side 66 KVA Grid Patiala Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_ADMIN_SUN13", + "message": "Back Side Civil Courts Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_ADMIN_SUN132", + "message": "Mohalla Akalgarh Gurudwara", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_ADMIN_SUN134", + "message": "Mohalla Bhadra Kali Mandir", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_ADMIN_SUN136", + "message": "Mohalla Bhatta Wala", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_ADMIN_SUN137", + "message": "Mohalla Bhawdeyan Wala", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_ADMIN_SUN138", + "message": "Mohalla Bhojeka (both sides)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_ADMIN_SUN144", + "message": "Mohalla Kohliyan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_ADMIN_SUN150", + "message": "Mohalla Rajan Wala (both sides)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_ADMIN_SUN153", + "message": "Mohalla Singhkiyan (Nothern Side)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_ADMIN_SUN158", + "message": "Mohalla-Kashayian wala", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_ADMIN_SUN161", + "message": "Mohalla-Singhkiya wala", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_ADMIN_SUN167", + "message": "Mohalla Angaria wala", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_ADMIN_SUN169", + "message": "Mohalla Banda Patti", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_ADMIN_SUN170", + "message": "Mohalla Bhai Ka", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_ADMIN_SUN173", + "message": "Mohalla Ganj Sheeda", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_ADMIN_SUN176", + "message": "Mohalla Kango", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_ADMIN_SUN178", + "message": "Mohalla Singh kia", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_ADMIN_SUN18", + "message": "Back Side Naina Devi Mandir", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_ADMIN_SUN194", + "message": "NEAR GURUDWARA PEHALI PATSHAHI UDAM SINGH ROAD", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_ADMIN_SUN20", + "message": "Backside Brijbala Hospital", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_ADMIN_SUN23", + "message": "BACKSIDE OLD GRAIN MARKET", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_ADMIN_SUN25", + "message": "Bakhtaur Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_ADMIN_SUN31", + "message": "Bhai Mool Chand Sahib Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_ADMIN_SUN35", + "message": "Bigharwal Chowk to Railway Station", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_ADMIN_SUN40", + "message": "Chandar Colony Biggarwal Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_ADMIN_SUN41", + "message": "Charjan Wala Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_ADMIN_SUN45", + "message": "Cinema Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_ADMIN_SUN46", + "message": "Cinema Road to Ali Bazaar (Nothern Side)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_ADMIN_SUN49", + "message": "College Road (Southern side)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_ADMIN_SUN54", + "message": "Deedar Tailor to Mata Modi Park- West Side", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_ADMIN_SUN55", + "message": "Deep Rice Mill Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_ADMIN_SUN56", + "message": "Dental College", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_ADMIN_SUN62", + "message": "Ekta Colony (Southern Side)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_ADMIN_SUN75", + "message": "Gaushala", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_ADMIN_SUN80", + "message": "Gugga Maadi Road (east side)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_ADMIN_SUN84", + "message": "Gurudwara Niai Sahib Street 1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_REVENUE_SU166", + "message": "Mohalla Majoran - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_REVENUE_SUN02", + "message": "Aggarsain Chowk to Mal Godown - Both Sides - Area3", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_REVENUE_SUN04", + "message": "Ajit Nagar - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_REVENUE_SUN08", + "message": "ATAR SINGH COLONY - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_REVENUE_SUN105", + "message": "Jaura Khoo to Saraffa Bazaar (Southern Side) - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_REVENUE_SUN109", + "message": "Kailash Parbat - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_REVENUE_SUN11", + "message": "Back Side 33 KVA Grid Patiala Road - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_REVENUE_SUN12", + "message": "Back Side 66 KVA Grid Patiala Road - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_REVENUE_SUN13", + "message": "Back Side Civil Courts Colony - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_REVENUE_SUN132", + "message": "Mohalla Akalgarh Gurudwara - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_REVENUE_SUN134", + "message": "Mohalla Bhadra Kali Mandir - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_REVENUE_SUN136", + "message": "Mohalla Bhatta Wala - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_REVENUE_SUN137", + "message": "Mohalla Bhawdeyan Wala - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_REVENUE_SUN138", + "message": "Mohalla Bhojeka (both sides) - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_REVENUE_SUN144", + "message": "Mohalla Kohliyan - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_REVENUE_SUN150", + "message": "Mohalla Rajan Wala (both sides) - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_REVENUE_SUN153", + "message": "Mohalla Singhkiyan (Nothern Side) - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_REVENUE_SUN158", + "message": "Mohalla-Kashayian wala - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_REVENUE_SUN161", + "message": "Mohalla-Singhkiya wala - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_REVENUE_SUN167", + "message": "Mohalla Angaria wala - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_REVENUE_SUN169", + "message": "Mohalla Banda Patti - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_REVENUE_SUN170", + "message": "Mohalla Bhai Ka - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_REVENUE_SUN173", + "message": "Mohalla Ganj Sheeda - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_REVENUE_SUN176", + "message": "Mohalla Kango - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_REVENUE_SUN178", + "message": "Mohalla Singh kia - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_REVENUE_SUN18", + "message": "Back Side Naina Devi Mandir - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_REVENUE_SUN194", + "message": "NEAR GURUDWARA PEHALI PATSHAHI UDAM SINGH ROAD - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_REVENUE_SUN20", + "message": "Backside Brijbala Hospital - Area3", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_REVENUE_SUN23", + "message": "BACKSIDE OLD GRAIN MARKET - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_REVENUE_SUN25", + "message": "Bakhtaur Nagar - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_REVENUE_SUN31", + "message": "Bhai Mool Chand Sahib Colony - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_REVENUE_SUN35", + "message": "Bigharwal Chowk to Railway Station - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_REVENUE_SUN40", + "message": "Chandar Colony Biggarwal Road - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_REVENUE_SUN41", + "message": "Charjan Wala Mohalla - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_REVENUE_SUN45", + "message": "Cinema Road - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_REVENUE_SUN46", + "message": "Cinema Road to Ali Bazaar (Nothern Side) - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_REVENUE_SUN49", + "message": "College Road (Southern side) - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_REVENUE_SUN54", + "message": "Deedar Tailor to Mata Modi Park- West Side - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_REVENUE_SUN55", + "message": "Deep Rice Mill Road - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_REVENUE_SUN56", + "message": "Dental College - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_REVENUE_SUN62", + "message": "Ekta Colony (Southern Side) - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_REVENUE_SUN75", + "message": "Gaushala", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_REVENUE_SUN80", + "message": "Gugga Maadi Road (east side) - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYC_REVENUE_SUN84", + "message": "Gurudwara Niai Sahib Street 1 - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_ADMIN_SU166", + "message": "Mohalla Majoran", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_ADMIN_SUN02", + "message": "Aggarsain Chowk to Mal Godown - Both Sides", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_ADMIN_SUN04", + "message": "Ajit Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_ADMIN_SUN08", + "message": "ATAR SINGH COLONY", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_ADMIN_SUN105", + "message": "Jaura Khoo to Saraffa Bazaar (Southern Side)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_ADMIN_SUN109", + "message": "Kailash Parbat", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_ADMIN_SUN11", + "message": "Back Side 33 KVA Grid Patiala Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_ADMIN_SUN12", + "message": "Back Side 66 KVA Grid Patiala Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_ADMIN_SUN13", + "message": "Back Side Civil Courts Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_ADMIN_SUN132", + "message": "Mohalla Akalgarh Gurudwara", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_ADMIN_SUN134", + "message": "Mohalla Bhadra Kali Mandir", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_ADMIN_SUN136", + "message": "Mohalla Bhatta Wala", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_ADMIN_SUN137", + "message": "Mohalla Bhawdeyan Wala", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_ADMIN_SUN138", + "message": "Mohalla Bhojeka (both sides)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_ADMIN_SUN144", + "message": "Mohalla Kohliyan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_ADMIN_SUN150", + "message": "Mohalla Rajan Wala (both sides)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_ADMIN_SUN153", + "message": "Mohalla Singhkiyan (Nothern Side)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_ADMIN_SUN158", + "message": "Mohalla-Kashayian wala", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_ADMIN_SUN161", + "message": "Mohalla-Singhkiya wala", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_ADMIN_SUN167", + "message": "Mohalla Angaria wala", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_ADMIN_SUN169", + "message": "Mohalla Banda Patti", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_ADMIN_SUN170", + "message": "Mohalla Bhai Ka", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_ADMIN_SUN173", + "message": "Mohalla Ganj Sheeda", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_ADMIN_SUN176", + "message": "Mohalla Kango", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_ADMIN_SUN178", + "message": "Mohalla Singh kia", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_ADMIN_SUN18", + "message": "Back Side Naina Devi Mandir", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_ADMIN_SUN194", + "message": "NEAR GURUDWARA PEHALI PATSHAHI UDAM SINGH ROAD", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_ADMIN_SUN20", + "message": "Backside Brijbala Hospital", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_ADMIN_SUN23", + "message": "BACKSIDE OLD GRAIN MARKET", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_ADMIN_SUN25", + "message": "Bakhtaur Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_ADMIN_SUN31", + "message": "Bhai Mool Chand Sahib Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_ADMIN_SUN35", + "message": "Bigharwal Chowk to Railway Station", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_ADMIN_SUN40", + "message": "Chandar Colony Biggarwal Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_ADMIN_SUN41", + "message": "Charjan Wala Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_ADMIN_SUN45", + "message": "Cinema Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_ADMIN_SUN46", + "message": "Cinema Road to Ali Bazaar (Nothern Side)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_ADMIN_SUN49", + "message": "College Road (Southern side)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_ADMIN_SUN54", + "message": "Deedar Tailor to Mata Modi Park- West Side", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_ADMIN_SUN55", + "message": "Deep Rice Mill Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_ADMIN_SUN56", + "message": "Dental College", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_ADMIN_SUN62", + "message": "Ekta Colony (Southern Side)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_ADMIN_SUN75", + "message": "Gaushala", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_ADMIN_SUN80", + "message": "Gugga Maadi Road (east side)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_ADMIN_SUN84", + "message": "Gurudwara Niai Sahib Street 1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_REVENUE_SU166", + "message": "Mohalla Majoran - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_REVENUE_SUN02", + "message": "Aggarsain Chowk to Mal Godown - Both Sides - Area3", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_REVENUE_SUN04", + "message": "Ajit Nagar - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_REVENUE_SUN08", + "message": "ATAR SINGH COLONY - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_REVENUE_SUN105", + "message": "Jaura Khoo to Saraffa Bazaar (Southern Side) - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_REVENUE_SUN109", + "message": "Kailash Parbat - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_REVENUE_SUN11", + "message": "Back Side 33 KVA Grid Patiala Road - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_REVENUE_SUN12", + "message": "Back Side 66 KVA Grid Patiala Road - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_REVENUE_SUN13", + "message": "Back Side Civil Courts Colony - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_REVENUE_SUN132", + "message": "Mohalla Akalgarh Gurudwara - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_REVENUE_SUN134", + "message": "Mohalla Bhadra Kali Mandir - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_REVENUE_SUN136", + "message": "Mohalla Bhatta Wala - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_REVENUE_SUN137", + "message": "Mohalla Bhawdeyan Wala - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_REVENUE_SUN138", + "message": "Mohalla Bhojeka (both sides) - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_REVENUE_SUN144", + "message": "Mohalla Kohliyan - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_REVENUE_SUN150", + "message": "Mohalla Rajan Wala (both sides) - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_REVENUE_SUN153", + "message": "Mohalla Singhkiyan (Nothern Side) - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_REVENUE_SUN158", + "message": "Mohalla-Kashayian wala - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_REVENUE_SUN161", + "message": "Mohalla-Singhkiya wala - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_REVENUE_SUN167", + "message": "Mohalla Angaria wala - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_REVENUE_SUN169", + "message": "Mohalla Banda Patti - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_REVENUE_SUN170", + "message": "Mohalla Bhai Ka - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_REVENUE_SUN173", + "message": "Mohalla Ganj Sheeda - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_REVENUE_SUN176", + "message": "Mohalla Kango - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_REVENUE_SUN178", + "message": "Mohalla Singh kia - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_REVENUE_SUN18", + "message": "Back Side Naina Devi Mandir - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_REVENUE_SUN194", + "message": "NEAR GURUDWARA PEHALI PATSHAHI UDAM SINGH ROAD - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_REVENUE_SUN20", + "message": "Backside Brijbala Hospital - Area3", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_REVENUE_SUN23", + "message": "BACKSIDE OLD GRAIN MARKET - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_REVENUE_SUN25", + "message": "Bakhtaur Nagar - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_REVENUE_SUN31", + "message": "Bhai Mool Chand Sahib Colony - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_REVENUE_SUN35", + "message": "Bigharwal Chowk to Railway Station - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_REVENUE_SUN40", + "message": "Chandar Colony Biggarwal Road - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_REVENUE_SUN41", + "message": "Charjan Wala Mohalla - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_REVENUE_SUN45", + "message": "Cinema Road - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_REVENUE_SUN46", + "message": "Cinema Road to Ali Bazaar (Nothern Side) - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_REVENUE_SUN49", + "message": "College Road (Southern side) - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_REVENUE_SUN54", + "message": "Deedar Tailor to Mata Modi Park- West Side - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_REVENUE_SUN55", + "message": "Deep Rice Mill Road - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_REVENUE_SUN56", + "message": "Dental College - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_REVENUE_SUN62", + "message": "Ekta Colony (Southern Side) - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_REVENUE_SUN75", + "message": "Gaushala", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_REVENUE_SUN80", + "message": "Gugga Maadi Road (east side) - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYD_REVENUE_SUN84", + "message": "Gurudwara Niai Sahib Street 1 - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_ADMIN_SU166", + "message": "Mohalla Majoran", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_ADMIN_SUN02", + "message": "Aggarsain Chowk to Mal Godown - Both Sides", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_ADMIN_SUN04", + "message": "Ajit Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_ADMIN_SUN08", + "message": "ATAR SINGH COLONY", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_ADMIN_SUN105", + "message": "Jaura Khoo to Saraffa Bazaar (Southern Side)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_ADMIN_SUN109", + "message": "Kailash Parbat", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_ADMIN_SUN11", + "message": "Back Side 33 KVA Grid Patiala Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_ADMIN_SUN12", + "message": "Back Side 66 KVA Grid Patiala Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_ADMIN_SUN13", + "message": "Back Side Civil Courts Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_ADMIN_SUN132", + "message": "Mohalla Akalgarh Gurudwara", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_ADMIN_SUN134", + "message": "Mohalla Bhadra Kali Mandir", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_ADMIN_SUN136", + "message": "Mohalla Bhatta Wala", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_ADMIN_SUN137", + "message": "Mohalla Bhawdeyan Wala", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_ADMIN_SUN138", + "message": "Mohalla Bhojeka (both sides)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_ADMIN_SUN144", + "message": "Mohalla Kohliyan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_ADMIN_SUN150", + "message": "Mohalla Rajan Wala (both sides)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_ADMIN_SUN153", + "message": "Mohalla Singhkiyan (Nothern Side)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_ADMIN_SUN158", + "message": "Mohalla-Kashayian wala", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_ADMIN_SUN161", + "message": "Mohalla-Singhkiya wala", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_ADMIN_SUN167", + "message": "Mohalla Angaria wala", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_ADMIN_SUN169", + "message": "Mohalla Banda Patti", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_ADMIN_SUN170", + "message": "Mohalla Bhai Ka", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_ADMIN_SUN173", + "message": "Mohalla Ganj Sheeda", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_ADMIN_SUN176", + "message": "Mohalla Kango", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_ADMIN_SUN178", + "message": "Mohalla Singh kia", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_ADMIN_SUN18", + "message": "Back Side Naina Devi Mandir", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_ADMIN_SUN194", + "message": "NEAR GURUDWARA PEHALI PATSHAHI UDAM SINGH ROAD", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_ADMIN_SUN20", + "message": "Backside Brijbala Hospital", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_ADMIN_SUN23", + "message": "BACKSIDE OLD GRAIN MARKET", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_ADMIN_SUN25", + "message": "Bakhtaur Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_ADMIN_SUN31", + "message": "Bhai Mool Chand Sahib Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_ADMIN_SUN35", + "message": "Bigharwal Chowk to Railway Station", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_ADMIN_SUN40", + "message": "Chandar Colony Biggarwal Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_ADMIN_SUN41", + "message": "Charjan Wala Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_ADMIN_SUN45", + "message": "Cinema Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_ADMIN_SUN46", + "message": "Cinema Road to Ali Bazaar (Nothern Side)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_ADMIN_SUN49", + "message": "College Road (Southern side)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_ADMIN_SUN54", + "message": "Deedar Tailor to Mata Modi Park- West Side", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_ADMIN_SUN55", + "message": "Deep Rice Mill Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_ADMIN_SUN56", + "message": "Dental College", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_ADMIN_SUN62", + "message": "Ekta Colony (Southern Side)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_ADMIN_SUN75", + "message": "Gaushala", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_ADMIN_SUN80", + "message": "Gugga Maadi Road (east side)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_ADMIN_SUN84", + "message": "Gurudwara Niai Sahib Street 1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_REVENUE_SU166", + "message": "Mohalla Majoran - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_REVENUE_SUN02", + "message": "Aggarsain Chowk to Mal Godown - Both Sides - Area3", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_REVENUE_SUN04", + "message": "Ajit Nagar - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_REVENUE_SUN08", + "message": "ATAR SINGH COLONY - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_REVENUE_SUN105", + "message": "Jaura Khoo to Saraffa Bazaar (Southern Side) - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_REVENUE_SUN109", + "message": "Kailash Parbat - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_REVENUE_SUN11", + "message": "Back Side 33 KVA Grid Patiala Road - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_REVENUE_SUN12", + "message": "Back Side 66 KVA Grid Patiala Road - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_REVENUE_SUN13", + "message": "Back Side Civil Courts Colony - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_REVENUE_SUN132", + "message": "Mohalla Akalgarh Gurudwara - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_REVENUE_SUN134", + "message": "Mohalla Bhadra Kali Mandir - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_REVENUE_SUN136", + "message": "Mohalla Bhatta Wala - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_REVENUE_SUN137", + "message": "Mohalla Bhawdeyan Wala - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_REVENUE_SUN138", + "message": "Mohalla Bhojeka (both sides) - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_REVENUE_SUN144", + "message": "Mohalla Kohliyan - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_REVENUE_SUN150", + "message": "Mohalla Rajan Wala (both sides) - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_REVENUE_SUN153", + "message": "Mohalla Singhkiyan (Nothern Side) - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_REVENUE_SUN158", + "message": "Mohalla-Kashayian wala - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_REVENUE_SUN161", + "message": "Mohalla-Singhkiya wala - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_REVENUE_SUN167", + "message": "Mohalla Angaria wala - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_REVENUE_SUN169", + "message": "Mohalla Banda Patti - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_REVENUE_SUN170", + "message": "Mohalla Bhai Ka - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_REVENUE_SUN173", + "message": "Mohalla Ganj Sheeda - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_REVENUE_SUN176", + "message": "Mohalla Kango - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_REVENUE_SUN178", + "message": "Mohalla Singh kia - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_REVENUE_SUN18", + "message": "Back Side Naina Devi Mandir - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_REVENUE_SUN194", + "message": "NEAR GURUDWARA PEHALI PATSHAHI UDAM SINGH ROAD - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_REVENUE_SUN20", + "message": "Backside Brijbala Hospital - Area3", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_REVENUE_SUN23", + "message": "BACKSIDE OLD GRAIN MARKET - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_REVENUE_SUN25", + "message": "Bakhtaur Nagar - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_REVENUE_SUN31", + "message": "Bhai Mool Chand Sahib Colony - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_REVENUE_SUN35", + "message": "Bigharwal Chowk to Railway Station - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_REVENUE_SUN40", + "message": "Chandar Colony Biggarwal Road - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_REVENUE_SUN41", + "message": "Charjan Wala Mohalla - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_REVENUE_SUN45", + "message": "Cinema Road - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_REVENUE_SUN46", + "message": "Cinema Road to Ali Bazaar (Nothern Side) - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_REVENUE_SUN49", + "message": "College Road (Southern side) - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_REVENUE_SUN54", + "message": "Deedar Tailor to Mata Modi Park- West Side - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_REVENUE_SUN55", + "message": "Deep Rice Mill Road - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_REVENUE_SUN56", + "message": "Dental College - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_REVENUE_SUN62", + "message": "Ekta Colony (Southern Side) - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_REVENUE_SUN75", + "message": "Gaushala", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_REVENUE_SUN80", + "message": "Gugga Maadi Road (east side) - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_CITYE_REVENUE_SUN84", + "message": "Gurudwara Niai Sahib Street 1 - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_DHENKANAL_REVENUE_VIL1", + "message": "Kathagada, Shyamacharanpur, Ananda nagar,Borapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_DHENKANAL_REVENUE_VIL10", + "message": "Dakhinakali Road, Khamar sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_DHENKANAL_REVENUE_VIL11", + "message": "Laxmi Bazar, Malhar sahi, Pattanaik sahi, Tahasil Office, Ganesh Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_DHENKANAL_REVENUE_VIL12", + "message": "Jawahar Chowk, Gandhi Mandir Road, Muslim Basti, Meena Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_DHENKANAL_REVENUE_VIL13", + "message": "Meena Bazar, Muslim Basti, Kumbhar sahi, Kanchan Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_DHENKANAL_REVENUE_VIL14", + "message": "Ananda Bazar, Dhobasahi, Bajichowk,Housing Board", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_DHENKANAL_REVENUE_VIL15", + "message": "Muktadeipur Sasan, Pattanaik sahi, Meena Bazar, Kanchan Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_DHENKANAL_REVENUE_VIL16", + "message": "Town Planning, Tanti sahi, Barma Petrol Pump", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_DHENKANAL_REVENUE_VIL17", + "message": "Jaigopal sahi, Ragadi sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_DHENKANAL_REVENUE_VIL18", + "message": "Rameswarpur, Bhagabanpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_DHENKANAL_REVENUE_VIL19", + "message": "Similia", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_DHENKANAL_REVENUE_VIL2", + "message": "Kunjakanta B,DKL Auto. College,income tax office,revenue colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_DHENKANAL_REVENUE_VIL20", + "message": "Ragadi sahi, Jaigopalsahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_DHENKANAL_REVENUE_VIL21", + "message": "Station Bazar,Hata Road, Dolamandap sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_DHENKANAL_REVENUE_VIL22", + "message": "Station Bazar, Ratan bazar, Mandapasahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_DHENKANAL_REVENUE_VIL23", + "message": "Korian", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_DHENKANAL_REVENUE_VIL3", + "message": "Kunjakanta A, Chandiasahi, Sahara sahi, Pana sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_DHENKANAL_REVENUE_VIL4", + "message": "Gudianali, Bhagirathi Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_DHENKANAL_REVENUE_VIL5", + "message": "Amalapada, B.B. high school, D.I Office", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_DHENKANAL_REVENUE_VIL6", + "message": "Durga Bazar, Kaibalya Bazar, Balaram Temple", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_DHENKANAL_REVENUE_VIL7", + "message": "Deulasahi, Ramadas Chhaka", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_DHENKANAL_REVENUE_VIL8", + "message": "Mahisapat", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_DHENKANAL_REVENUE_VIL9", + "message": "Banamali Prasad, Kantanali, Putunia Saharsahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_DHENKANAL_VIL10_SL027", + "message": "Baunsa Patana", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_DHENKANAL_VIL10_SL028", + "message": "Bila Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_DHENKANAL_VIL10_SL029", + "message": "Sarjanga Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_DHENKANAL_VIL10_SL030", + "message": "Colony Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_DHENKANAL_VIL18_SL031", + "message": "Rameswarpur Mochi Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_DHENKANAL_VIL18_SL032", + "message": "Bhagabanpur Sabar Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_DHENKANAL_VIL18_SL033", + "message": "Bhagabanpur Juanga Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_DHENKANAL_VIL19_SL034", + "message": "Similia Masani Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_DHENKANAL_VIL19_SL035", + "message": "Similia Sabar Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_DHENKANAL_VIL1_SL001", + "message": "Kathagada juanga sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_DHENKANAL_VIL1_SL002", + "message": "Kathagada Parbatia Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_DHENKANAL_VIL1_SL003", + "message": "Kathagada Nua Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_DHENKANAL_VIL1_SL004", + "message": "Shyamacharanpur Sabar Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_DHENKANAL_VIL1_SL005", + "message": "Shyamacharanpur Harijan Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_DHENKANAL_VIL1_SL006", + "message": "Shyamacharanpur (Sai Ganesh Lane)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_DHENKANAL_VIL21_SL036", + "message": "Alasua Sabar Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_DHENKANAL_VIL21_SL037", + "message": "Dhankunia Harijan Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_DHENKANAL_VIL21_SL038", + "message": "Sanjaya Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_DHENKANAL_VIL22_SL039", + "message": "Hata Road Harijan Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_DHENKANAL_VIL22_SL040", + "message": "Hata Road Dama Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_DHENKANAL_VIL23_SL041", + "message": "Korian Puruna Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_DHENKANAL_VIL23_SL042", + "message": "Korian Sabar Sahi & Harijan Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_DHENKANAL_VIL23_SL043", + "message": "Korian Juanga Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_DHENKANAL_VIL2_SL007", + "message": "Refuge Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_DHENKANAL_VIL3_SL008", + "message": "Chandia sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_DHENKANAL_VIL5_SL009", + "message": "Chandamari Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_DHENKANAL_VIL6_SL010", + "message": "Kalara Gada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_DHENKANAL_VIL6_SL011", + "message": "Stadium Back side, Durga Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_DHENKANAL_VIL6_SL012", + "message": "Mali Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_DHENKANAL_VIL7_SL013", + "message": "Danda Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_DHENKANAL_VIL7_SL014", + "message": "Murdangia Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_DHENKANAL_VIL8_SL015", + "message": "Mahisapat Dalei Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_DHENKANAL_VIL8_SL016", + "message": "Bankuala Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_DHENKANAL_VIL8_SL017", + "message": "Gajamara Juanga Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_DHENKANAL_VIL8_SL018", + "message": "Rengali Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_DHENKANAL_VIL8_SL019", + "message": "Mahisapat Harijan Sahi-2 & Mahisapat Khaira Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_DHENKANAL_VIL9_SL020", + "message": "Kantanali Kandha Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_DHENKANAL_VIL9_SL021", + "message": "Banamali Prasad Juanga Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_DHENKANAL_VIL9_SL022", + "message": "Fatha Bandha Harijana Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_DHENKANAL_VIL9_SL023", + "message": "Kuntunia Juanga Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_DHENKANAL_VIL9_SL024", + "message": "Fatha Bandha Juanga Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_DHENKANAL_VIL9_SL025", + "message": "Balaram Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_DHENKANAL_VIL9_SL026", + "message": "Kuntunia Nua Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_DIRADAWA_ADMIN_DRD01", + "message": "Bahar Dar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_DIRADAWA_ADMIN_DRD02", + "message": "Gonder", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PG_PG.CITYA", + "message": "City A", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PHONE_VALIDATION", + "message": "Enter valid phone", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PHOTOGRAPH", + "message": "Photograph", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PHOTOGRAPH_VALID_SIZE", + "message": "Only png, jpg and jpeg files are allowed. Max File size allowed is 5 MB", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PINCODE_IS_REQUIRED", + "message": "Pincode is required", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PLEASE_FILL_MANDATORY_DETAILS", + "message": "Please fill mandatory details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PLUMBER", + "message": "Plumber", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PQM_MATERIAL_ARSENIC ", + "message": "Arsenic", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PQM_MATERIAL_FECAL_SLUDGE", + "message": "Fecal Sludge", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PQM_MATERIAL_POTABLE_WATER", + "message": "Potable Water", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PQM_PLANT_CTA001", + "message": "CTA-001", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PQM_PLANT_DEFAULT_ALL", + "message": "All Plants", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PQM_QUALITYCRITERIA_ARSENIC_EQ_70", + "message": "Arsenic", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PQM_STAGE_COAGULATION", + "message": "Coagulation", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PQM_STAGE_SCREENING", + "message": "Screening", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PQM_STAGE_SOLID_TREATMENT_VAR", + "message": "Solid treatment", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PQM_TESTSTANDARD_ARSENIC_EQ_70", + "message": "Arsenic MGPL (=70)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PQM_TESTSTANDARD_ARSENIC_LSTOREQ_70", + "message": "Arsenic MGPL (<=70)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PRIVACY_AUDIT_REPORT", + "message": "Privacy Audit Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROFILE_UPDATED", + "message": "Profile updated successfully", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROJECTS_DESCRIPTION", + "message": "Project Description", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROJECT_BANNER", + "message": "Only jpg, pdf, doc, docx, xls, xlsx files can be uploaded. File size should not exceed 5 MB.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROJECT_ESTIMATED_COST", + "message": "Estimated Cost", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROJECT_GEO_LOCATION", + "message": "Geolocation", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROJECT_LOR", + "message": "File Reference Number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROJECT_PATTERN_ERR_MSG_PROJECT_ESTIMATED_COST", + "message": "Please enter a valid Estimated Cost", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROJECT_PATTERN_ERR_MSG_PROJECT_LOR", + "message": "Please enter a valid Letter of Reference", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROJECT_PROJECT_DESC", + "message": "Project Description", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROJECT_TARGET_DEMOGRAPHY", + "message": "Target Demography", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTIES_REGISTERED_IN_LAST_12_MONTHS", + "message": "properties registered in last 12 months", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_ACRESTAURANT", + "message": "AC Restaurant", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_ANIMALCARE", + "message": "Stray Animal Care Center", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_BUILTUP", + "message": "Built Up", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_CENTRALGOVERNMENT", + "message": "Central Government", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_COLLEGES", + "message": "College", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_COMMERCIAL", + "message": "Commercial", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_COMMUNITYHALL", + "message": "Community Hall", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_CREMATION/BURIAL", + "message": "Cremation/ Burial Ground", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_CREMATION_BURIAL", + "message": "Cremation Burial", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_DISABLEDHOME", + "message": "Home for the disabled / destitute", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_EDUCATIONAL", + "message": "Educational", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_EDUCATIONALGOVAIDED", + "message": "Educational(govt. aided)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_ENTERTAINMENT", + "message": "Entertainment", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_ESTABLISHMENTSINMALLS", + "message": "Establishments (In Malls)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_ESTABLISHMENTSINMULTIPLEX", + "message": "Establishments (In Multiplex)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_EVENTSPACE", + "message": "Event Space", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_FOODJOINTS", + "message": "Food Joints", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_GOLFCLUB", + "message": "Golf Club", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_GOVAIDEDEDUCATIONAL", + "message": "Govt. Aided Educational Institute", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_GOVTHOSPITAL", + "message": "Govt. Hospital & Dispensary", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_GROCERY", + "message": "Grocery Store", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_HISTORICAL", + "message": "Historical Building", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_HOMESFORSPECIALCARE", + "message": "Others(care giving facilities)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_HOTELS", + "message": "Hotels", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_INDEPENDENTPROPERTY", + "message": "Independent Building", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_INDIVIDUAL", + "message": "Individual(s)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_INDUSTRIAL", + "message": "Industrial", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_INSTITUTIONAL", + "message": "Institutional", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_INSTITUTIONALGOVERNMENT", + "message": "Institutional - Government", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_INSTITUTIONALPRIVATE", + "message": "Institutional - Private", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_LIBRARIES", + "message": "Public Libraries", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_MALLS", + "message": "Malls", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_MANUFACTURINGFACILITY", + "message": "Manufacturing Facility", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_MARRIAGEPALACE", + "message": "Marriage Palace", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_MEDICALFACILITY", + "message": "Medical Facility", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_MIXED", + "message": "Mixed", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_MOVIETHEATRE", + "message": "Movie Theatre", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_MULTIPLEOWNERS", + "message": "Multiple Owners", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_MULTIPLEX", + "message": "Multiplex", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_NGO", + "message": "NGO", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_NONACRESTAURANT", + "message": "Non AC Restaurant", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL", + "message": "Non Residential", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.COMMERCIAL", + "message": "Commercial", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.COMMERCIAL.ENTERTAINMENT.MOVIETHEATRE", + "message": "Movie Theatre", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.COMMERCIAL.ENTERTAINMENT.MULTIPLEX", + "message": "Multiplex", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.COMMERCIAL.EVENTSPACE.MARRIAGEPALACE", + "message": "Marriage Palace", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.COMMERCIAL.FOODJOINTS", + "message": "Food Joints", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.COMMERCIAL.FOODJOINTS.ACRESTAURANT", + "message": "AC Restaurant", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.COMMERCIAL.FOODJOINTS.NONACRESTAURANT", + "message": "Non AC Restaurant", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.COMMERCIAL.HOTELS", + "message": "Hotels", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.COMMERCIAL.MEDICALFACILITY.PVTDISPENSARY", + "message": "Private Dispensary", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.COMMERCIAL.MEDICALFACILITY.PVTHOSPITAL", + "message": "Private Hospital", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.COMMERCIAL.OFFICESPACE", + "message": "Office Space", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.COMMERCIAL.OTHERCOMMERCIALSUBMINOR.OTHERCOMMERCIAL", + "message": "Other Commercial Usage", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.COMMERCIAL.RETAIL", + "message": "Retail", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.COMMERCIAL.RETAIL.ESTABLISHMENTINMALLS", + "message": "Establishment Malls", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.COMMERCIAL.RETAIL.GROCERY", + "message": "Grocery Store", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.COMMERCIAL.RETAIL.MALLS", + "message": "Malls", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.COMMERCIAL.RETAIL.PHARMACY", + "message": "Pharmcy", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.COMMERCIAL.RETAIL.SHOWROOM", + "message": "Showroom", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.COMMERCIAL.STATUTORY.STATUTORYORGANISATION", + "message": "Statutory Organisation", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.INDUSTRIAL", + "message": "Industrial", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.INDUSTRIAL.MANUFACTURINGFACILITY", + "message": "Manufacturing Facility", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.INDUSTRIAL.OTHERCOMMERCIALSUBMINOR", + "message": "Other Commercial Usage", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.INDUSTRIAL.OTHERINDUSTRIALSUBMINOR.OTHERINDUSTRIAL", + "message": "Industrial Other Commercial Usage", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.INDUSTRIAL.WAREHOUSE", + "message": "Warehouse", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.INSTITUTIONAL", + "message": "Institutional", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.INSTITUTIONAL.EDUCATIONAL", + "message": "Educational", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.INSTITUTIONAL.EDUCATIONAL.COLLEGES", + "message": "Colleges", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.INSTITUTIONAL.EDUCATIONAL.OTHEREDUCATIONAL", + "message": "Other Private Educational Institute", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.INSTITUTIONAL.EDUCATIONAL.POLYTECHNICS", + "message": "Polytechnic", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.INSTITUTIONAL.EDUCATIONAL.SCHOOL", + "message": "School", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.INSTITUTIONAL.EDUCATIONAL.TRAININGINSTITUTES", + "message": "Training Institute", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.INSTITUTIONAL.HISTORICAL.HISTORICAL", + "message": "Historical Building", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.INSTITUTIONAL.HOMESFORSPECIALCARE.ANIMALCARE", + "message": "Stray Animal Care Center", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.INSTITUTIONAL.HOMESFORSPECIALCARE.DISABLEDHOME", + "message": "Home for the disabled / destitute", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.INSTITUTIONAL.HOMESFORSPECIALCARE.OLDAGEHOMES", + "message": "Old Age Homes", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.INSTITUTIONAL.HOMESFORSPECIALCARE.ORPHANAGE", + "message": "Orphanage", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.INSTITUTIONAL.OTHERINSTITUTIONALSUBMINOR", + "message": "Other Instituation", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.INSTITUTIONAL.PUBLICFACILITY.COMMUNITYHALL", + "message": "Community Hall", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.INSTITUTIONAL.PUBLICFACILITY.GOVTHOSPITAL", + "message": "Govt. Hospital & Dispensary", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.INSTITUTIONAL.PUBLICFACILITY.LIBRARIES", + "message": "Public Libraries", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.INSTITUTIONAL.RECREATIONAL.GOLFCLUB", + "message": "Golf Club", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.INSTITUTIONAL.RECREATIONAL.SOCIALCLUB", + "message": "Social Club", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.INSTITUTIONAL.RECREATIONAL.SPORTSSTADIUM", + "message": "Sports Stadium", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.INSTITUTIONAL.RELIGIOUSINSTITUITION.RELIGIOUS", + "message": "Religious", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.INSTITUTIONAL.RELIGIOUSINSTITUTION", + "message": "Religious Institution", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.OTHERS.PUBLICSPACES.CREMATION/BURIAL", + "message": "Cremation/ Burial Ground", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_OFFICESPACE", + "message": "Office Space", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_OLDAGEHOMES", + "message": "Old Age Homes", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_ORPHANAGE", + "message": "Orphanage", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_OTHER", + "message": "Others", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_OTHERCOMMERCIAL", + "message": "Other Commercial Usage", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_OTHERCOMMERCIALSUBMINOR", + "message": "Other Commercial Usage", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_OTHEREDUCATIONAL", + "message": "Other Private Educational Institute", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_OTHERGOVERNMENTINSTITUITION", + "message": "Others - Government Instituition", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_OTHERINDUSTRIAL", + "message": "Other Industrial Usage", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_OTHERINDUSTRIALSUBMINOR", + "message": "Other Industrial Usage", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_OTHERINSTITUTIONAL", + "message": "Others", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_OTHERINSTITUTIONALSUBMINOR", + "message": "Other Institutional Usage", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_OTHERS", + "message": "Others", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_OTHERSPRIVATEINSTITUITION", + "message": "Others - Private Instituition", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_PHARMACY", + "message": "Pharmacy", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_POLYTECHNICS", + "message": "Polytechnic", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_PRIVATEBOARD", + "message": "Private Board", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_PRIVATECOMPANY", + "message": "Private Company", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_PRIVATETRUST", + "message": "Private Trust/Society", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_PUBLICFACILITY", + "message": "Public Facility", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_PUBLICSPACES", + "message": "Public Spaces", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_PVTDISPENSARY", + "message": "Private Dispensary", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_PVTHOSPITAL", + "message": "Private Hospital", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_RECREATIONAL", + "message": "Recreational Space", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_RELIGIOUS", + "message": "Religious", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_RELIGIOUSINSTITUTION", + "message": "Religious Instituition", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_RESIDENTIAL", + "message": "Residential", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_RETAIL", + "message": "Retail", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_SCHOOL", + "message": "School", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_SHAREDPROPERTY", + "message": "Flat/Part of the building", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_SHOWROOM", + "message": "Shop/Showroom", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_SINGLEOWNER", + "message": "Single Owner", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_SOCIALCLUB", + "message": "Social Club", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_SPORTSSTADIUM", + "message": "Sports Stadium", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_STATEGOVERNMENT", + "message": "State Government", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_STATUTORY", + "message": "Statutory", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_STATUTORYORGANISATION", + "message": "Statutory Organisation", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_TRAININGINSTITUTES", + "message": "Training Institute", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_ULBGOVERNMENT", + "message": "ULB Government", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_VACANT", + "message": "Vacant Land", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_BILLING_SLAB_WAREHOUSE", + "message": "Godown / Warehouse", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_OWNERTYPE_BPL", + "message": "BPL", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_OWNERTYPE_DEFENSE", + "message": "Defense Personnel", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_OWNERTYPE_FREEDOMFIGHTER", + "message": "Freedom Fighter", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_OWNERTYPE_GENERAL", + "message": "General ID", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_OWNERTYPE_HANDICAPPED", + "message": "Handicapped/ Disabled", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_OWNERTYPE_NONE", + "message": "Not Applicable", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_OWNERTYPE_WIDOW", + "message": "Widow", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTY_ADDRESS", + "message": "Property Address", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTY_BIFURCATON", + "message": "Property Bifurcation", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTY_BIFURCATON_VIDEO_DESC", + "message": "Property Bifurcation Video description", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTY_DETAILS_HEADER", + "message": "Property Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTY_ID", + "message": "Property ID", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTY_ID:", + "message": "Property ID", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PROPERTY_TAX", + "message": "Property Tax", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT", + "message": "Property Tax", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT.LEGACY_ENTRY", + "message": "Legacy Entry", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PTALTNO_HEADER", + "message": "Update Alternate Mobile No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PTALT_CONTINUE", + "message": "CONTINUE", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PTCOLLECTIONREPORT", + "message": "Collection Register", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PTM_COMMON_TABLE_COL_PT_ID", + "message": "Property Tax Unique Id", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PTM_OLD_LABEL_NAME", + "message": "Old Value", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PTRECEIPTREGISTER", + "message": "Receipt Register", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PTUPNO_CURR_NO", + "message": "Current Mobile No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PTUPNO_HEADER", + "message": "Update Mobile No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PTUPNO_INVALIDNO_DESC", + "message": "Mobile number available with owner(s) detail is incorrect. Please update the correct mobile number to receive future notifications ", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PTUPNO_INVALIDNO_HEADER", + "message": "Invalid Mobile No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PTUPNO_INVALIDNO_SKIP", + "message": "SKIP & CONTINUE", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PTUPNO_INVALIDNO_UPDATE", + "message": "UPDATE MOBILE NO", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PTUPNO_NEW_NO", + "message": "New Mobile No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PTUPNO_OWNER_NAME", + "message": "Owner Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PTUPNO_SENDOTP", + "message": "SEND OTP", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PTUPNO_VERUPD_NO", + "message": "VERIFY & UPDATE", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PTUPNO_VER_NO", + "message": "Update Number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_ACKNOWLEDGEMENT", + "message": "PT Acknowledgement Form", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_ACKNOWLEDGEMENT_ID", + "message": "Application No:", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_ACK_LOCALIZATION_ASSESSMENT_INFORMATION", + "message": "ASSESSMENT INFORMATION", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_ACK_LOCALIZATION_ASSESSMENT_NO", + "message": "Assessment No:", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_ACK_LOCALIZATION_ASSESSMENT_YEAR", + "message": "Assessment Year:", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_ACK_LOCALIZATION_AUTHORISED_PERSON", + "message": "Authorised Person", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_ACK_LOCALIZATION_BUILDING_COLONY_NAME", + "message": "Building/Colony Name.:", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_ACK_LOCALIZATION_BUILTAREA_TOTAL_RENT", + "message": "Built Area/Total Annual Rent(sq yards)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_ACK_LOCALIZATION_BUILT_AREA_DETAILS", + "message": "BUILT-UP AREA DETAILS", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_ACK_LOCALIZATION_COMMISSIONER_EO", + "message": "Commissioner/EO", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_ACK_LOCALIZATION_CONTACT_US", + "message": "Contact Us:", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_ACK_LOCALIZATION_DATE", + "message": "Date:", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_ACK_LOCALIZATION_EXISTING_PROPERTY_ID", + "message": "Existing Property ID:", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_ACK_LOCALIZATION_FATHERS_NAME", + "message": "Father's Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_ACK_LOCALIZATION_FLOOR", + "message": "Floor", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_ACK_LOCALIZATION_HOUSE_DOOR_NO", + "message": "House/Door No.:", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_ACK_LOCALIZATION_HUSBAND_NAME", + "message": "Husband's Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_ACK_LOCALIZATION_INSTITUTION_NAME", + "message": "Institution Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_ACK_LOCALIZATION_LOCALITY_MOHALLA", + "message": "Locality:", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_ACK_LOCALIZATION_NAME", + "message": "Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_ACK_LOCALIZATION_OCCUPANCY", + "message": "Occupancy", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_ACK_LOCALIZATION_OWNER", + "message": "Owner", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_ACK_LOCALIZATION_OWNERSHIP_INFORMATION", + "message": "OWNERSHIP INFORMATION", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_ACK_LOCALIZATION_PLOTSIZE_SQ_YARDS", + "message": "Plot Size(sq yards)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_ACK_LOCALIZATION_PROPERTY_ADDRESS", + "message": "PROPERTY ADDRESS", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_ACK_LOCALIZATION_PROPERTY_TAX_UNIQUE_ID", + "message": "Unique Property ID:", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_ACK_LOCALIZATION_PROPERTY_TYPE", + "message": "Property Type:", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_ACK_LOCALIZATION_STREET_NAME", + "message": "Street Name:", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_ACK_LOCALIZATION_SUB_USAGE_TYPE", + "message": "Sub Usage Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_ACK_LOCALIZATION_USAGE_TYPE", + "message": "Usage Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_ACK_LOCALIZATION_WEBSITE", + "message": "Website:", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_ACK_PROPERTY_TAX_ASSESS_ACKNOWLEDGEMENT", + "message": "Property Tax Assess Acknowledgement", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_ACTIVE", + "message": "Active", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_ADD_PROPERTY_TO_APP", + "message": "Add Property to Application", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_ALT_CARRY_DOCS", + "message": "Please carry the below documents:", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_ALT_CONTACT_ULB", + "message": "Contact your municipality/ municipal corporation office to get it corrected", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_ALT_DIDNT_RECEIVE_OTP", + "message": "Did not receive OTP, wrong mobile number?", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_APPLICATION_NO", + "message": "Application No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_ASSEMBLY_DET", + "message": "Property Assembly Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_ASSESMENT_INFO_USAGE_TYPE", + "message": "Usage Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_BUILDING_COLONY_NAME", + "message": "Building/Colony Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_BUILT_UP_AREA", + "message": "Built-up area (sq ft)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_BUILT_UP_AREA_HEADER", + "message": "Built-up Area (In Sq.Ft.)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_CANCER_CESS", + "message": "Cancer Cess", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_CHANGE_PROPERTY", + "message": "Change Property", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_COMMONS_SELECT_PLACEHOLDER", + "message": "Select", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_COMMON_ADD_APPLICANT_LABEL", + "message": "Add Owner", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_COMMON_ADD_REBATE_PENALTY", + "message": "Add Rebate and Penalty", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_COMMON_BUTTON_NXT_STEP", + "message": "NEXT STEP", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_COMMON_BUTTON_PREV_STEP", + "message": "PREVIOUS STEP", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_COMMON_CLICK_HERE_TO_SEARCH_THE_PROPERTY", + "message": "Click here to Search Property", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_COMMON_COL_ADDRESS", + "message": "Address", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_COMMON_COL_EXISTING_PROP_ID", + "message": "Existing Property ID", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_COMMON_COL_REMARK", + "message": "Remarks", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_COMMON_DOCS", + "message": "Documents", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_COMMON_GENDER_FEMALE", + "message": "Female", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_COMMON_GENDER_MALE", + "message": "Male", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_COMMON_GENDER_TRANSGENDER", + "message": "Transgender", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_COMMON_PAYEE_NAME", + "message": "Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_COMMON_REGISTER_NEW_PROPERTY", + "message": "Create a New Property", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_COMMON_SAME_AS_PROPERTY_ADDRESS", + "message": "Same as Property Address", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_COMMON_TABLE_COL_ACTION_LABEL", + "message": "Action", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_COMMON_TABLE_COL_APP_NO", + "message": "Application No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_COMMON_TABLE_COL_APP_TYPE", + "message": "Application Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_COMMON_TABLE_COL_OWNER_NAME", + "message": "Owner Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_COMMON_TABLE_COL_PT_ID", + "message": "Unique Property Id", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_COMMON_TABLE_COL_STATUS_LABEL", + "message": "Status", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_COMMON_TABLE_COL_UNIQ_PT_ID", + "message": "Unique Property Id", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_COMPLETE_PAYMENT", + "message": "Complete Payment", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_CORRESPONDANCE_ADDRESS", + "message": "Correspondence Address", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_CREATE_PROPERTY", + "message": "Create Property", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_DATE_HINT_TEXT", + "message": "dd/mm/yy", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_DECIMAL_CEILING_CREDIT", + "message": "Round off", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_DETAILS", + "message": "Property Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_DO_YOU_KNOW_YOUR_PROPERTY", + "message": "Do you know your property", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_DUES_ARE_PENDING", + "message": "Amount Due", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_ENTER_VALID_PROPERTY_ID", + "message": "Enter Valid Property ID", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_FAQ_ANS_ONE", + "message": "A building or a open plot under the usage of residential or non-residential purposes are considered as property. ", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_FAQ_ANS_THREE", + "message": "We should pay the property tax timely to enable the ULB to keep the city neat and clean, perform maintenance work and other functions.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_FAQ_ANS_TWO", + "message": "ULBs perform certain obligatory functions in its boundary limit and need money to carry out those functions hence the body levy the tax on buildings and open plots.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_FAQ_QUES_ONE", + "message": "What is a property?", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_FAQ_QUES_THREE", + "message": "Why we as property owners should pay it?", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_FAQ_QUES_TWO", + "message": "Why ULBs levy property taxes?", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_FAQ_S", + "message": "FAQs", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_FEEDBACK_SUBMITTED_SUCCESSFULLY", + "message": "Your rating has been recorded successfully!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_FINAL_DECLARATION_MESSAGE", + "message": "I hereby declare and affirm that the above-furnished information is true and correct and nothing has been concealed therefrom. I am also aware of the fact that in case this information is found false/incorrect, the authorities are at liberty to initiate recovery of amount/interest/penalty/fine as provided in Punjab Municipal Act 1911 or Punjab Municipal Corporation Act 1976.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_FIRE_CESS", + "message": "Fire Cess", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_FLOOR_AREA_INFO_MSG", + "message": "1 Sq. Yd. = 9 Sq. ft.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_FORM3_ALT_MOBILE_NO_PLACEHOLDER", + "message": "Enter Alternate Mobile Number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_FORM3_FATHER", + "message": "Father", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_FORM3_FEMALE", + "message": "Female", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_FORM3_GENDER", + "message": "Gender", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_FORM3_GUARDIAN_NAME", + "message": "Guardian ", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_FORM3_HUSBAND", + "message": "Husband", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_FORM3_MALE", + "message": "Male", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_FORM3_MOBILE_NO_PLACEHOLDER", + "message": "Enter Mobile No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_FORM3_MOBILE_NUMBER", + "message": "Mobile Number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_FORM3_OWNERSHIP_TYPE", + "message": "Type of Ownership", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_FORM3_OWNERSHIP_TYPE_PLACEHOLDER", + "message": "Select Ownership Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_FORM3_RELATIONSHIP", + "message": "Relationship", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_FORM4_TOTAL", + "message": "Total", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_GUARDIAN_NAME", + "message": "Guardian Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_HISTORY_RECEIPT_NO", + "message": "Receipt No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_HOME_MYPROPERTIES", + "message": "My Properties", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_HOME_PROPERTY_RESULTS_TABLE_HEADING", + "message": "Search Results for Properties", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_HOME_SEARCH_RESULTS_BUTTON_SEARCH", + "message": "Search", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_HOUSE_DOOR_NO", + "message": "House/Door No.*", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_HOUSE_DOOR_NO_ERROR_MESSAGE", + "message": "Invalid Door Number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_HOUSE_DOOR_NUMBER_ERROR_MESSAGE", + "message": "Invalid Door Number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_HOW_IT_WORK", + "message": "How it works?", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_HOW_IT_WORKS", + "message": "How it works", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_INVALID_MOBILE_NO", + "message": "Invalid Mobile Number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_KNOW_PTID", + "message": "I know my Property ID", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_KNOW_PT_DETAIL", + "message": "I want to search using property details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_KNOW_PT_ID", + "message": "I know my property ID", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_LANDMARK_NAME", + "message": "Landmark", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_LOCATION_DETAILS", + "message": "Property Location Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_MUTATION_FATHER", + "message": "C/O", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_MUTATION_HUSBAND", + "message": "W/O", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_MUTATION_STATUS", + "message": "Status", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_MUT_BILL_EXPIRED", + "message": "Bill Expired", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_MUT_BILL_PAID", + "message": "PAID", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_MY_APPLICATION", + "message": "My Applications", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_MY_PAYMENTS", + "message": "My Payments", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_MY_PAYMENTS_HEADER", + "message": "My Payments", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_MY_PROPERTIES", + "message": "My Properties", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_MY_PROPERTY", + "message": "My Properties", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_NAME_ERROR_MESSAGE", + "message": "Enter valid name (max length 64)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_NO_APPLICATION_FOUND_MSG", + "message": "No Application Found", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_OK", + "message": "OK", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_OWNERSHIP_DETAILS", + "message": "Property Ownership Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_OWNERSHIP_INDIVIDUAL.MULTIPLEOWNERS", + "message": "Multiple Owners", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_OWNERSHIP_INDIVIDUAL.SINGLEOWNER", + "message": "Single Owner", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_OWNERS_NAME", + "message": "Owner's Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_OWNER_EXEMPTION", + "message": "Special Category Exemption", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_OWNER_MOB_NO_LABEL", + "message": "Owner's mobile number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_OWNER_NAME", + "message": "Owner Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_OWNER_REGISTRATIONPROOF.COURTDECREE", + "message": "Court Decree", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_OWNER_REGISTRATIONPROOF.FAMILYSETTLEMENT", + "message": "Family Settlement", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_OWNER_REGISTRATIONPROOF.SUCCESSIONORDEATHCERTIFICATE", + "message": "Succession or Death Certificate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_OWNER_USAGEPROOF.ELECTRICITYBILL", + "message": "Electricity Bill", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_PAYMENT_METHOD_CARD", + "message": "Credit /Debit Card", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_PDF_SUBHEADER", + "message": "Property Tax Assessment Confirmation", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_PMT_RCPT_NO", + "message": "Receipt No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_PROPERTY_ADDRESS_HOUSE_NO", + "message": "Door/House No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_PROPERTY_ADDRESS_STREET_NAME", + "message": "Street Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_PROPERTY_DETAILS", + "message": "Property Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_PROPERTY_ID", + "message": "Unique Property ID", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_PROPERTY_MUTATION", + "message": "Transfer Property Ownership/Mutation", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_PROPERTY_PAYMENT_CITIZEN_NOTIFICATION", + "message": "A Notification regarding the payment has been sent to the applicant's mobile number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_PROPERTY_TYPE_INFO_MSG", + "message": "Select independent building if you're assessing for the complete constructed area on the property.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_PROP_CITY", + "message": "City*", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_PROP_LOCALITY", + "message": "Locality:*", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_PROP_TYPE", + "message": "Property Type*", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_PROVIDE_ONE_MORE_PARAM", + "message": "Provide atleast one search parameter", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_RATE_CARD_TEXT_CREATE", + "message": "Rate your experience with us for your recent transaction to create property with application reference {{acknowldgementNumber}} for the property ID {{propertyId}}.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_RATE_CARD_TEXT_MUTATE", + "message": "Rate your experience with us for your recent transaction on mutation for property ID {{propertyId}} and application reference {{acknowldgementNumber}}.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_RATE_CARD_TEXT_PAY", + "message": "Rate your experience with us for your recent transaction to pay property tax for consumer number {{propertyId}}.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_RATE_CARD_TEXT_UPDATE", + "message": "Rate your experience with us for your recent transaction on update for property ID {{propertyId}} and application reference {{acknowldgementNumber}}.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_RATE_HELP_TEXT", + "message": "Help Us Help You", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_RATE_HELP_TEXT_CREATE", + "message": "Help Us Help You", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_RATE_HELP_TEXT_MUTATE", + "message": "Help Us Help You", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_RATE_HELP_TEXT_PAY", + "message": "Help Us Help You", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_RATE_HELP_TEXT_UPDATE", + "message": "Help Us Help You", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_RATE_TEXT", + "message": "Rate your experience with us for your recent transaction.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_RECEIPT_BILLING_PERIOD", + "message": "Billing Period", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_RECEIPT_COMMISSIONER_EO", + "message": "Commissioner/EO", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_RECEIPT_COMPUTER_GENERATED_MESSAGE", + "message": "This is Computer generated receipt, Signature is not required", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_RECEIPT_CONSUMER_ID", + "message": "Consumer ID", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_RECEIPT_DISCLAMER", + "message": "Disclaimer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_RECEIPT_G8_RECEIPT_DATE", + "message": "G8 Receipt Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_RECEIPT_G8_RECEIPT_NO", + "message": "G8 Receipt No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_RECEIPT_GENERATED_BY", + "message": "Generated by", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_RECEIPT_PAID_AMOUNT", + "message": "Paid Amount", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_RECEIPT_PAYER_CONTACT", + "message": "Payer Contact", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_RECEIPT_PAYER_NAME", + "message": "Payer Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_RECEIPT_PAYMENT_DATE", + "message": "Payment Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_RECEIPT_PAYMENT_MODE", + "message": "Payment Mode", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_RECEIPT_PENDING_AMOUNT", + "message": "Pending Amount", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_RECEIPT_RECEIPT_NO", + "message": "Receipt No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_RECEIPT_SERVICE_TYPE", + "message": "Service Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_RECEIPT_TRANSACTION_ID", + "message": "Transaction ID", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_RELATION_FATHER", + "message": "Father", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_RELATION_HUSBAND", + "message": "Husband", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_RENTAL_AREA_INFO_MSG", + "message": "Annual rent = 12 * Monthly rent. In case property was not rented for sometime in the assessment year then please contact your ULB to assess your property.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_ROUNDOFF", + "message": "Round Off", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_SEARCH", + "message": "Search", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_SEARCH_AND_PAY", + "message": "Search and Pay", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_SEARCH_BUTTON", + "message": "SEARCH", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_SEARCH_BY_SEARCHDETAIL", + "message": "By Property Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_SEARCH_BY_SEARCHID", + "message": "By Property ID", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_SEARCH_DOOR_NO", + "message": "I want to search using Door Number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_SEARCH_PROPERTY", + "message": "Search Property", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_SEARCH_SELECT_AT_LEAST_ONE_FIELD_WITH_CITY_AND_LOCALITY", + "message": "Select at least one field with city and locality", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_SEC_LINK_NO_BTN", + "message": "UPDATE ALTERNATE MOBILE NO.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_SEC_LINK_NO_TEXT", + "message": "Update your Alternate Mobile Number. This number will be used to notify you about property tax dues and important dates.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_SELECT_CITY", + "message": "City", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_SENDBACK_TOCITIZEN_CHECKLIST_MESSAGE_HEAD", + "message": " Application is sent back to initiator successfully", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_SKIP_N_CONTINUE", + "message": "Skip & Continue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_SPECIAL_APPLICANT_CATEGORY", + "message": "Special Applicant Category*", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_SUBMIT", + "message": "Submit", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_SUB_USAGE_TYPE_INFO_MSG", + "message": "Sub-Usage of the property is dependent on the usage type selected in the previous screen. Choose 'other' if your usage is not listed.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_TAX", + "message": "Property Tax", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_TIME_INTEREST", + "message": "Interest", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_TIME_PENALTY", + "message": "Penalty", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_TIME_REBATE", + "message": "Rebate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_TOTALDUES_PAY", + "message": "PAY", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_TOTALDUES_TOOLTIP", + "message": "Amount displayed here might be different than the actual pending amount", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_TOTALDUES_VIEW", + "message": "VIEW", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_TOTAL_DUES", + "message": "Total Dues", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_TOT_CONSTRUCTION_AREA", + "message": "Total Construction Area*", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_TOT_CONSTRUCTION_AREA_ERROR_MESSAGE", + "message": "Wrong construction area / construction area cannot be greater than floor area", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_TOT_LAND_AREA", + "message": "Total Land Area*", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_TRANSFER_DOC_CAPTION ", + "message": "Document Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_TRANSFER_DOC_HEADER ", + "message": "Required Documents", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_UNIT_USAGE_EXEMPTION", + "message": "Usage Exemption", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_UPDATE_MOBILE_NO", + "message": "Update Mobile No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_UPDATE_NEWNO", + "message": "Update New Mobile No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PT_VIEW_MORE_DETAILS", + "message": "View More Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PUBLICHEALTH", + "message": "Public Health", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "PURCHASE_BILL_FILE_COMPONENT_BANNER", + "message": "Only pdf files can be uploaded. File size should not exceed 5 MB.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "Phagwara", + "message": "Phagwara", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "Public Message Notice", + "message": "EVENTS_PUBLIC_MESSAGE_NOTICE_HEADER", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "RC_CANCEL", + "message": "Cancel", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "RC_CANCELLED", + "message": "Cancelled", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "RC_DEPOSITED", + "message": "Deposited", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "RC_NA", + "message": "NA", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "RC_NEW", + "message": "New", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "RE-SUBMITTED", + "message": "Re-Submitted", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "RECEIPT", + "message": "Payment Receipt", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "RECEIPT_KEY", + "message": "Receipt Key", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "RECEIPT_NO_HEADER", + "message": "Receipt No : ", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "RECEIPT_WORKFLOW_ACTION_NOT_APPLICABLE", + "message": "Can only cancel / dishonour latest receipt for a consumer code. Dishonour of receipt possible only after deposited!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REFERENCE_NO", + "message": "Application No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REGISTERED_WITH_DEPT", + "message": "Registered by department", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REGISTER_INDIVIDUAL", + "message": "Register Individual", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REGISTER_WAGE_SEEKER", + "message": "Register Wage Seeker", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REJECTED", + "message": "Rejected", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "RELATIONSHIP_IS_REQUIRED", + "message": "Relationship is required", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REMISSION_FOR_PROPERTY_TAX", + "message": "Remission For Property Tax", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REMITTED", + "message": "Remitted", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REPORTS_FSM_PARAM_APPLICATIONSTATUS", + "message": "Application Status", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REPORTS_FSM_PARAM_APPLICATIONSTATUS_PLACE", + "message": "Enter Application Status", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REPORTS_FSM_PARAM_COLLECTIONOPERATOR", + "message": "Collection operator", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REPORTS_FSM_PARAM_DSONAME", + "message": "DSO Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REPORTS_FSM_PARAM_DSO_NAME", + "message": "DSO Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REPORTS_FSM_PARAM_FROMDATE", + "message": "From Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REPORTS_FSM_PARAM_FSTPNAME", + "message": "FSTP Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REPORTS_FSM_PARAM_INSTRUMENTTYPE", + "message": "Instrument type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REPORTS_FSM_PARAM_LOCALITY", + "message": "Locality", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REPORTS_FSM_PARAM_STATUS", + "message": "Status", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REPORTS_FSM_PARAM_TENANT", + "message": "ULB Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REPORTS_FSM_PARAM_TODATE", + "message": "To Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REPORTS_FSM_PARAM_ULB", + "message": "ULB", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REPORTS_FSM_PARAM_VEHICLECAPACITY", + "message": "Vehicle Capacity", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REPORTS_FSM_PARAM_VEHICLECAPACITY_PLACE", + "message": "Enter Vehicle Capacity", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REPORTS_FSM_PARAM_VEHICLENUMBER", + "message": "Vehicle number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REPORTS_FSM_PARAM_VEHICLENUMBER_PLACE", + "message": "Enter Vehicle Number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REPORTS_OBPS_PARAM_COLLECTIONOPERATOR", + "message": "Collection Operator", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REPORTS_OBPS_PARAM_FROMDATE", + "message": "Application created from date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REPORTS_OBPS_PARAM_INSTRUMENTSTATUS", + "message": "Status", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REPORTS_OBPS_PARAM_INSTRUMENTTYPE", + "message": "Instrument Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REPORTS_OBPS_PARAM_TODATE", + "message": "Application created to date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REPORTS_OBPS_PARAM_ULB", + "message": "Ulb", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REPORTS_SEARCHFORM_MODIFY_DATE_HEADER", + "message": "Modify report by date range", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REPORTS_SEARCH_APPLY_LABEL", + "message": "Search", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REPORTS_SEARCH_RESET_LABEL", + "message": "Reset", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REPORT_FSM_RESULT_AMOUNT", + "message": "Amount (Rs)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REPORT_FSM_RESULT_AMOUNT_PAID", + "message": "Amount Collected (Rs)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REPORT_FSM_RESULT_APPLICANTNAME", + "message": "Applicant name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REPORT_FSM_RESULT_APPLICATIONDATE", + "message": "Application Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REPORT_FSM_RESULT_APPLICATIONNO", + "message": "FSM application number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REPORT_FSM_RESULT_APPLICATION_NO", + "message": "Application Number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REPORT_FSM_RESULT_ASSIGNED_TO_DSO_ON", + "message": "Assigned To DSO On", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REPORT_FSM_RESULT_BANKNAME", + "message": "Bank Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REPORT_FSM_RESULT_CARDDIGIT", + "message": "Last 4 digits of card", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REPORT_FSM_RESULT_CHEQUEDATE", + "message": "Cheque/DD date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REPORT_FSM_RESULT_CHEQUENO", + "message": "Cheque/DD No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REPORT_FSM_RESULT_CURRENT_STATUS", + "message": "Current Status", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REPORT_FSM_RESULT_DATE_OF_COMPLETION", + "message": "Completed On", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REPORT_FSM_RESULT_DSONAME", + "message": "DSO Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REPORT_FSM_RESULT_DSO_NAME", + "message": "DSO Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REPORT_FSM_RESULT_LOCALITY", + "message": "Locality", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REPORT_FSM_RESULT_PAYMENTMODE", + "message": "Instrument type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REPORT_FSM_RESULT_PROPERTYSUBTYPE", + "message": "Property Sub Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REPORT_FSM_RESULT_RECEIPTDATE", + "message": "Receipt date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REPORT_FSM_RESULT_RECEIPTNUMBER", + "message": "Receipt number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REPORT_FSM_RESULT_SEPTAGEDUMPED", + "message": "Volume of Septage dumped (Cu.m)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REPORT_FSM_RESULT_SLA_COMPLIANCE", + "message": "SLA Compliance", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REPORT_FSM_RESULT_STATUS", + "message": "Status", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REPORT_FSM_RESULT_TRANSACTIONID", + "message": "Transaction ID", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REPORT_FSM_RESULT_VEHICLEENTRYDATE", + "message": "Vehicle Entry Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REPORT_FSM_RESULT_VEHICLEENTRYTIME", + "message": "Vehicle Entry time", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REPORT_FSM_RESULT_VEHICLEEXITTIME", + "message": "Vehicle Exit time", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REPORT_FSM_RESULT_VEHICLELOGNO", + "message": "Vehicle log number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REPORT_FSM_RESULT_VEHICLENO", + "message": "Vehicle Number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REQUIRED_FIELD", + "message": "Required Field", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REQUIRED_TEXT", + "message": "Required", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "RESEND_OTP_IN_SEC", + "message": "Request another OTP in {timer} seconds", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REVENUE_LOCALITY_STATEA_01_01_SUN01", + "message": "Ajit Nagar - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REVENUE_LOCALITY_STATEA_01_02_SUN02", + "message": "Back Side 33 KVA Grid Patiala Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REVENUE_LOCALITY_STATEA_01_03_SUN03", + "message": "Bharath Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REVENUE_LOCALITY_STATEA_02_01_SUN10", + "message": "Backside Brijbala Hospital - Area3", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REVENUE_LOCALITY_STATEA_02_02_SUN11", + "message": "Bigharwal Chowk to Railway Station - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REVENUE_LOCALITY_STATEA_02_03_SUN12", + "message": "Chandar Colony Biggarwal Road - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REVENUE_LOCALITY_STATEA_03_01_SUN20", + "message": "Aggarsain Chowk to Mal Godown - Both Sides - Area3", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REVENUE_LOCALITY_STATEA_03_02_SUN21", + "message": "ATAR SINGH COLONY - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REVENUE_LOCALITY_STATEA_03_03_SUN22", + "message": "Back Side Naina Devi Mandir - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REVENUE_LOCALITY_STATEA_04_01_SUN30", + "message": "Bakhtaur Nagar - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REVENUE_LOCALITY_STATEA_04_02_SUN31", + "message": "Bhai Mool Chand Sahib Colony - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REVENUE_LOCALITY_STATEA_04_03_SUN32", + "message": "College Road (Southern side) - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "REVENUE_LOCALITY_STATEA_04_04_SUN33", + "message": "Ekta Colony (Southern Side) - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "RE_ENTER_ACCOUNT_NUMBER", + "message": "The account number entered is not matching", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "RE_SUBMITTED", + "message": "Re-Submitted", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ROWS_PER_PAGE", + "message": "Rows per page", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "RT_ALL", + "message": "All", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "RT_DOWNLOAD_AS", + "message": "Download As", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "RT_DOWNLOAD_PDF", + "message": "Download PDF", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "RT_DOWNLOAD_XLS", + "message": "Download XLS", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "RT_SELECT_PLACEHOLDER", + "message": "Select", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "RT_SNO", + "message": "SNO.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "RT_TOTAL", + "message": "Total", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SANGI_MULIA", + "message": "Sangi mulia", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SAVE_AS_DRAFT", + "message": "Save as Draft", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SCAVENGER", + "message": "Scavanger", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SCORE_NO", + "message": "No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SCORE_YES", + "message": "Yes", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SEARCH_ADDRESS_MAP_PLACEHOLDER", + "message": "Search Address", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SEARCH_PROPERTY", + "message": "Search Property", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SEMISKILLED_ELECTRICIAN", + "message": "Semi-skilled Electrician", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SEMISKILLED_WELDER", + "message": "Semi-skilled Welder", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SEMI_SKILLED", + "message": "Semi-skilled", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SEMI_SKILLED.CLEANER", + "message": "Semi-Skilled - Cleaner", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SEMI_SKILLED.FEMALE_MULIA", + "message": "Semi-skilled Female Mulia", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SEMI_SKILLED.HAMMER_MAN", + "message": "Semi-skilled - Hammer Man", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SEMI_SKILLED.MALE_MULIA", + "message": "Semi-skilled - Male Mulia", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SEMI_SKILLED.SANGI_MULIA", + "message": "Semi-Skilled - Sangi Mulia", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SEMI_SKILLED.SCAVENGER", + "message": "Semi-skilled scavenger", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SEMI_SKILLED_CLEANER", + "message": "Semi-Skilled Cleaner", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SEMI_SKILLED_FEMALE_MULIA", + "message": "Semi-Skilled - Female Mulia", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SEMI_SKILLED_HAMMER_MAN", + "message": "Semi-Skilled Hammer Man", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SEMI_SKILLED_MALE_MULIA", + "message": "Semi-Skilled - Male Mulia", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SEMI_SKILLED_SANGI_MULIA", + "message": "Semi-Skilled - Sangi Mulia", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SEMI_SKILLED_SCAVENGER", + "message": "Semi-Skilled - Scavanger", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SEND_FOR_APPROVAL", + "message": "Submit for Approval", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SEND_TO_CITIZEN_MSG", + "message": "Dear {1} , Your Application for {2} (Service type) is created with application number {3}. You can login to the portal and navigate to the my applications page to review the application.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SENTBACK", + "message": "Sent Back", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SENTBACKTOCBO", + "message": "Sent back for correction", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SERVICE CATEGORY LIST", + "message": "Service Category", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SERVICEDETAILS", + "message": "Service Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SERVICE_CATEGORIES_OF_CHALLANS_PROCESSED_IN", + "message": "service categories of challans are processed in", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SERVICE_TYPE", + "message": "Service Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SEWERAGE", + "message": "Sewerage", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SEWERAGE_APPLICATIONTYPE_DISCONNECT_SEWERAGE_CONNECTION", + "message": "sewerage", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SEWERAGE_APPLICATIONTYPE_DISCONNECT_WATER_CONNECTION", + "message": "water", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SEWERAGE_CONNECTION", + "message": "Sewerage Connection", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SEWERAGE_CONNECTION_BILL_GENERATION_MESSAGE", + "message": "Dear {Owner Name},Your{Service} Bill for {Billing Period} has been generated. Please pay the amount due: {bill amount} by due date {Due Date}. Following is the link to your bill: {Link to Bill}", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SHAREDPROPERTY", + "message": "Flat/Part of the building", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SHORT_ANSWER_TYPE", + "message": "Short answer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SHOW_WORKFLOW_TIMELINE", + "message": "Show Workflow Timeline", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SINGLE", + "message": "Single ", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SKILLED_FITTER", + "message": "Skilled Fitter", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SKILLED_MASON", + "message": "Skilled Mason", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SKILLED_MULIA", + "message": "Skilled Mulia", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SKILLED_PAINTER", + "message": "Skilled Painter", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SKILLED_PLUMBER", + "message": "Skilled Plumber", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SKILLS_IS_REQUIRED", + "message": "Skills is required", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SKILLS_SELECTION_INVALID", + "message": "Combination of skills selected is invalid", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SOCIAL_CATEGORY_IS_REQUIRED", + "message": "Social Category is required", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SORT_BY", + "message": "Sort By", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SORT_ICON", + "message": "Sort by SLA", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SPACE_FSM_SMS_CREATED_CREATE", + "message": "Dear Applicant,Your application for cleaning septic tank/pit is created with application reference no.{#var#}.You will be notified to make an application fee shortly.Request is expected to be completed within {#var#} hrs of making the payment.EGOVS", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SS_SURVEY_NOTIFICATION_TEMPLATE", + "message": "A new survey {survey_title} has been launched in mSeva. Click here to participate.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "STATE_LABEL", + "message": "Punjab", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "STATE_pg", + "message": "Odisha", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "STATE_statea", + "message": "State Demo", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "STATUS", + "message": "Status", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SUBMITTED", + "message": "Submitted", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SUB_DSS_BOTTOM_PERFORMING_ULBS", + "message": "Bottom Performing ULBS", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SUB_DSS_TOP_PERFORMING_ULBS", + "message": "Top Performing ULBS", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SUCCESS_IN_GENERATION_RECEIPT", + "message": "Receipt Downloaded Successfully", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SUMMARY_DETAILS", + "message": "Summary details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SUN01_ADMIN_LOCALITY", + "message": "Locality 01", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SUN02_ADMIN_LOCALITY", + "message": "Locality 02", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SUN03_ADMIN_LOCALITY", + "message": "Locality 03", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SURVEY_INFO_HEADER", + "message": "Note", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SURVEY_INFO_LABEL", + "message": "For Active surveys only end date/time and survey description can be edited.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SURVEY_QUESTIONS", + "message": "Questions", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SURVEY_REPORT", + "message": "Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SURVEY_SAME_NAME_SURVEY_ALREADY_PRESENT", + "message": "Survey name already exists", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SURVEY_STATUS_TOOLTIP", + "message": "Active Status represents that survey is actively collecting responses. Inactive status fall pre and post active collection dates", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SW.ONE_TIME_FEE", + "message": "One Time Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SW_ADDITIONAL_AMOUNT", + "message": "Additional Amount", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SW_ADVANCE_CARRYFORWARD", + "message": "Advance CarryForward", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SW_APPLICATION_MODIFY_CONNECTION_HEADER", + "message": "Modify Sewerage Connection", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SW_CHARGE", + "message": "Sewerage Charge", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SW_FEE_ROUND_OFF", + "message": "Fee Round Off", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SW_FORM_FEE", + "message": "Form fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SW_FORM_FEE ", + "message": "Form fee ", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SW_ONE_TIME_FEE", + "message": "One Time Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SW_OTHER_CHARGE", + "message": "Other Charge", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SW_PENALTY", + "message": "Adhoc Penalty", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SW_REBATE", + "message": "Adhoc Rebate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SW_REDUCED_AMOUNT", + "message": "Reduced Amount", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SW_ROAD_CUTTING_CHARGE", + "message": "Road Cutting Charge", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SW_SCRUTINY_FEE", + "message": "Scrutiny Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SW_SCRUTINY_FEE ", + "message": "Scrutiny Fee ", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SW_SECURITY_CHARGE", + "message": "Security Charge", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SW_TAX_AND_CESS", + "message": "Tax and Cess", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SW_TIME_INTEREST", + "message": "Interest", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SW_TIME_PENALTY", + "message": "Penalty", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "SW_WATER_INBOX", + "message": "Sewerage Inbox", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "Select Event Category", + "message": "EVENTS_CATEGORY_PLACEHOLDER", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "Select_Event_Category", + "message": "EVENTS_CATEGORY_PLACEHOLDER", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "Snackk", + "message": "baarrr", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TAXHEADCODE_BPA_SANC_FEES", + "message": "Sanction Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TAX_CURRENT_AMOUNT", + "message": "Current Bill", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_DB_42", + "message": "नवांशहर ४२", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1", + "message": "Ashok Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC10", + "message": "Gurbachan Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC100", + "message": "Dera Preet Nagar Jhuggia", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1000", + "message": "Maqsudan Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1001", + "message": "Nagra Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1002", + "message": "Jawala Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1003", + "message": "New Jawala Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1004", + "message": "Patel Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1005", + "message": "New Patel Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1006", + "message": "Guru Ravidass Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1007", + "message": "Bhupinder Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1008", + "message": "Ashok Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1009", + "message": "Nagra Pind", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC101", + "message": "Miya Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1010", + "message": "New Nagra", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1011", + "message": "Shital Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1012", + "message": "New Shital Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1013", + "message": "Jugian", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1014", + "message": "Sham Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1015", + "message": "Amar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1016", + "message": "Babu Labh Singh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1017", + "message": "Rattan Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1018", + "message": "New Rattan Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1019", + "message": "Shaheed Babu Labh Singh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC102", + "message": "Shalimar Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1020", + "message": "New Shaheed Babu Labh Singh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1021", + "message": "Madhuban Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1022", + "message": "Gujrati Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1023", + "message": "Jagwali Kathi Near Canal", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1024", + "message": "Ragu Nath Mandir Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1025", + "message": "Kacha Kot", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1026", + "message": "Old Green Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1027", + "message": "Green Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1028", + "message": "Raja Garden", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1029", + "message": "Raja Garden Extension", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC103", + "message": "New Dashmesh Nagar Part", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1030", + "message": "V.I.P Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1031", + "message": "Butti Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1032", + "message": "Gagan Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1033", + "message": "Bhai Gurdass Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1034", + "message": "Baba Bachittar Ji Nagar Mithu Basti", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1035", + "message": "Tara Singh Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1036", + "message": "New Rasila Nagar Basti Danishmandan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1037", + "message": "Dilbagh Nagar Ext.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1038", + "message": "Rasila Nagar Phase 2 Danishmandan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1039", + "message": "Rasila Nagar Basti Danishmandan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC104", + "message": "Kaki Pind", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1040", + "message": "Begampura Colony Danishmandan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1041", + "message": "Baba Budha Ji Nagar Mithu Nagar Basti", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1042", + "message": "Ekta Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1043", + "message": "New Shastri Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1044", + "message": "Satnam Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1045", + "message": "Anoop Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1046", + "message": "Bal bro Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1047", + "message": "Badhri Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1048", + "message": "Badhri Colony Phase (2)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1049", + "message": "Ram Shernam Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC105", + "message": "New Joginder Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1050", + "message": "Peer Das Basti", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1051", + "message": "Kamar Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1052", + "message": "Panu Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1053", + "message": "Paras Estate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1054", + "message": "Paras Estate 2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1055", + "message": "Maharaja Garden", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1056", + "message": "Harbanse Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1057", + "message": "5 Peer Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1058", + "message": "Anoop Nagar (2)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1059", + "message": "Sher Singh Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC106", + "message": "Part of Joginder Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1060", + "message": "Roshan Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1061", + "message": "Qilla Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1062", + "message": "Kathera Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1063", + "message": "Gautam Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1064", + "message": "New Gautam Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1065", + "message": "Kabir Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1066", + "message": "Guru Ram Dass Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1067", + "message": "Mata Sant Kaur Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1068", + "message": "City A Prime", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1069", + "message": "City A Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC107", + "message": "New Beant Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1070", + "message": "City A Kunj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1071", + "message": "Rajan Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1072", + "message": "Kailash Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1073", + "message": "Balmik Mohalla Bawa Khel", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1074", + "message": "Akal Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1075", + "message": "Basti Bawa Khel (main)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1076", + "message": "Raj Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1077", + "message": "New Raj Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1078", + "message": "Kabir Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1079", + "message": "Bank Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC108", + "message": "Part of Beant Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1080", + "message": "Basti Bawa Khel", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1081", + "message": "Katehara Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1082", + "message": "New Rattan Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1083", + "message": "Guru Nanak Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1084", + "message": "New Guru Nanak Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1085", + "message": "Shiv Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1086", + "message": "Baba Kahandass Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1087", + "message": "Village Nagara", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1088", + "message": "Abinandan Park", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1089", + "message": "National Park", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC109", + "message": "Gulmarg Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1090", + "message": "Ashok Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1091", + "message": "Vivek Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1092", + "message": "Green Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1093", + "message": "Shanti Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1094", + "message": "Viveka Nand Park", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1095", + "message": "Subash Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1096", + "message": "Golden Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1097", + "message": "Navyug Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1098", + "message": "New Shiv Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1099", + "message": "Maqsudan Byepass", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC11", + "message": "Indra Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC110", + "message": "Mehtab Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1100", + "message": "Mahasha Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1101", + "message": "Anand Ngr", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1102", + "message": "New Anand Ngr", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1103", + "message": "Janta Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1104", + "message": "Navnirman Janta Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1105", + "message": "Issa Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1106", + "message": "Guru Nanak Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1107", + "message": "Aara Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1108", + "message": "Surat Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1109", + "message": "Master Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC111", + "message": "Professor Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1110", + "message": "Angad Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC1111", + "message": "Amandip Avenue.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC112", + "message": "Mohan Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC113", + "message": "Part of Ladhewali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC114", + "message": "Part of New Dashmesh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC115", + "message": "Dhilwan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC116", + "message": "Dhanowali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC117", + "message": "Sanik Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC118", + "message": "Old Dashmesh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC119", + "message": "Ajeet Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC12", + "message": "Sant Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC120", + "message": "Guru Anged Dev Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC121", + "message": "Sunder Nagar Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC122", + "message": "Kohinoor Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC123", + "message": "Sunny Prime", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC124", + "message": "Arman Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC125", + "message": "Johan Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC126", + "message": "Ganesh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC127", + "message": "New Ganesh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC128", + "message": "Masi Mohalla Dakoha", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC129", + "message": "Tarun Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC13", + "message": "Kalia Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC130", + "message": "Kaki Pind", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC131", + "message": "Arman Nagar 2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC132", + "message": "Birring Pind-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC133", + "message": "Birring Pind-2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC134", + "message": "Mohinder Singh Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC135", + "message": "Mehnga Singh Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC136", + "message": "Dada Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC137", + "message": "Peace Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC138", + "message": "Bunga Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC139", + "message": "Golden Colony (Phase 1)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC14", + "message": "Kalia Colony Ph-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC140", + "message": "Golden Colony (Phase 2)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC141", + "message": "Golden Colony (Phase 3)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC142", + "message": "Model Estate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC143", + "message": "Defence Colony (Phase 1)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC144", + "message": "New Defence Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC145", + "message": "Paragpura ( Old Phagwara Road)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC146", + "message": "Paragpura ( Pind )", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC147", + "message": "Paragpura ( Abadi Near Railway fatak )", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC148", + "message": "Ratti Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC149", + "message": "Thakur Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC15", + "message": "Kalia Colony PH-2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC150", + "message": "Ram Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC151", + "message": "Chotte Ram Bagh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC152", + "message": "Panch Sheel Colony ( Half )", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC153", + "message": "Bhullar Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC154", + "message": "Modern State", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC155", + "message": "Yadav Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC156", + "message": "Baba Budha Ji Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC157", + "message": "Bhuda Ji Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC158", + "message": "Shaheed Gurvinder Singh Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC159", + "message": "National Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC16", + "message": "Kalia Colony PH-3", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC160", + "message": "Ravidass Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC161", + "message": "Guru Nanak Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC162", + "message": "Jagjit Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC163", + "message": "Old Kaki Pind", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC164", + "message": "Village Dakoha", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC165", + "message": "Baba Budha Singh Nagar Street No 1 to 9", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC166", + "message": "Ekta Nagar PH-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC167", + "message": "Ekta Nagar PH-2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC168", + "message": "Joginder Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC169", + "message": "Panch Rattan Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC17", + "message": "Kalia Farm", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC170", + "message": "New Defence Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC171", + "message": "Beant Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC172", + "message": "Old Beant Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC173", + "message": "PSEB Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC174", + "message": "BB Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC175", + "message": "Half Rama Mandi Main Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC176", + "message": "Khateek Market Ramamandi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC177", + "message": "Valmik Mohalla Ramamandi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC178", + "message": "Krishna Sweet Wali Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC179", + "message": "Palwon Wali Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC18", + "message": "Guru Amar Dass Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC180", + "message": "Fouji Wali Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC181", + "message": "Bhatra Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC182", + "message": "Aytar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC183", + "message": "Guru Nanak Pura East", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC184", + "message": "Guru Nanak Pura West", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC185", + "message": "Chugitti", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC186", + "message": "Ekta Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC187", + "message": "P.A.P", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC188", + "message": "Railway Colony-3", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC189", + "message": "Rajinder Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC19", + "message": "Guru Amar Dass Nagar 2- Marla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC190", + "message": "Preet Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC191", + "message": "Sehgal Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC192", + "message": "Kirti Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC193", + "message": "Mohalla Ladowali Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC194", + "message": "Mohyal Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC195", + "message": "Link Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC196", + "message": "Hargobind Pura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC197", + "message": "Ranjit Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC198", + "message": "New Rajinder Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC199", + "message": "Police Line", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC2", + "message": "Bank Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC20", + "message": "New Guru Amar Dass Nagar Ext.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC200", + "message": "Guru Nanak Pura (West) Street No. 1 to 8", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC201", + "message": "New Guru Nanak Pura (West)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC202", + "message": "Bhojowal Patti (Chugittee)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC203", + "message": "Bharat Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC204", + "message": "Satnam Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC205", + "message": "Chugittee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC206", + "message": "Ved Ram Parkash Street", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC207", + "message": "Guru Gobind Singh Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC208", + "message": "Sureya Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC209", + "message": "Komal Vihar Old & New", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC21", + "message": "Guru Amar Dass Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC210", + "message": "Bashirpura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC211", + "message": "Thakur Singh Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC212", + "message": "Royal Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC213", + "message": "Jhansi Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC214", + "message": "Gobind Garh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC215", + "message": "Arjun Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC216", + "message": "40 Quarter", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC217", + "message": "Dashmesh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC218", + "message": "New Dashmesh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC219", + "message": "Sant Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC22", + "message": "Venus Valley", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC220", + "message": "Shanti Pura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC221", + "message": "New Baradari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC222", + "message": "Poultry Form Area", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC223", + "message": "Prem Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC224", + "message": "Mandi Fenton Garg", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC225", + "message": "Partap Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC226", + "message": "Rishi Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC227", + "message": "Brahm Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC228", + "message": "Mandi Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC229", + "message": "Railway Colony No. 1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC23", + "message": "Baba Mohan Dass Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC230", + "message": "Guard Colony No-2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC231", + "message": "Old Jawahar Nagar Single Lane", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC232", + "message": "Central Town", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC233", + "message": "Krishan Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC234", + "message": "Old Jawahar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC235", + "message": "Master Tara Singh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC236", + "message": "P & T Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC237", + "message": "Riaz Pura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC238", + "message": "Ramesh Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC239", + "message": "Shiva Ji Park", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC24", + "message": "Salempur Muslmana", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC240", + "message": "Netaji Park", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC241", + "message": "Civil Lines", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC242", + "message": "Mohalla Makhdumpura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC243", + "message": "Mohalla Shastri Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC244", + "message": "Fauji Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC245", + "message": "Shivalik Apartments", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC246", + "message": "Venus Apartments", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC247", + "message": "B-Block Apartments", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC248", + "message": "Paradise Apartments", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC249", + "message": "Gurkirpa Apartments", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC25", + "message": "Swarn Park-1Swarn Prak- 2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC250", + "message": "Ganga Apartments", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC251", + "message": "Nakodar Road Market", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC252", + "message": "Lajpat Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC253", + "message": "Lajpat Nagar Market", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC254", + "message": "Abadpura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC255", + "message": "Balmiki Colony Link Road Abadpura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC256", + "message": "Major Bahadur Singh Nagar & Marg", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC257", + "message": "New Model Town Mall Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC258", + "message": "New Jawahar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC259", + "message": "Guru Nanak Mission Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC26", + "message": "Sanjay Gandhi Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC260", + "message": "Badridass Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC261", + "message": "Purani Baradari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC262", + "message": "Skylark Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC263", + "message": "Civil Lines", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC264", + "message": "Sehdev Market", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC265", + "message": "Namdev Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC266", + "message": "G.T Road Market", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC267", + "message": "Shastri Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC268", + "message": "Sanjay Gandhi Market", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC269", + "message": "New Courts Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC27", + "message": "Gadaipur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC270", + "message": "Police Line Market", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC271", + "message": "BMC Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC272", + "message": "Market Opposite Bus Stand", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC273", + "message": "Link Road Model Town", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC274", + "message": "Valmiki Colony Major Bahadur Singh Marg", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC275", + "message": "Radio Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC276", + "message": "New Jawahar Nagar (Point)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC277", + "message": "Green Park", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC278", + "message": "Mota Singh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC279", + "message": "Modern Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC28", + "message": "Raja Garden", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC280", + "message": "Gurjaipal Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC281", + "message": "Wariam Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC282", + "message": "Gian Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC283", + "message": "New Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC284", + "message": "Defence Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC285", + "message": "Defence Colony Ext.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC286", + "message": "Chotti Baradari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC287", + "message": "Jaswant Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC288", + "message": "Roop Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC289", + "message": "Atwal Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC29", + "message": "Ram Bagh Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC290", + "message": "Atwal House", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC291", + "message": "New Hardyal Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC292", + "message": "Hardyal Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC293", + "message": "Rubi Hospital", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC294", + "message": "BSF Camp", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC295", + "message": "New Green Park", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC296", + "message": "Railway Quarter ( Cool Road)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC297", + "message": "Garha/Shiv Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC298", + "message": "Dayanand chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC299", + "message": "Rattan Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC3", + "message": "Sarabha Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC30", + "message": "Dada Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC300", + "message": "Sark Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC301", + "message": "Valmiki Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC302", + "message": "Ravi dass Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC303", + "message": "Makhan Ramwali Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC304", + "message": "School wali Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC305", + "message": "Jiwan Singh Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC306", + "message": "Tanki Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC307", + "message": "Phagu Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC308", + "message": "Sarpanch wali Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC309", + "message": "Main Bazar Rama Mandir", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC31", + "message": "Industrial Area", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC310", + "message": "Main Bazar Gurudwara Singh Sabha", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC311", + "message": "Garha Vehanda", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC312", + "message": "Phagu Mohalla Ram Mandir wali Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC313", + "message": "Phagwari Mohalla Near Janj Ghar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC314", + "message": "Phagwari Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC315", + "message": "Dr. Mana Wali Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC316", + "message": "Old Div. 7 Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC317", + "message": "Cantt. Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC318", + "message": "Cantt. Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC319", + "message": "New Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC32", + "message": "Focal Point", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC320", + "message": "Jaswant Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC321", + "message": "Jawant Nagar near Gurudwara", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC322", + "message": "Jaswant Nagar Gali No. 1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC323", + "message": "Jaswant Nagar Gali Thekewali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC324", + "message": "Jaswant Nagar Gali no. 100 3 to 5", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC325", + "message": "Jaswant Nagar Gali 2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC326", + "message": "Golden Aveune-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC327", + "message": "Golden Avenue-2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC328", + "message": "Gurjeet Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC329", + "message": "Dashmesh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC33", + "message": "Transport Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC330", + "message": "Chanchal Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC331", + "message": "Chotti Baradari Part-2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC332", + "message": "Idgah Mohalla Garha", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC333", + "message": "Sarak Mohalla Garha", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC334", + "message": "Guru Diwan Nagar Garha", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC335", + "message": "Tara Chand Colony Garha", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC336", + "message": "Chintpurni Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC337", + "message": "Geeta Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC338", + "message": "Garha", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC339", + "message": "Labour Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC34", + "message": "Udyog Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC340", + "message": "Kunowali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC341", + "message": "Urban Estate Ph-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC342", + "message": "M.I.G", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC343", + "message": "Urban Estate Phase Half", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC344", + "message": "Sabowal Old.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC345", + "message": "Isherpuri Colony (Some Part)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC346", + "message": "Urban Estate 2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC347", + "message": "Sabowal", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC348", + "message": "Lahor Nangal", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC349", + "message": "Isherpuri Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC35", + "message": "Parshuram Pur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC350", + "message": "Ranjit Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC351", + "message": "Kalgidhar Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC352", + "message": "New Kalgidhar Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC353", + "message": "Ravinder Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC354", + "message": "Dashmesh Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC355", + "message": "Karol Bagh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC356", + "message": "Vijay Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC357", + "message": "Guru Ram Dass Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC358", + "message": "Baba Makhan Shah Lubana", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC359", + "message": "Friends Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC36", + "message": "Vadda Saipur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC360", + "message": "Officer Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC361", + "message": "D.C Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC362", + "message": "White Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC363", + "message": "Punjabi Bagh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC364", + "message": "Lahor Nagar Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC365", + "message": "Happy Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC366", + "message": "New Isherpuri", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC367", + "message": "Universal Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC368", + "message": "Singh Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC369", + "message": "Engineer Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC37", + "message": "Reru", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC370", + "message": "Green Garden Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC371", + "message": "Ravinder Nagar Extension", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC372", + "message": "Punjabi Bagh Extension", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC373", + "message": "Model Town", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC374", + "message": "Parkash Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC375", + "message": "Guru Nanak Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC376", + "message": "Guru Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC377", + "message": "Rishi Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC378", + "message": "Jyoti Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC379", + "message": "Shankar Garden", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC38", + "message": "Hargobind Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC380", + "message": "Lal Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC381", + "message": "Satkartar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC382", + "message": "Ravinder Nagar Extension", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC383", + "message": "Cheema Nagar Ext.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC384", + "message": "Vasant Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC385", + "message": "Vasant Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC386", + "message": "Vasant Vihar Ext.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC387", + "message": "Urban Estate Ph-2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC388", + "message": "Model Town", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC389", + "message": "New Jawahar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC39", + "message": "Punjabi Bagh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC390", + "message": "Lajpat Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC391", + "message": "Dada Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC392", + "message": "Green Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC393", + "message": "Green Model Town", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC394", + "message": "Kewal Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC395", + "message": "Indra Park", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC396", + "message": "Cheema Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC397", + "message": "Shiv Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC398", + "message": "Gurmeet Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC399", + "message": "Ramneek Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC4", + "message": "Paschim Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC40", + "message": "Bachint Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC400", + "message": "Bank Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC401", + "message": "Bank Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC402", + "message": "Raja Garden", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC403", + "message": "Keshev Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC404", + "message": "Ekta Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC405", + "message": "New Raja Garden", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC406", + "message": "New Raja Garden Extension", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC407", + "message": "Bhai Samund Singh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC408", + "message": "New Arora Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC409", + "message": "Mithapur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC41", + "message": "Parsuram Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC410", + "message": "King Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC411", + "message": "Green Wood Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC412", + "message": "Ram Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC413", + "message": "Sewerage Board Quarter", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC414", + "message": "75 Garden Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC415", + "message": "Panch Sheel Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC416", + "message": "Mayor Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC417", + "message": "New Light Colony Phase -1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC418", + "message": "Bank Enclave Phase-2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC419", + "message": "Residence Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC42", + "message": "Kahanpur Abadi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC420", + "message": "Sudhama Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC421", + "message": "New Sudhama Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC422", + "message": "Rocky Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC423", + "message": "New Light Colony Phase-2 (Sudhama Vihar)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC424", + "message": "VIP Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC425", + "message": "Sadhu Singh Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC426", + "message": "Red Face Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC427", + "message": "New Garden Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC428", + "message": "Bhai Banno Ji Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC429", + "message": "Gill Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC43", + "message": "Ramneek Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC430", + "message": "Parkash Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC431", + "message": "Khurla Kingra", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC432", + "message": "Tower Town Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC433", + "message": "Silver Residency", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC434", + "message": "Tower Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC435", + "message": "Guru Nanak Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC436", + "message": "Boota Mandi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC437", + "message": "Boota Pind (Back Side Dr.B.R. Ambedkar Park", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC438", + "message": "Swami Lal JI Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC439", + "message": "New Green Park", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC44", + "message": "Baba Deep Singh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC440", + "message": "Khurla Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC441", + "message": "Professor Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC442", + "message": "Army Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC443", + "message": "Mann Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC444", + "message": "Chopra Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC445", + "message": "Khurla Kingra (Back Side Sai Mandir)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC446", + "message": "Door Darshan Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC447", + "message": "Bombay Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC448", + "message": "Friends Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC449", + "message": "SAS Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC45", + "message": "Nurpur Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC450", + "message": "SAS Nagar Extension", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC451", + "message": "New Green Model Town", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC452", + "message": "Palam Rajeet Apartments", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC453", + "message": "Bank Enclave Part 1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC454", + "message": "Kuki Dhab", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC455", + "message": "Green Woods Apartments", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC456", + "message": "Park View Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC457", + "message": "Housing Board Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC458", + "message": "Satnam Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC459", + "message": "Mann Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC46", + "message": "Sunder Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC460", + "message": "Punjabi Bagh Wadala Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC461", + "message": "Silver heights", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC462", + "message": "Partap Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC463", + "message": "Guru Gobind Singh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC464", + "message": "Guru Arjan dev Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC465", + "message": "G.T.B Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC466", + "message": "Garden Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC467", + "message": "G.T.B Nagar extension", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC468", + "message": "GTB Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC469", + "message": "F.C.I Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC47", + "message": "Hargobind Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC470", + "message": "Chanakya Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC471", + "message": "New GTB Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC472", + "message": "Vivek Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC473", + "message": "Green Model Town", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC474", + "message": "Boota Pind", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC475", + "message": "Wadala Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC476", + "message": "Main Road Abadpura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC477", + "message": "Gali No. 2 To Gali No. 6", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC478", + "message": "Preet Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC479", + "message": "Rameshwar Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC48", + "message": "Gulmarg Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC480", + "message": "Sh. Guru Ravidass Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC481", + "message": "Tubewell wali Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC482", + "message": "Labour Court Gali Panj Peer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC483", + "message": "Maharishi Valmiki Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC484", + "message": "Taneja New Abadpura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC485", + "message": "Avtar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC486", + "message": "New Avtar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC487", + "message": "New Suraj Ganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC488", + "message": "Pishori Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC489", + "message": "Naqvi Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC49", + "message": "Bachint Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC490", + "message": "Dairy Kalu Ram-O Band Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC491", + "message": "Bhargo Camp-Add", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC492", + "message": "Pishori Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC493", + "message": "Link Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC494", + "message": "Abadpura Gali No.1 to 2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC495", + "message": "New Suraj Ganj –west", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC496", + "message": "Gali No-10-B-11-B", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC497", + "message": "Bhargo Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC498", + "message": "Bhargo Camp", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC499", + "message": "Ravidass Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC5", + "message": "Amrit Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC50", + "message": "Sarabha Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC500", + "message": "Channan Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC501", + "message": "Boota Mandi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC502", + "message": "Silver Oak Apartments", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC503", + "message": "Nakodar Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC504", + "message": "Chappli Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC505", + "message": "Sant Pura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC506", + "message": "Arya Samaj Mandir", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC507", + "message": "Valmiki Mandir", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC508", + "message": "Chapal Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC509", + "message": "Kabir Mandir", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC51", + "message": "Chack Hussiana", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC510", + "message": "Gain Giri Mandir", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC511", + "message": "Nirankari Bhawan Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC512", + "message": "Ravidass Dham", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC513", + "message": "Kanth Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC514", + "message": "State Bank Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC515", + "message": "Ravidass Mandir", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC516", + "message": "Sharif Pura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC517", + "message": "Tokri Chowk Bhargo Camp", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC518", + "message": "Gali Mirasiya Wali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC519", + "message": "Gali Somnath Aara Wala", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC52", + "message": "Lamba Pind", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC520", + "message": "Prem Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC521", + "message": "Gali Ravi Karyana Store", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC522", + "message": "Gali Sharma Model School", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC523", + "message": "Chune Wali Gali Boota Mandi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC524", + "message": "Gali Pawan Koushal", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC525", + "message": "Bhargo Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC526", + "message": "Nive Passe Bhargo Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC527", + "message": "Azad Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC528", + "message": "New Suraj Ganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC529", + "message": "New Suraj Ganj (West)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC53", + "message": "Chandigarh Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC530", + "message": "Model House Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC531", + "message": "Main Bazar Bhargo", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC532", + "message": "Mohalla Amar Saw Mill", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC533", + "message": "Bhargo Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC534", + "message": "Shamshan Ghat Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC535", + "message": "Mohalla Vari Vatt", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC536", + "message": "Bhargo Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC537", + "message": "Tej Mohan Nagar Gali No-5 to Gali No-11", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC538", + "message": "New Ashok Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC539", + "message": "Narayan Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC54", + "message": "Succhi Pind", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC540", + "message": "Ashok Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC541", + "message": "New Sant Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC542", + "message": "Sant Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC543", + "message": "Nijatam Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC544", + "message": "Chouhan Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC545", + "message": "Ganesh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC546", + "message": "Basti Nau", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC547", + "message": "Bank Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC548", + "message": "Chaar Marla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC549", + "message": "Block-A,B,C,D", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC55", + "message": "Hardial Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC550", + "message": "Bhagat Singh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC551", + "message": "Rajput Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC552", + "message": "Taranwali Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC553", + "message": "Mohalla Kot", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC554", + "message": "Uttam Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC555", + "message": "Mohalla Chaiaam", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC556", + "message": "Tej Mohan Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC557", + "message": "Sant Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC558", + "message": "Siddhartha Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC559", + "message": "New Abadi Jallowal", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC56", + "message": "New Hardial Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC560", + "message": "Kay Pee Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC561", + "message": "New Model House", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC562", + "message": "Model Gram Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC563", + "message": "Gahi Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC564", + "message": "Jaina Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC565", + "message": "New Ghai Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC566", + "message": "Chiragpura Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC567", + "message": "New Deol Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC568", + "message": "New Dashmesh Nagar Block-A", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC569", + "message": "New Dashmesh Nagar Block-C", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC57", + "message": "Hardip Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC570", + "message": "Tilak Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC571", + "message": "Kartar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC572", + "message": "New Kartar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC573", + "message": "Udye Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC574", + "message": "Deol Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC575", + "message": "New Deol Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC576", + "message": "Aman Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC577", + "message": "Major Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC578", + "message": "Pink City Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC579", + "message": "Kot Sadiq Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC58", + "message": "Judge Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC580", + "message": "Khara Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC581", + "message": "Kot Sadiq", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC582", + "message": "Mast Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC583", + "message": "Thind Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC584", + "message": "Sai Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC585", + "message": "BT Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC586", + "message": "Kanshi Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC587", + "message": "Green Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC588", + "message": "Geeta Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC589", + "message": "New Geeta Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC59", + "message": "Prem Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC590", + "message": "Ishwar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC591", + "message": "New Dashmesh Nagar B Block", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC592", + "message": "Dordarshan Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC593", + "message": "Tower Enclave Phase 2nd", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC594", + "message": "Hamilton Tower", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC595", + "message": "Guru Ravidass Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC596", + "message": "New Ravidass Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC597", + "message": "Shiva Ji Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC598", + "message": "New Shiva Ji Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC599", + "message": "Lasuri Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC6", + "message": "Chak Jinda", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC60", + "message": "Gulmohar City", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC600", + "message": "New Lasuri Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC601", + "message": "Begampura Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC602", + "message": "Main Adda Basti Danishmandan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC603", + "message": "Main Bazar Basti Danishmandan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC604", + "message": "Valmiki Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC605", + "message": "Chandigarh Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC606", + "message": "New Chandigarh Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC607", + "message": "Chungi Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC608", + "message": "Chungi No-9", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC609", + "message": "Tagri Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC61", + "message": "Three Star Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC610", + "message": "Guru Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC611", + "message": "Surjit Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC612", + "message": "Basti Sheikh + Danishmandan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC613", + "message": "Kattra Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC614", + "message": "Guru Sant Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC615", + "message": "Guru Nanak Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC616", + "message": "Lasuri Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC617", + "message": "Baldev Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC618", + "message": "Satkartar Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC619", + "message": "Ujala Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC62", + "message": "Soma Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC620", + "message": "Mohindra Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC621", + "message": "Valmiki Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC622", + "message": "Vada Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC623", + "message": "Banian Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC624", + "message": "Satran Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC625", + "message": "Mochian Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC626", + "message": "Tarkhana Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC627", + "message": "Telian Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC628", + "message": "Road Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC629", + "message": "Manjit Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC63", + "message": "Mata Salani Mandir", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC630", + "message": "Chet Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC631", + "message": "Janak Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC632", + "message": "Chaian Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC633", + "message": "Kot Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC634", + "message": "Gulabia Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC635", + "message": "Bara Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC636", + "message": "Hargobind Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC637", + "message": "Gurditta Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC638", + "message": "Borah Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC639", + "message": "Sethia Wali Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC64", + "message": "Baba Gadila Sham colony (Succhi Pind)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC640", + "message": "Dhankian Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC641", + "message": "Jairath Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC642", + "message": "Bagh Ahluwalia", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC643", + "message": "Kamaliya Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC644", + "message": "Gobind Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC645", + "message": "New Gobind Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC646", + "message": "Dilbagh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC647", + "message": "120' Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC648", + "message": "Shastri Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC649", + "message": "Old Shastri Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC65", + "message": "Deep Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC650", + "message": "Old Dusshara Ground", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC651", + "message": "Surya Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC652", + "message": "Basti Gujan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC653", + "message": "Ambedkar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC654", + "message": "Shah Kuli Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC655", + "message": "Virdi Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC656", + "message": "Valmiki Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC657", + "message": "Vada Vehra", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC658", + "message": "Sunyara Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC659", + "message": "Jangra Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC66", + "message": "New Upkar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC660", + "message": "Machi Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC661", + "message": "Harkrishan Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC662", + "message": "Manjit Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC663", + "message": "New Dilbagh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC664", + "message": "Dilbagh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC665", + "message": "Lahoria Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC666", + "message": "Kot Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC667", + "message": "Binda Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC668", + "message": "Doriya Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC669", + "message": "Board Wali Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC67", + "message": "Moh Kot Ram Dass ( Abadi )", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC670", + "message": "Main Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC671", + "message": "Shibu Mandir Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC672", + "message": "New Adarsh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC673", + "message": "J.P.Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC674", + "message": "Adarsh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC675", + "message": "J.P. Nagar Extension", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC676", + "message": "Basti Nau", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC677", + "message": "Krishan Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC678", + "message": "Basti Mithu", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC679", + "message": "Patwar Khana", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC68", + "message": "Karol Bagh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC680", + "message": "Conal Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC681", + "message": "Harbans Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC682", + "message": "New Harbans Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC683", + "message": "New Harbans Nagar Ext.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC684", + "message": "Adarsh Nagar up to Satyam Hospital Street", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC685", + "message": "New Vijay Nagar Left Side", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC686", + "message": "Tagore Nagar Right Side St.NO.7", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC687", + "message": "Dyal Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC688", + "message": "Gujral Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC689", + "message": "Shakti Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC69", + "message": "Rail Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC690", + "message": "Vijay Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC691", + "message": "S.U.S Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC692", + "message": "Ajit Singh Nagar up to Nakodar Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC693", + "message": "Niwan Suraj Gunj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC694", + "message": "Islam Gunj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC695", + "message": "Islamabad", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC696", + "message": "Mission Compound Left Side Batra Hospital", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC697", + "message": "Makhdoom Pura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC698", + "message": "Dhobi Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC699", + "message": "Mohalla Pacca Bagh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC7", + "message": "Toor Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC70", + "message": "Patel Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC700", + "message": "Ram Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC701", + "message": "Saidan Gate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC702", + "message": "Chowk Kade Shah", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC703", + "message": "Batakh Wala Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC704", + "message": "Rainak Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC705", + "message": "Naya Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC706", + "message": "Shaheed Udham Singh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC707", + "message": "Flats", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC708", + "message": "Civil Hospital", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC709", + "message": "E.S.I Hospital", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC71", + "message": "Sangam Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC710", + "message": "E.S.I Hospital Flats", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC711", + "message": "Milap Chowk to G.P.O", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC712", + "message": "G.P.O to Shastri Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC713", + "message": "Shastri to Milap Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC714", + "message": "Milap to Sunrise Hotal", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC715", + "message": "Sunrise Hotal to Partap Bagh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC716", + "message": "Partap Bagh to Phagwara Gate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC717", + "message": "Naya Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC718", + "message": "Saiden Gate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC719", + "message": "Peer Bodla Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC72", + "message": "Preet Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC720", + "message": "Khazuria Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC721", + "message": "Guru Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC722", + "message": "Neehya Band Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC723", + "message": "Jybal Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC724", + "message": "Neem Wali Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC725", + "message": "Tanki Wali Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC726", + "message": "Khodiya Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC727", + "message": "Kotpakshiya", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC728", + "message": "Hotel Raj Mahal back Side Gurudawara and Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC729", + "message": "Pakka Bagh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC73", + "message": "Mann Singh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC730", + "message": "Chohal Bagh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC731", + "message": "Hindsamachar Ground", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC732", + "message": "Mina Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC733", + "message": "Tikki Bagh Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC734", + "message": "Ucha Suraj Gunj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC735", + "message": "Jyoti chowk to preet Hotel", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC736", + "message": "Charanjit Pura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC737", + "message": "Ajit Pura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC738", + "message": "Jatt Pura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC739", + "message": "Valmiki Gate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC74", + "message": "Suchi Pind", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC740", + "message": "Malka Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC741", + "message": "Mohindru Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC742", + "message": "Mitha Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC743", + "message": "Telwali Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC744", + "message": "Chota Ali Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC745", + "message": "Alli Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC746", + "message": "Bansa Wala Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC747", + "message": "Chajju Ram Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC748", + "message": "Kotwali Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC749", + "message": "Malora Muhalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC75", + "message": "Indian Oil Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC750", + "message": "Nauhrian Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC751", + "message": "Kot Bahadur Khan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC752", + "message": "Sheikhan Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC753", + "message": "Sudan Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC754", + "message": "Deen Dayal Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC755", + "message": "Prem Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC756", + "message": "New Prem Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC757", + "message": "Sat Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC758", + "message": "Chandan Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC759", + "message": "Fateh Puri", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC76", + "message": "Green County", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC760", + "message": "Vikrampura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC761", + "message": "Subash Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC762", + "message": "Partap Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC763", + "message": "Purani Kachehri", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC764", + "message": "Piplan Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC765", + "message": "Chadhian Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC766", + "message": "Lawan Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC767", + "message": "Charjian Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC768", + "message": "Mitha Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC769", + "message": "Bhairon Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC77", + "message": "Ladhewali Pind", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC770", + "message": "Quilla Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC771", + "message": "Qazi Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC772", + "message": "Khingran Gate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC773", + "message": "Mughlan Dhiki", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC774", + "message": "Prem Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC775", + "message": "Purian Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC776", + "message": "Sehglan Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC777", + "message": "Modian Tod", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC778", + "message": "Thapra Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC779", + "message": "Mai Hiran Gate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC78", + "message": "Chokan Kalan Pind", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC780", + "message": "Phagwara Gate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC781", + "message": "Rasta Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC782", + "message": "Biliya Mandir", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC783", + "message": "Talhi Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC784", + "message": "Baghia Whra", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC785", + "message": "Quda Shah Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC786", + "message": "Phir Bodhla Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC787", + "message": "Kalo Vani Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC788", + "message": "Atari Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC789", + "message": "Nacha Badh Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC79", + "message": "Nagal Shama Pind", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC790", + "message": "Kanchia Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC791", + "message": "Qazi Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC792", + "message": "Qilla Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC793", + "message": "Shivraz Garh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC794", + "message": "Panj Peer Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC795", + "message": "Bhagat Singh Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC796", + "message": "Railway Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC797", + "message": "Rishi Nagar Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC798", + "message": "Partap Bagh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC799", + "message": "Awa Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC8", + "message": "Navjot Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC80", + "message": "Datar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC800", + "message": "Kot Kishan Chand", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC801", + "message": "Jagat Pura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC802", + "message": "Dhan Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC803", + "message": "Rishi Nagar (5 Gali)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC804", + "message": "Kishanpura (5 Gali)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC805", + "message": "Inderparsth Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC806", + "message": "Arya Samaj Mandir", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC807", + "message": "Bheem Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC808", + "message": "Sansi Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC809", + "message": "Dolatpuri", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC81", + "message": "Khehra Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC810", + "message": "Kapoor Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC811", + "message": "Ajit Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC812", + "message": "Amrik Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC813", + "message": "New Ajit Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC814", + "message": "New Amrik Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC815", + "message": "Baba Math Shah", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC816", + "message": "Santoshi Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC817", + "message": "Madrasi Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC818", + "message": "Qazi Mandi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC819", + "message": "Kishan Pura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC82", + "message": "Kabir Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC820", + "message": "Hoshiarpur Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC821", + "message": "Old Hoshiarpur Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC822", + "message": "Baldev Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC823", + "message": "New Baldev Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC824", + "message": "Baba Balak Nath Market", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC825", + "message": "Madrasi Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC826", + "message": "Ravidass School Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC827", + "message": "Dhonka Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC828", + "message": "Prithvi Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC829", + "message": "New Prithvi Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC83", + "message": "Kabir Avenue Extension", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC830", + "message": "Lambapind Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC831", + "message": "Dutta Street", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC832", + "message": "Raman Shiv Mandir Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC833", + "message": "Ajit Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC834", + "message": "Balmiki Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC835", + "message": "Vivek Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC836", + "message": "New Vivek Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC837", + "message": "Arjun Singh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC838", + "message": "Jaimal Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC839", + "message": "Durga Mandir Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC84", + "message": "Punjab Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC840", + "message": "Vinay Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC841", + "message": "Akash Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC842", + "message": "Arjun Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC843", + "message": "Jaimal Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC844", + "message": "Upkar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC845", + "message": "New Upkar Nargar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC846", + "message": "Ghandi Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC847", + "message": "New Ghandi Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC848", + "message": "Chakk Hussaina", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC849", + "message": "Hoshiarpur Road Lamba Pind(Left Side)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC85", + "message": "Punjab Avenue Extension", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC850", + "message": "Muslim Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC851", + "message": "New Vinay Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC852", + "message": "Hans Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC853", + "message": "New Santokhpura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC854", + "message": "Durga Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC855", + "message": "Sarabha Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC856", + "message": "Guru Ram Dass Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC857", + "message": "Niwi Abadi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC858", + "message": "Lakshmipura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC859", + "message": "New Lakshmipura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC86", + "message": "Dhaliwal Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC860", + "message": "Vij Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC861", + "message": "Sant Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC862", + "message": "Bhagatpura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC863", + "message": "Jeet Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC864", + "message": "Vikaspuri", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC865", + "message": "New Vikaspuri", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC866", + "message": "Ambika Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC867", + "message": "B.D.Steel", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC868", + "message": "Santokhpura Nivi Abadi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC869", + "message": "Basti Bhure Kha", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC87", + "message": "Himachal Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC870", + "message": "Shah Sikandar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC871", + "message": "Ram Gharia School", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC872", + "message": "Preet Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC873", + "message": "Basant Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC874", + "message": "New Basant Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC875", + "message": "Aman Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC876", + "message": "New Aman Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC877", + "message": "New colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC878", + "message": "Kamal Park", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC879", + "message": "Preet Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC88", + "message": "Green Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC880", + "message": "New Preet Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC881", + "message": "Sodal Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC882", + "message": "Sidh Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC883", + "message": "Ashok Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC884", + "message": "Ramco Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC885", + "message": "New Sodal Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC886", + "message": "Mathura Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC887", + "message": "Kot Baba Deep Singh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC888", + "message": "Tobari Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC889", + "message": "Tanda Road Hanuman Mandir Chowk to Tanda Road Railway Crossing", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC89", + "message": "Sunshine Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC890", + "message": "Shah Sikandar Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC891", + "message": "Kailash Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC892", + "message": "New Kailash Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC893", + "message": "New Kailash Nagar Ext.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC894", + "message": "Gobind Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC895", + "message": "New Gobind Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC896", + "message": "J.M.C Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC897", + "message": "Gujja Peer Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC898", + "message": "Amar Garden", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC899", + "message": "Saipur Kalan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC9", + "message": "New Guru Amar Das Extension Paschim", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC90", + "message": "Silver Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC900", + "message": "Sanjay Gandhi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC901", + "message": "Dada Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC902", + "message": "Saini Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC903", + "message": "Chotta Saipur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC904", + "message": "Hari Singh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC905", + "message": "Shashi Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC906", + "message": "Lathi Mar Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC907", + "message": "Sodal Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC908", + "message": "Gujja Peer Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC909", + "message": "Sodal Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC91", + "message": "Randhawa Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC910", + "message": "Laxmi Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC911", + "message": "Kali Mata Mandir Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC912", + "message": "Bhagat Singh Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC913", + "message": "Baba Balak Nath Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC914", + "message": "Shiv Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC915", + "message": "Canal Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC916", + "message": "Industrial Area", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC917", + "message": "Dada Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC918", + "message": "Chota Saipur Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC919", + "message": "Shiv Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC92", + "message": "Lahora Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC920", + "message": "Brij Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC921", + "message": "Gajji Gulla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC922", + "message": "Parbhat Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC923", + "message": "Ram Nagar Railway", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC924", + "message": "Crossing to Gajji Gujja Chowk Left Side", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC925", + "message": "Industrial Area Ext.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC926", + "message": "Canal Industrial Complex", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC927", + "message": "Gandhi Camp", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC928", + "message": "Gurdev Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC929", + "message": "Gopal Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC93", + "message": "Nanak Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC930", + "message": "Satnam Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC931", + "message": "Sawan Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC932", + "message": "Valmiki Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC933", + "message": "New Grain Market", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC934", + "message": "Jain Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC935", + "message": "New Gopal Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC936", + "message": "Neela Mahal", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC937", + "message": "Mohalla Krar Khan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC938", + "message": "Sangra Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC939", + "message": "Teacher Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC94", + "message": "Basant Hill", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC940", + "message": "Krishna Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC941", + "message": "Tobri Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC942", + "message": "Guru Nanak Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC943", + "message": "Harnamdasspura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC944", + "message": "Kot Lakhpat Rai", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC945", + "message": "Banda Bahadur Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC946", + "message": "Kapurthala Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC947", + "message": "Bagh Baharia", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC948", + "message": "Gulab Devi Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC949", + "message": "Bulton Park Cricket Stadium", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC95", + "message": "University Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC950", + "message": "Durga Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC951", + "message": "B.S.F Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC952", + "message": "Gopal Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC953", + "message": "New Colony Gopal Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC954", + "message": "Main Road Old Sabzi Mandi to Burton Park", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC955", + "message": "Sangat Singh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC956", + "message": "Balwant Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC957", + "message": "Bandha Bhadur Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC958", + "message": "Sarswati Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC959", + "message": "PNT Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC96", + "message": "Moti Bagh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC960", + "message": "Bagh Bharia", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC961", + "message": "Bhagwan Dass Pura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC962", + "message": "Dhiman Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC963", + "message": "Adresh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC964", + "message": "Natha Bagechi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC965", + "message": "Misson Compound", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC966", + "message": "Talab Bharia", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC967", + "message": "Jail Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC968", + "message": "Kabir Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC969", + "message": "Kachari Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC97", + "message": "Park Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC970", + "message": "Gandhi Camp 3 Lain", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC971", + "message": "Windsor Park", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC972", + "message": "Rose Park", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC973", + "message": "Jain Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC974", + "message": "Gupta Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC975", + "message": "Hardev Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC976", + "message": "Guru Nanak Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC977", + "message": "Guru Arjun Dev Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC978", + "message": "Sarswati Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC979", + "message": "Surjit Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC98", + "message": "Chopra Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC980", + "message": "Malak Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC981", + "message": "Kalyani Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC982", + "message": "Suriya Vihar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC983", + "message": "Vivekananda Park", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC984", + "message": "Ariya Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC985", + "message": "Pingalwara", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC986", + "message": "Gujrati Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC987", + "message": "Shardha Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC988", + "message": "Sawarn Park", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC989", + "message": "Ram Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC99", + "message": "Dr. Ambedkar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC990", + "message": "Chhota Gandhi Nagar Camp", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC991", + "message": "Friends Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC992", + "message": "Seth Hukam Chand Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC993", + "message": "Greater Kailash", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC994", + "message": "Moti Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC995", + "message": "New Moti Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC996", + "message": "Tagore Park/ Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC997", + "message": "Professor Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC998", + "message": "Maqsudan Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_JLC999", + "message": "Bohar Wala Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_SU166", + "message": "Mohalla Majoran ", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_SUN02", + "message": "Aggarsain Chowk to Mal Godown - Both Sides - Area3", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_SUN04", + "message": "Ajit Nagar - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_SUN08", + "message": "ATAR SINGH COLONY - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_SUN105", + "message": "Jaura Khoo to Saraffa Bazaar (Southern Side) - Are...", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_SUN109", + "message": "Kailash Parbat - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_SUN11", + "message": "Back Side 33 KVA Grid Patiala Road - Area 1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_SUN12", + "message": "Back Side 66 KVA Grid Patiala Road - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_SUN13", + "message": "Back Side Civil Courts Colony - Area 1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_SUN132", + "message": "Mohalla Akalgarh Gurudwara - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_SUN134", + "message": "Mohalla Bhadra Kali Mandir - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_SUN136", + "message": "Mohalla Bhatta Wala - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_SUN137", + "message": "Mohalla Bhawdeyan Wala - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_SUN138", + "message": "Mohalla Bhojeka (both sides) - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_SUN144", + "message": "Mohalla Kohliyan - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_SUN150", + "message": "Mohalla Rajan Wala (both sides) - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_SUN153", + "message": "Mohalla Singhkiyan (Nothern Side) - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_SUN158", + "message": "Mohalla-Kashayian wala - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_SUN161", + "message": "Mohalla-Singhkiya wala - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_SUN167", + "message": "Mohalla Angaria wala - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_SUN169", + "message": "Mohalla Banda Patti - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_SUN170", + "message": "Mohalla Bhai Ka - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_SUN173", + "message": "Mohalla Ganj Sheeda - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_SUN176", + "message": "Mohalla Kango - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_SUN178", + "message": "Mohalla Singh kia - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_SUN18", + "message": "Back Side Naina Devi Mandir - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_SUN194", + "message": "Near Gurudwara Pehali Patshahi Udam Singh Road - A...", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_SUN20", + "message": "Backside Brijbala Hospital - Area3", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_SUN23", + "message": "BACKSIDE OLD GRAIN MARKET - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_SUN25", + "message": "Bakhtaur Nagar - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_SUN31", + "message": "Bhai Mool Chand Sahib Colony - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_SUN35", + "message": "Bigharwal Chowk to Railway Station - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_SUN40", + "message": "Chandar Colony Biggarwal Road - Area 2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_SUN41", + "message": "Charjan Wala Mohalla - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_SUN45", + "message": "Cinema Road - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_SUN46", + "message": "Cinema Road to Ali Bazaar (Nothern Side) - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_SUN49", + "message": "College Road (Southern side) - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_SUN54", + "message": "Deedar Tailor to Mata Modi Park- West Side - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_SUN55", + "message": "Deep Rice Mill Road - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_SUN56", + "message": "Dental College - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_SUN62", + "message": "Ekta Colony (Southern Side) - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_SUN75", + "message": "Gaushala, Arora Colony - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_SUN80", + "message": "Gugga Maadi Road (east side) - Area2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANTS_MOHALLA_SUN84", + "message": "Gurudwara Niai Sahib Street 1 - Area1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_ID", + "message": "Tenant Id", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_AMRITSAR", + "message": "Amritsar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_CITYA", + "message": "City A", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_CITYB", + "message": "City B", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_CITYC", + "message": "City C", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_CITYONE", + "message": "City One", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_CITYTHREE", + "message": "City Three", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_CITYTWO", + "message": "City Two", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_CITY_A", + "message": "City A", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC476", + "message": "Main Road Abadpura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC477", + "message": "Gali No. 2 To Gali No. 6 ", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC478", + "message": "Preet Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC479", + "message": "Rameshwar Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC480", + "message": "Sh. Guru Ravidass Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC481", + "message": "Tubewell wali Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC482", + "message": "Labour Court Gali Panj Peer", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC483", + "message": "Maharishi Valmiki Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC484", + "message": "Taneja New Abadpura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC485", + "message": "Avtar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC486", + "message": "New Avtar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC487", + "message": "New Suraj Ganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC488", + "message": "Pishori Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC489", + "message": "Naqvi Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC490", + "message": "Dairy Kalu Ram-O Band Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC491", + "message": "Bhargo Camp-Add", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC492", + "message": "Pishori Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC493", + "message": "Link Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC494", + "message": "Abadpura Gali No.1 to 2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC495", + "message": "New Suraj Ganj –west", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC496", + "message": "Gali No-10-B-11-B", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC497", + "message": "Bhargo Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC498", + "message": "Bhargo Camp", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC499", + "message": "Ravidass Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC500", + "message": "Channan Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC501", + "message": "Boota Mandi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC502", + "message": "Silver Oak Apartments", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC503", + "message": "Nakodar Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC504", + "message": "Chappli Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC505", + "message": "Sant Pura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC506", + "message": "Arya Samaj Mandir", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC507", + "message": "Valmiki Mandir", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC508", + "message": "Chapal Chowk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC509", + "message": "Kabir Mandir", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC510", + "message": "Gain Giri Mandir", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC511", + "message": "Nirankari Bhawan Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC512", + "message": "Ravidass Dham", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC513", + "message": "Kanth Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC514", + "message": "State Bank Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC515", + "message": "Ravidass Mandir", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC516", + "message": "Sharif Pura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC517", + "message": "Tokri Chowk Bhargo Camp", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC518", + "message": "Gali Mirasiya Wali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC519", + "message": "Gali Somnath Aara Wala", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC520", + "message": "Prem Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC521", + "message": "Gali Ravi Karyana Store", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC522", + "message": "Gali Sharma Model School", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC523", + "message": "Chune Wali Gali Boota Mandi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC524", + "message": "Gali Pawan Koushal", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC525", + "message": "Bhargo Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC526", + "message": "Nive Passe Bhargo Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC527", + "message": "Azad Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC528", + "message": "New Suraj Ganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC529", + "message": "New Suraj Ganj (West)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC530", + "message": "Model House Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC531", + "message": "Main Bazar Bhargo", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC532", + "message": "Mohalla Amar Saw Mill", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC533", + "message": "Bhargo Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC534", + "message": "Shamshan Ghat Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC535", + "message": "Mohalla Vari Vatt", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC536", + "message": "Bhargo Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC537", + "message": "Tej Mohan Nagar Gali No-5 to Gali No-11", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC538", + "message": "New Ashok Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC539", + "message": "Narayan Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC540", + "message": "Ashok Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC541", + "message": "New Sant Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC542", + "message": "Sant Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC543", + "message": "Nijatam Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC544", + "message": "Chouhan Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC545", + "message": "Ganesh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC546", + "message": "Basti Nau", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC547", + "message": "Bank Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC548", + "message": "Chaar Marla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC549", + "message": "Block-A,B,C.D", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC550", + "message": "Bhagat Singh Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC551", + "message": "Rajput Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC552", + "message": "Taranwali Gali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC553", + "message": "Mohalla Kot", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC554", + "message": "Uttam Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC555", + "message": "Mohalla Chaiaam", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC556", + "message": "Tej Mohan Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC557", + "message": "Sant Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC558", + "message": "Siddhartha Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC559", + "message": "New Abadi Jallowal", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC560", + "message": "Kay Pee Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC561", + "message": "New Model House", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC562", + "message": "Model Gram Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC563", + "message": "Gahi Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC564", + "message": "Jaina Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC565", + "message": "New Ghai Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC566", + "message": "Chiragpura Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC567", + "message": "New Deol Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC568", + "message": "New Dashmesh Nagar Block-A", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC569", + "message": "New Dashmesh Nagar Block-C", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC570", + "message": "Tilak Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC571", + "message": "Kartar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC572", + "message": "New Kartar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC573", + "message": "Udye Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC574", + "message": "Deol Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC575", + "message": "New Deol Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC576", + "message": "Aman Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC577", + "message": "Major Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC578", + "message": "Pink City Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC579", + "message": "Kot Sadiq Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC580", + "message": "Khara Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC581", + "message": "Kot Sadiq", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC582", + "message": "Mast Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC583", + "message": "Thind Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC584", + "message": "Sai Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC585", + "message": "BT Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC586", + "message": "Kanshi Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC587", + "message": "Green Avenue", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC588", + "message": "Geeta Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC589", + "message": "New Geeta Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC590", + "message": "Ishwar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC591", + "message": "New Dashmesh Nagar B Block", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC592", + "message": "Dordarshan Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC593", + "message": "Tower Enclave Phase 2nd", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC594", + "message": "Hamilton Tower", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC595", + "message": "Guru Ravidass Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC596", + "message": "New Ravidass Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC597", + "message": "Shiva Ji Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC598", + "message": "New Shiva Ji Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC599", + "message": "Lasuri Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC600", + "message": "New Lasuri Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC601", + "message": "Begampura Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC602", + "message": "Main Adda Basti Danishmandan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC603", + "message": "Main Bazar Basti Danishmandan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC604", + "message": "Valmiki Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC605", + "message": "Chandigarh Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC606", + "message": "New Chandigarh Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC607", + "message": "Chungi Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC608", + "message": "Chungi No-9", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC609", + "message": "Tagri Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC610", + "message": "Guru Enclave", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC611", + "message": "Surjit Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC612", + "message": "Basti Sheikh + Danishmandan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC613", + "message": "Kattra Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JZN1", + "message": "ZONE_WEST", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JZN2", + "message": "ZONE_NORTH", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JZN3", + "message": "ZONE_CENTRAL", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JZN4", + "message": "ZONE_CANTT", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_OD_ANGUL", + "message": "Angul", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_OD_BALESORE", + "message": "Balasore", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_OD_BANKI", + "message": "Banki", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_OD_BERHMPURMOUZA", + "message": "Mouza of Berhmpurm (Beyond Municipal Area)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_OD_BHUBANESWARMOUZA", + "message": "Mouza of Bhubaneswar (Beyond Municipal Area)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_OD_BIRAMITRAPUR", + "message": "Biramitrapur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_OD_BRHMAPUR", + "message": "Brhmapur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_OD_BURLA", + "message": "Burla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_OD_CHATRAPUR", + "message": "Chatrapur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_OD_CUTTACK", + "message": "Cuttack", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_OD_CUTTACKMOUZA", + "message": "Mouza of Cuttack (Beyond Municipal Area)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_OD_Choudwar", + "message": "Choudwar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_OD_DEHRADUN", + "message": "Dehradun", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_OD_DHENKANAL", + "message": "Dhenkanal", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_OD_GOPALPUR", + "message": "Gopalpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_OD_HARIDWAR", + "message": "Haridwar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_OD_HIRAKUD", + "message": "Hirakud", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_OD_JATNI", + "message": "Jatni", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_OD_KALINGANAGARMOUZA", + "message": "Mouza of Kalinga Nagar (Beyond Municipal Area)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_OD_KHURDA", + "message": "Khurda", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_OD_KONARK", + "message": "Konark", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_OD_PARADIP", + "message": "Paradip", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_OD_PARADIPMOUZA", + "message": "Mouza of Paradip (Beyond Municipal Area)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_OD_PURI", + "message": "Puri", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_OD_PURIMOUZA", + "message": "Mouza of Puri (Beyond Municipal Area)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_OD_RAJGANGPUR", + "message": "Rajgangpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_OD_ROURKELA", + "message": "Rourkela", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_OD_ROURKELAMOUZA", + "message": "Mouza of Rourkela (Beyond Municipal Area)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_OD_SAMBALPUR", + "message": "Sambalpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_OD_SAMBALPURMOUZA", + "message": "Mouza of Sambalpur (Beyond Municipal Area)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_OD_SUNDARGARH", + "message": "Sundargarh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_OD_TALCHER", + "message": "Talcher", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_OD_TAMDAMOUZA", + "message": "Mouza of Tamda (Beyond Municipal Area)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_OD_VYASANAGAR", + "message": "Vyasanagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB", + "message": "Punjab", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_ABOHAR", + "message": "Abohar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_ADAMPUR", + "message": "Adampur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_AHMEDGARH", + "message": "Ahmedgarh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_AJNALA", + "message": "Ajnala", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_ALAWALPUR", + "message": "Alawalpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_AMARGARH", + "message": "Amargarh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_AMLOH", + "message": "Amloh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_AMRITSAR", + "message": "Amritsar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_ANANDPURSAHIB", + "message": "Anandpursahib", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_ARNIWALA", + "message": "Arniwala", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_BADHNIKALAN", + "message": "Badhnikalan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_BAGHAPURANA", + "message": "Baghapurana", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_BALACHAUR", + "message": "Balachaur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_BALIANWALI", + "message": "Balianwali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_BANGA", + "message": "Banga", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_BANUR", + "message": "Banur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_BARETA", + "message": "Bareta", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_BARIWALA", + "message": "Bariwala", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_BARNALA", + "message": "Barnala", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_BASSIPATHANA", + "message": "Bassipathana", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_BATALA", + "message": "Batala", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_BATHINDA", + "message": "Bathinda", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_BEGOWAL", + "message": "Begowal", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_BHADAUR", + "message": "Bhadaur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_BHADSON", + "message": "Bhadson", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_BHAGTABHAI", + "message": "Bhagtabhai", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_BHAIROOPA", + "message": "Bhairoopa", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_BHAWANIGARH", + "message": "Bhawanigarh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_BHIKHI", + "message": "Bhikhi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_BHIKHIWIND", + "message": "Bhikhiwind", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_BHOGPUR", + "message": "Bhogpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_BHUCHOMANDI", + "message": "Bhuchomandi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_BHULATH", + "message": "Bhulath", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_BILGA", + "message": "Bilga", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_BOHA", + "message": "Boha", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_BUDHLADA", + "message": "Budhlada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_CHAMKAURSAHIB", + "message": "Chamkaursahib", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_CHAUNKE", + "message": "Chaunke", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_CHEEMA", + "message": "Cheema", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_DASUYA", + "message": "Dasuya", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_DERABABANANAK", + "message": "Derababananak", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_DERABASSI", + "message": "Derabassi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_DHANAULA", + "message": "Dhanaula", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_DHARAMKOT", + "message": "Dharamkot", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_DHARIWAL", + "message": "Dhariwal", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_DHILWAN", + "message": "Dhilwan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_DHURI", + "message": "Dhuri", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_DINANAGAR", + "message": "Dinanagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_DIRBA", + "message": "Dirba", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_DORAHA", + "message": "Doraha", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_FARIDKOT", + "message": "Faridkot", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_FATEHGARHCHURIAN", + "message": "Fatehgarhchurian", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_FATEHGARHPANJTOOR", + "message": "Fatehgarhpanjtoor", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_FAZILKA", + "message": "Fazilka", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_FEROZEPUR", + "message": "Ferozepur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_GARHDIWALA", + "message": "Garhdiwala", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_GARHSHANKAR", + "message": "Garhshankar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_GHAGGA", + "message": "Ghagga", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_GHANAUR", + "message": "Ghanaur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_GIDDERBAHA", + "message": "Gidderbaha", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_GONIANA", + "message": "Goniana", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_GORAYA", + "message": "Goraya", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_GURDASPUR", + "message": "Gurdaspur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_GURUHARSAHAI", + "message": "Guruharsahai", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_HANDIAYA", + "message": "Handiaya", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_HARIANA", + "message": "Hariana", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_HOSHIARPUR", + "message": "Hoshiarpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_JAGRAON", + "message": "Jagraon", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_JAITU", + "message": "Jaitu", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_JALALABAD", + "message": "Jalalabad", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_JALANDHAR", + "message": "Jalandhar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_JANDIALAGURU", + "message": "Jandialaguru", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_JOGA", + "message": "Joga", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_KAPURTHALA", + "message": "Kapurthala", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_KARTARPUR", + "message": "Kartarpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_KHAMANO", + "message": "Khamano", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_KHANAURI", + "message": "Khanauri", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_KHANNA", + "message": "Khanna", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_KHARAR", + "message": "Kharar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_KHEMKARAN", + "message": "Khemkaran", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_KIRATPUR", + "message": "Kiratpur Sahib", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_KOTFATTA", + "message": "Kotfatta", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_KOTHAGURU", + "message": "Kothaguru", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_KOTISSEKHAN", + "message": "Kotissekhan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_KOTKAPURA", + "message": "Kotkapura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_KOTSHAMIR", + "message": "Kotshamir", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_KURALI", + "message": "Kurali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_LALRU", + "message": "Lalru", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_LEHRAGAGA", + "message": "Lehragaga", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_LEHRAMOHABBAT", + "message": "Lehramohabbat", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_LOHIANKHAS", + "message": "Lohiankhas", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_LONGOWAL", + "message": "Longowal", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_LUDHIANA", + "message": "Ludhiana", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_MACHHIWARA", + "message": "Machhiwara", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_MAHILPUR", + "message": "Mahilpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_MAJITHA", + "message": "Majitha", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_MAKHU", + "message": "Makhu", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_MALERKOTLA", + "message": "Malerkotla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_MALLANWALA", + "message": "Mallanwala", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_MALOUD", + "message": "Maloud", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_MALOUT", + "message": "Malout", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_MALUKA", + "message": "Maluka", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_MAMDOT", + "message": "Mamdot", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_MANDIGOBINDGARH", + "message": "Mandigobindgarh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_MANDIKALAN", + "message": "Mandikalan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_MANSA", + "message": "Mansa", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_MAUR", + "message": "Maur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_MEHATPUR", + "message": "Mehatpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_MEHRAJ", + "message": "Mehraj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_MOGA", + "message": "Moga", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_MOHALI", + "message": "Mohali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_MOONAK", + "message": "Moonak", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_MORINDA", + "message": "Morinda", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_MUDKI", + "message": "Mudki", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_MUKERIAN", + "message": "Mukerian", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_MUKTSAR", + "message": "Muktsar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_MULLANPUR", + "message": "Mullanpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_NABHA", + "message": "Nabha", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_NADALA", + "message": "Nadala", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_NAKODAR", + "message": "Nakodar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_NANGAL", + "message": "Nangal", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_NAROTJAIMALSINGH", + "message": "Narotjaimailsingh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_NATHANA", + "message": "Nathana", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_NAWANSHAHR", + "message": "Nawanshahr", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_NAYAGAON", + "message": "Nayagaon", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_NIHALSINGHWALA", + "message": "Nihalsinghwala", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_NURMAHAL", + "message": "Nurmahal", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_PATHANKOT", + "message": "Pathankot", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_PATIALA", + "message": "Patiala", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_PATRAN", + "message": "Patran", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_PATTI", + "message": "Patti", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_PAYAL", + "message": "Payal", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_PHAGWARA", + "message": "Phagwara", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_PHILLAUR", + "message": "Phillaur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_PUNJAB", + "message": "Punjab", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_QUADIAN", + "message": "Quadian", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_RAHON", + "message": "Rahon", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_RAIKOT", + "message": "Raikot", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_RAJASANSI", + "message": "Rajasansi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_RAJPURA", + "message": "Rajpura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_RAMAN", + "message": "Raman", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_RAMDASS", + "message": "Ramdass", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_RAMPURA", + "message": "Rampura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_RAMPURAPHUL", + "message": "Rampuraphul", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_RAYYA", + "message": "Rayya", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_ROPAR", + "message": "Ropar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_SAHNEWAL", + "message": "Sahnewal", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_SAMANA", + "message": "Samana", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_SAMRALA", + "message": "Samrala", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_SANAUR", + "message": "Sanaur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_SANGATMANDI", + "message": "Sangatmandi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_SANGRUR", + "message": "Sangrur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_SARDULGARH", + "message": "Sardulgarh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_SHAHKOT", + "message": "Shahkot", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_SHAMCHURASI", + "message": "Shamchurasi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_SIRHIND", + "message": "Sirhind", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_SRIHARGOBINDPUR", + "message": "Srihargobindpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_SUJANPUR", + "message": "Sujanpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_SULTANPURLODHI", + "message": "Sultanpurlodhi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_SUNAM", + "message": "Sunam", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_TALWANDIBHAI", + "message": "Talwandibhai", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_TALWANDISABO", + "message": "Talwandisabo", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_TALWARA", + "message": "Talwara", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_TAPA", + "message": "Tapa", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_TARNTARAN", + "message": "Tarntaran", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_TESTING", + "message": "Testing", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_URMARTANDA", + "message": "Urmartanda", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_ZIRA", + "message": "Zira", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_ZIRAKPUR", + "message": "Zirakpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_STATEA", + "message": "State A", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_STATEA_ADDISABABA", + "message": "City F", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_STATEA_AMHARA", + "message": "Ethopia", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_STATEA_BALASORE", + "message": "Balasore", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_STATEA_BALASORE_MUNICIPALITY", + "message": "Balasore", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_STATEA_BERHAMPUR", + "message": "Berhampur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_STATEA_BERHAMPUR_MUNICIPAL_CORPORATION", + "message": "Berhmapur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_STATEA_CITYA", + "message": "City A", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_STATEA_CITYB", + "message": "City B", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_STATEA_CITYC", + "message": "City C", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_STATEA_CITYD", + "message": "City D", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_STATEA_CITYE", + "message": "City E", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_STATEA_CITY_A", + "message": "City A", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_STATEA_CITY_B", + "message": "City B", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_STATEA_CITY_C", + "message": "City C", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_STATEA_CITY_D", + "message": "City D", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_STATEA_CITY_E", + "message": "City E", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_STATEA_DHENKANAL", + "message": "Dhenkanal", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_STATEA_DIREDAWA", + "message": "City H", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_STATEA_OROMIA", + "message": "City I", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_VYASANAGAR", + "message": "Vyasanagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD", + "message": "ZONE_WEST", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD1", + "message": "WARD_1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD10", + "message": "WARD_10", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD11", + "message": "WARD_11", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD12", + "message": "WARD_12", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD13", + "message": "WARD_13", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD14", + "message": "WARD_14", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD15", + "message": "WARD_15", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD16", + "message": "WARD_16", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD17", + "message": "WARD_17", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD18", + "message": "WARD_18", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD19", + "message": "WARD_19", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD2", + "message": "WARD_2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD20", + "message": "WARD_20", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD21", + "message": "WARD_21", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD22", + "message": "WARD_22", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD23", + "message": "WARD_23", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD24", + "message": "WARD_24", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD25", + "message": "WARD_25", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD26", + "message": "WARD_26", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD27", + "message": "WARD_27", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD28", + "message": "WARD_28", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD29", + "message": "WARD_29", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD3", + "message": "WARD_3", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD30", + "message": "WARD_30", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD31", + "message": "WARD_31", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD32", + "message": "WARD_32", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD33", + "message": "WARD_33", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD34", + "message": "WARD_34", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD35", + "message": "WARD_35", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD36", + "message": "WARD_36", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD37", + "message": "WARD_37", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD38", + "message": "WARD_38", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD39", + "message": "WARD_39", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD4", + "message": "WARD_4", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD40", + "message": "WARD_40", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD41", + "message": "WARD_41", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD42", + "message": "WARD_42", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD43", + "message": "WARD_43", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD44", + "message": "WARD_44", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD45", + "message": "WARD_45", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD46", + "message": "WARD_46", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD47", + "message": "WARD_47", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD48", + "message": "WARD_48", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD49", + "message": "WARD_49", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD5", + "message": "WARD_5", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD50", + "message": "WARD_50", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD51", + "message": "WARD_51", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD52", + "message": "WARD_52", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD53", + "message": "WARD_53", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD54", + "message": "WARD_54", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD55", + "message": "WARD_55", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD56", + "message": "WARD_56", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD57", + "message": "WARD_57", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD58", + "message": "WARD_58", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD59", + "message": "WARD_59", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD6", + "message": "WARD_6", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD60", + "message": "WARD_60", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD61", + "message": "WARD_61", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD62", + "message": "WARD_62", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD63", + "message": "WARD_63", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD64", + "message": "WARD_64", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD65", + "message": "WARD_65", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD66", + "message": "WARD_66", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD67", + "message": "WARD_67", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD68", + "message": "WARD_68", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD69", + "message": "WARD_69", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD7", + "message": "WARD_7", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD70", + "message": "WARD_70", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD71", + "message": "WARD_71", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD72", + "message": "WARD_72", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD73", + "message": "WARD_73", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD74", + "message": "WARD_74", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD75", + "message": "WARD_75", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD76", + "message": "WARD_76", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD77", + "message": "WARD_77", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD78", + "message": "WARD_78", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD79", + "message": "WARD_79", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD8", + "message": "WARD_8", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD80", + "message": "WARD_80", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_WARD9", + "message": "WARD_9", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_pb_amritsar", + "message": "Amritsar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_pg.cityA", + "message": "City A", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_pg.cityB", + "message": "City B", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_pg.cityC", + "message": "City C", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_pg.cityD", + "message": "City D", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_pg.citya", + "message": "City A", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_pg.cityb", + "message": "City B", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_pg.cityc", + "message": "City C", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_pg.cityd", + "message": "City D", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_pg.citye", + "message": "City D", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANT_CITY_A", + "message": "City A", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TEST1", + "message": "egdhgfjhfjhgj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TEST_RESULT_NOT_AS_PER_BENCHMARKS_FOR_LAB", + "message": "Test result not as per benchmarks for the lab", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TEST_RESULT_NOT_SUBMITTED", + "message": "Test result not submitted.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TEST_RESULT_NOT_SUBMTTED", + "message": "Test result not submitted.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "THE_IA_SHALL_BE_RESPONSIBLE_FOR_EXECUTION_OF_THE_ENTIER_WO RK_WITH_THE_TECHNICAL_SUPPORT_OF_ENGINEERING_IN_CHARGE_OF_ THE_PROJECT_CONCERNED", + "message": "The IA shall be responsible for execution of the entire work with the technical support of engineer in-charge of the project concerned.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "THE_IA_SHALL_BE_RESPONSIBLE_FOR_EXECUTION_OF_THE_ENTIER_WORK_WITH_THE_TECHNICAL_SUPPORT_OF_ENGINEERING_IN_CHARGE_OF_THE_PROJECT_CONCERNED", + "message": "The IA shall be responsible for execution of the entire work with the technical support of engineer in-charge of the project concerned.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TIME_ANSWER_TYPE", + "message": "Time", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TIP_DSS_FSM_TOTAL_REQUESTS_FROM_GP", + "message": "Applications from Grama Panchayat", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TIP_DSS_MUKTA_MUSTER_ROLLS", + "message": "Muster Roll Status", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TIP_DSS_PT_SLA_ACHIEVED", + "message": "(Total applications approved in stipulated time / Total applications approved) x 100", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TIP_NATIONAL_DSS_OVERVIEW_CITIZEN_FEEDBACK_SCORE", + "message": "(Sum of citizen ratings / total number of request for which the rating was provided)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TIP_NATIONAL_DSS_OVERVIEW_PENDANCY", + "message": "(Total applications received – Total applications resolved / Total applications received) x 100", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TIP_NATIONAL_DSS_PT_CITIZEN_FEEDBACK_SCORE", + "message": "(Sum of citizen ratings / total number of request for which the rating was provided)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TIP_NATIONAL_DSS_PT_CITIZEN_SERVICE_DELIVERY_INDEX", + "message": "((0.5 x Aggregated SLA) + ( 0.5 x Citizen Feedback score%))", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TIP_NATIONAL_DSS_PT_PENDANCY", + "message": "(Total applications received – Total applications resolved / Total applications received) x 100", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TIP_NATIONAL_DSS_PT_SLA_ACHIEVED", + "message": "(Total applications approved in stipulated time / Total applications approved) x 100", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL", + "message": "Trade Licence", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL Daily Collection report", + "message": "Trade License Daily Collection report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TLAPPLICATIONSTATUSREPORT", + "message": "Tl Application status report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_ACCESSORY_UNIT", + "message": "Accessory Unit", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_ACC_1", + "message": "Air Compressor", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_ACTION_RESUBMIT", + "message": "Re-Submit Application", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_ADD_ASSIGNMENT", + "message": "ADD ASSIGNMENT", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_ADD_HOC_CHARGES_POPUP_BUTTON_CANCEL", + "message": "CANCEL", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_APPLICATION", + "message": "Application", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_APPLICATIONTYPE.NEW", + "message": "New", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_APPLICATIONTYPE.RENEWAL", + "message": "Renewal", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_APPLICATION_MARKED_SUCCESS", + "message": "Application has been marked successfully", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_APPLICATION_NO_CODE", + "message": "Application No. {0}", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_APPLICATION_RESUBMIT_SUCCESS_MESSAGE_MAIN", + "message": "Application Re-Submitted Successfully", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_APPLICATION_RESUBMIT_SUCCESS_MESSAGE_SUB", + "message": "A notification regarding Application Re Submission has been sent to trade owner at registered Mobile No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_APPLIED", + "message": "Applied", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_APPROVAL_CHECKLIST_BUTTON_UP_FILE", + "message": "Attach Supporting Documents", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_APPROVAL_CHECKLIST_COMMENTS_LABEL", + "message": "Comments", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_APPROVAL_CHECKLIST_HEAD", + "message": "Verification Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_APPROVAL_UPLOAD_HEAD", + "message": "Supporting Documents", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_APPROVAL_UPLOAD_SUBHEAD", + "message": "Only .jpg and .pdf files. 5MB max file size.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_BUTTON_UPLOAD FILE", + "message": "Upload File", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_BUTTON_UPLOAD_FILE", + "message": "Upload File", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_CANCEL_CHECKLIST_HEAD", + "message": "Cancellation Remarks", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_CERTIFICATE", + "message": "TL Certificate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_CITIZEN_SELECT", + "message": "SELECT", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_COMMON_BUTTON_BACK", + "message": "BACK", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_COMMON_BUTTON_CITIZEN_MAKE_PAYMENT", + "message": "MAKE PAYMENT", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_COMMON_BUTTON_HOME", + "message": "GO TO HOME", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_COMMON_BUTTON_NXT_STEP", + "message": "Next Step", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_COMMON_BUTTON_PREV_STEP", + "message": "Previous Step", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_COMMON_BUTTON_PROC_PMT", + "message": "PROCEED TO PAYMENT", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_COMMON_DOCS", + "message": "Documents", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_COMMON_EDIT_UPDATE_MESSAGE", + "message": "Rates will be updated on submission", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_COMMON_NO", + "message": "No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_COMMON_RENEW_LIC", + "message": "Renew Trade License", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_COMMON_SAME_AS_PROPERTY_OWNERS", + "message": "Same as property owner's", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_COMMON_STATUS_APPLIED", + "message": "Applied", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_COMMON_TABLE_COL_APP_DATE", + "message": "Application Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_COMMON_TABLE_COL_APP_NO", + "message": "Application No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_COMMON_TABLE_COL_APP_TP", + "message": "Application Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_COMMON_TABLE_COL_APP_TYPE", + "message": "Application Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_COMMON_TABLE_COL_FIN_YEAR", + "message": "Financial Year", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_COMMON_TABLE_COL_FIN_YR", + "message": "Financial Year", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_COMMON_TABLE_COL_LICENSE_TYPE", + "message": "License Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_COMMON_TABLE_COL_LIC_NO", + "message": "License No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_COMMON_TABLE_COL_OWN_NAME", + "message": "Owner Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_COMMON_TABLE_COL_STATUS", + "message": "Status", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_COMMON_TABLE_COL_TRD_NAME", + "message": "Trade Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_COMMON_TL", + "message": "Trade License", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_COMMON_TOTAL_AMT", + "message": "Total Amount", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_COMMON_TO_DATE_LABEL", + "message": "To Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_COMMON_TR_DETAILS", + "message": "Trade Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_COMMON_YES", + "message": "Yes", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_CONFIRMATION_MESSAGE_MAIN", + "message": "Payment has been collected successfully!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_CONFIRMATION_MESSAGE_SUB", + "message": "A notification regarding Payment Collection has been sent to trade owner at registered Mobile No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_CORRESPONDENCE_ADDRESS", + "message": "Correspondance Address", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_CREATE_TRADE", + "message": "Apply for Trade License", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_CURRENT_OWNER_LABEL", + "message": "Current Owner", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_DATE_LABEL", + "message": "Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_DOB_ERROR_MESSAGE", + "message": "Invalid DOB", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_DOWNLOAD", + "message": "DOWNLOAD", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_Document - 1", + "message": "Document 1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_Document_1", + "message": "Document 1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_FAQ_ANS_ONE", + "message": "You can renew trade licenses at the counter or through the portal. After logging in, search for the relevant trade license in the portal. Then click on link for the trade license that you wish to renew. Next, complete the application for the renewal of Trade License and click submit.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_FAQ_ANS_THREE", + "message": "After you login with your credentials, click on my application. Among all the applications listed, find the one for which status is 'approved' and click on 'View Details'. In the next page, click on the 'Download' button on top right corner. In case of approved applications, TL certiifcate and Payment Receipt will be show in the drop down and click on the relevant one to download.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_FAQ_ANS_THREE_APP_ACKNOWLEDGE", + "message": "In case application is under processing, then you can download an Application Acknowledgement through same methodology.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_FAQ_ANS_TWO", + "message": "You can search for your previous applications by clicking on My Applications in the home screen. Then click on the relevant application card among the list.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_FAQ_QUES_ONE", + "message": "How do I renew my Trade License? ", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_FAQ_QUES_THREE", + "message": "How can I download Trade License Certificate or payment receipts? ", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_FAQ_QUES_TWO", + "message": " How do I search for my application? ", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_FAQ_S", + "message": "FAQs", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_HOME_SEARCH_RESULTS_APP_NO_LABEL", + "message": "Application No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_HOME_SEARCH_RESULTS_APP_STATUS_LABEL", + "message": "Application status", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_HOME_SEARCH_RESULTS_APP_STATUS_PLACEHOLDER", + "message": "Select Application Status", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_HOME_SEARCH_RESULTS_BUTTON_SEARCH", + "message": "Search", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_HOME_SEARCH_RESULTS_TL_NO_LABEL", + "message": "Trade License No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_LICENSE_NO_CODE", + "message": "License No. {0}", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_LICENSE_YEAR_LABEL", + "message": "License year", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_LOCALIZATION_ACCESSORIES", + "message": "Accessories", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_LOCALIZATION_ADHOC_PENALTY", + "message": "Adhoc Penalty", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_LOCALIZATION_ADHOC_REBATE", + "message": "Adhoc Rebate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_LOCALIZATION_AMOUNT_DUE", + "message": "Amount Due", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_LOCALIZATION_APPLICATIONTYPE_DIRECTRENEWAL", + "message": "Direct Renewal", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_LOCALIZATION_APPLICATIONTYPE_NEW", + "message": "New", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_LOCALIZATION_APPLICATIONTYPE_RENEWAL", + "message": "Renewal", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_LOCALIZATION_APPLICATION_NO", + "message": "Application No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_LOCALIZATION_APPLICATION_TYPE", + "message": "Application Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_LOCALIZATION_APPROVED_BY", + "message": "Approved By", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_LOCALIZATION_BANK_NAME_WITH_BRANCH", + "message": "Bank Name With Branch", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_LOCALIZATION_BUILDING_NAME", + "message": "Building Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_LOCALIZATION_COMMISSIONER_OR_EO", + "message": "Commissioner/EO", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_LOCALIZATION_CORPORATION_ADDRESS", + "message": "Municipal Corporation Nawanshahr Nawanshahr Punjab", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_LOCALIZATION_CORPORATION_CONTACT", + "message": "Corporation Contact", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_LOCALIZATION_CORPORATION_EMAIL", + "message": "Corporation email", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_LOCALIZATION_CORPORATION_WEBSITE", + "message": "Corporation website", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_LOCALIZATION_FINANCIAL_YEAR", + "message": "Financial Year", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_LOCALIZATION_G8_RECEIPT_ISSUE_DATE", + "message": "G8 Receipt Issue date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_LOCALIZATION_G8_RECEIPT_NO", + "message": "G8 Receipt No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_LOCALIZATION_GENERATED_BY", + "message": "Generated by", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_LOCALIZATION_HOUSE_DOOR_NO", + "message": "House Door No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_LOCALIZATION_LICENSE_ISSUE_DATE", + "message": "License Issue Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_LOCALIZATION_LICENSE_VALIDITY", + "message": "License Validity", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_LOCALIZATION_LOCALITY", + "message": "Locality", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_LOCALIZATION_NOTE", + "message": "Note : Payment received by cheque/demand draft shall be subject to realization.This document is not a proof of Property Ownership.This is a computer generated document", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_LOCALIZATION_OLD_LICENSE_NO", + "message": "Old License No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_LOCALIZATION_OWNERSHIP_INFORMATION", + "message": "Ownership Information", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_LOCALIZATION_OWNER_MOBILE", + "message": "Owner Mobile", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_LOCALIZATION_OWNER_NAME", + "message": "Owner Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_LOCALIZATION_PAYABLE_AMOUNT", + "message": "Payable Amount", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_LOCALIZATION_PAYMENT_DATE", + "message": "Payment Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_LOCALIZATION_PAYMENT_INFORMATION", + "message": "Payment Information", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_LOCALIZATION_PAYMENT_MODE", + "message": "Payment Mode", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_LOCALIZATION_PAYMENT_RECIEPT", + "message": "Payment Reciept", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_LOCALIZATION_PENALTY", + "message": "Penalty", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_LOCALIZATION_REBATE", + "message": "rebate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_LOCALIZATION_RECEIPT_NO", + "message": "Receipt No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_LOCALIZATION_RECIEPT_NO", + "message": "Receipt No. ", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_LOCALIZATION_STREET_NAME", + "message": "Street Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_LOCALIZATION_TOTAL", + "message": "Total", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_LOCALIZATION_TOTAL_AMOUNT_PAID", + "message": "Total Amount Paid", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_LOCALIZATION_TRADE_ADDRESS", + "message": "Trade Address", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_LOCALIZATION_TRADE_CATEGORY", + "message": "Trade Category", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_LOCALIZATION_TRADE_DETAILS", + "message": "Trade Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_LOCALIZATION_TRADE_LICENSE_CERTIFICATE", + "message": "Trade License Certificate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_LOCALIZATION_TRADE_LICENSE_FEE", + "message": "Trade License Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_LOCALIZATION_TRADE_LICENSE_NO", + "message": "Trade License No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_LOCALIZATION_TRADE_LICENSE_RS", + "message": "Rs.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_LOCALIZATION_TRADE_LICENSE_TO", + "message": "To", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_LOCALIZATION_TRADE_NAME", + "message": "Trade Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_LOCALIZATION_TRADE_OWNER_CONTACT", + "message": "Trade Owner Contact", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_LOCALIZATION_TRADE_OWNER_NAME", + "message": "Trade Owner Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_LOCALIZATION_TRADE_TYPE", + "message": "Trade Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_LOCALIZATION_TRANSACTION_ID", + "message": "Transaction Id", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_LOCALIZATION_ULBGRADE_MC1", + "message": "Municipal Corporation", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_MALE", + "message": "Male", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_MANUFACTURE", + "message": "Manufacture", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_MAP_CLOSE_LABEL", + "message": "Close", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_MAP_PICK_LABEL", + "message": "Pick your city.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_MARK_APPLICATION", + "message": "Mark Application", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_MARK_SUCCESS_MESSAGE_MAIN", + "message": "Application Marked Successfully", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_MY_APPLICATIONS", + "message": "My Applications", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_MY_APPLICATIONS_HEADER", + "message": "My Applications", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_NAME_ERROR_MESSAGE", + "message": "Enter valid name (max length 64)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_NEW PUBLIC MESSAGE_BUTTON_LABEL", + "message": "NEW PUBLIC MESSAGE", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_NEW_APPLICATION", + "message": "New Application", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_NEW_APPLICATION_PROPERTY", + "message": "New Property", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_NEW_OWNER_DESIG_LABEL", + "message": "Designation", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_NEW_OWNER_DESIG_PLACEHOLDER", + "message": "Enter Designation", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_NEW_OWNER_DETAILS_DOB_PLACEHOLDER", + "message": "Enter Date of Birth", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_NEW_OWNER_DETAILS_GENDER_LABEL", + "message": "Gender", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_NEW_OWNER_DETAILS_GENDER_PLACEHOLDER", + "message": "Select Gender", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_NEW_OWNER_DETAILS_HEADER", + "message": "Trade Owner Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_NEW_OWNER_DETAILS_OWNERSHIP_TYPE_LABEL", + "message": "Type Of ownership*", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_NEW_PUBLIC_MESSAGE_BUTTON_LABEL", + "message": "NEW PUBLIC MESSAGE", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_NEW_TRADE_DETAILS_BLDG_NAME_LABEL", + "message": "Building/Colony Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_NEW_TRADE_DETAILS_BLDG_NAME_PLACEHOLDER", + "message": "Enter Building/Colony Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_NEW_TRADE_DETAILS_CITY_LABEL", + "message": "City", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_NEW_TRADE_DETAILS_DOOR_NO_LABEL", + "message": "Door/House No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_NEW_TRADE_DETAILS_DOOR_NO_PLACEHOLDER", + "message": "Enter Door/House No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_NEW_TRADE_DETAILS_GIS_CORD_LABEL", + "message": "GIS Coordinates", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_NEW_TRADE_DETAILS_GIS_CORD_PLACEHOLDER", + "message": "Select your trade location on map", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_NEW_TRADE_DETAILS_MOHALLA_LABEL", + "message": "Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_NEW_TRADE_DETAILS_MOHALLA_PLACEHOLDER", + "message": "Select Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_NEW_TRADE_DETAILS_PIN_LABEL", + "message": "Pincode", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_NEW_TRADE_DETAILS_PIN_PLACEHOLDER", + "message": "Enter Pincode", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_NEW_TRADE_DETAILS_SRT_NAME_LABEL", + "message": "Street Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_NEW_TRADE_DETAILS_SRT_NAME_PLACEHOLDER", + "message": "Enter Street Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_NEW_TRADE_DETAILS_TRADE_UNIT_HEADER", + "message": "Trade Unit", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_NEW_TRADE_LICENSE_HEADER", + "message": "New trade License", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_NO_DOCUMENTS_MSG", + "message": "No Documents", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_PAYMENT_FAILED", + "message": "Payment has failed!", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_PAYMENT_NOTIFICATION", + "message": "A notification regarding payment failure has been sent to the trade owner and applicant.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_PAYMENT_VIEW_BREAKUP", + "message": "VIEW BREAKUP", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_PICK_YOUR_CITY_CITIZEN", + "message": "Pick your city.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_PMT_RCPT_NO", + "message": "Payment Receipt No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_PRINT", + "message": "PRINT", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_PROPERTY_ID", + "message": "Property ID", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_PROPERTY_ID_REQUIRED", + "message": "Property ID is required", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_RECEIPT", + "message": "Receipt", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_RENEWAL_HEADER", + "message": "Renew Trade License", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_RENEWAL_PENALTY", + "message": "Renewal Penalty", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_RENEWAL_REBATE", + "message": "Renewal Rebate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_RENEWAL_TAX", + "message": "Trade License Renewal Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_RETRY", + "message": "RETRY", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_SEARCH_APPLICATIONS", + "message": "Search Applications", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_SEARCH_LICENSE", + "message": "Search Trade License", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_SELECT_CITY", + "message": "Select City", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_SENDBACK_CHECKLIST_MESSAGE_HEAD", + "message": "Application is sent back Successfully", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_SENDBACK_TOCITIZEN_CHECKLIST_MESSAGE_HEAD", + "message": " Application is sent back to initiator successfully", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_SUMMARY_EDIT", + "message": "EDIT", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_SUMMARY_HEADER", + "message": "Application Summary", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_SUPPORTINGDOCUMENT", + "message": "Supporting Document", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_TASK_STATUS", + "message": "Task Status", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_TAX", + "message": "Trade License Tax", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_TIMELINE_DOCS", + "message": "Timeline", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_TL_CANCELLED_MESSAGE_HEAD", + "message": "Trade License Cancelled", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_TL_CANCELLED_MESSAGE_SUBHEAD", + "message": "A notification regarding Trade License cancellation has been sent to trade owner at registered Mobile No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_TRADE_APPLICATION", + "message": "Trade License Application", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_ULBGRADE_MC1", + "message": "Corporation1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_UPDATED_BY_LABEL", + "message": "Updated By", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_UPLOAD_FILES_BUTTON", + "message": "UPLOAD FILES", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_UPLOAD_RESTRICTION", + "message": "Only .jpg, .png and .jpeg 8MB max file size.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_UPLOAD_RESTRICTIONS", + "message": "Only .jpg and .pdf files. 6MB max file size.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_VALIDITY", + "message": "Trade License validity is", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_VALIDITY_IS", + "message": "Trade License validity is", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_VALIDITY_IS 1 COMMON_YEAR", + "message": "Validity is 1 common year", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_VIEW_DETAILS", + "message": "VIEW DETAILS", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_VIEW_HISTORY", + "message": "VIEW HISTORY", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_VIEW_PROPERTY_DETAIL", + "message": "View Complete Property Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_WF_NEWTL_REJECT", + "message": "Reject", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_WORKFLOWCODE_DIRECTRENEWAL", + "message": "Direct Renewal", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_WORKFLOWCODE_EDITRENEWAL", + "message": "Edit Renewal", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_WORKFLOWCODE_NEWTL", + "message": "New TL", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_WORKFLOWCODE_NEW_TL", + "message": "New TL", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TL_mp", + "message": "Madhya Pradesh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TOTAL_CHALLANS", + "message": "Total Challans", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TOTAL_CHALLANS ", + "message": "Total Challans", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TOTAL_DOCUMENTS", + "message": "Documents", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TOTAL_EMPLOYEES", + "message": "Total Employees", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TOTAL_EVENTS", + "message": "Events", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TOTAL_FILES_MORE_THAN_ALLOWED", + "message": "FIle not Allowed", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TOTAL_FSM", + "message": "Total", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TOTAL_MESSAGES", + "message": "Messages", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TOTAL_NEARING_SLA", + "message": "Nearing SLA", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TOTAL_PAYABLE", + "message": "Total Payable", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TOTAL_PGR", + "message": "Total", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TOTAL_SURVEYS", + "message": "Total", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TOTAL_SW", + "message": "Total", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TOTAL_TL", + "message": "Total", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TOTAL_WS", + "message": "Total", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TO_BE_SUBMITTED", + "message": "Submission Pending", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TQM_ADD_TEST_RESULT", + "message": "Add Test result", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TQM_ADD_TEST_SUCCESS", + "message": "Test added successfully.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TQM_DASHBOARD", + "message": "Dashboard", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TQM_INBOX", + "message": "Inbox", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TQM_KPI_NEARING_SLA", + "message": "Nearing SLA", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TQM_KPI_PENDING_TESTS", + "message": "Pending Tests", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TQM_SENSOR_MON", + "message": "Sensor Monitoring", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TQM_TIMELINE_STATUS_SUBMIT_SAMPLE", + "message": "View Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TQM_TIMELINE_STATUS_UPDATE_RESULT", + "message": "View Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TQM_VIEW_IOT_READING", + "message": "View IoT Reading", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TQM_VIEW_PAST_RESULTS", + "message": "View Past Results", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRACK_ATTENDENCE", + "message": "Track Attendance", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSEDAILYCOLLECTIONREPORT", + "message": "Trade License Daily Collection report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_1", + "message": "Air Compressor", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_10", + "message": "Carbon", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_11", + "message": "Cardboard", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_12", + "message": "Celluloid or celluloid goods", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_13", + "message": "Cement", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_14", + "message": "Cement concrete designs or models", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_15", + "message": "Cleaning Goods", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_16", + "message": "Cloth Containing nylon,Terelene or Synthetic Yarn,Terrywool or woolen", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_17", + "message": "Coal", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_18", + "message": "Cosmetics or toilet goods", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_19", + "message": "Drugets, Mats and Coconut Fibre", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_2", + "message": "Bakery Product", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_20", + "message": "Dry Chilli", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_21", + "message": "Dry leaves and articles made thereof, Beedi leaves", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_22", + "message": "Dynamite", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_23", + "message": "Electric Motors", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_24", + "message": "Electrical Goods", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_25", + "message": "Electronic Goods and spare part ", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_26", + "message": "Fire works", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_27", + "message": "Fish (dried)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_28", + "message": "Fuel wood", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_29", + "message": "Generator sets (Movable/Immovable/Portable )", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_3", + "message": "Bamboos", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_30", + "message": "Glass or glass articles", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_31", + "message": "Gross match boxes up to 20", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_32", + "message": "Gun Powder and cartridges etc.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_33", + "message": "Gun-cotton", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_34", + "message": "Hessian Cloth of Jute and goods made thereof,packing stuff", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_35", + "message": "Ice (including dry Ice)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_36", + "message": "Ice cream/Ice and Soda water", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_37", + "message": "Incense or esas", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_38", + "message": "Kerosene oil, mobile oil, crude oil, grease and all kinds of lubricants oil", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_39", + "message": "Kerosone", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_4", + "message": "Bhatta, Tandoor", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_40", + "message": "Leather goods, leather foam, rexon and articles made there ", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_41", + "message": "Lpg Cylinder and other gas cylinder", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_42", + "message": "Machinery goods V-bells etc. including pumping sets", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_43", + "message": "Medicines and drugs", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_44", + "message": "More than 20 gross match boxes", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_45", + "message": "MRI", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_46", + "message": "Non dangerous petroleum products 500-1000 gallons", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_47", + "message": "Non dangerous petroleum products above 1000 gallons", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_48", + "message": "Nytromixer, sulpher, phosphorous, blasting powder etc.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_49", + "message": "Oil seeds/fooder seeds,cotton seeds etc", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_5", + "message": "Boilers", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_50", + "message": "Paints/Spirits/Thinner Oil/ Colour/Varnish/ turpentine of all kinds", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_51", + "message": "Paper and goods made thereof including books and magazines", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_52", + "message": "Petrol,Diesel etc", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_53", + "message": "Photographic films", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_54", + "message": "Plastic goods", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_55", + "message": "Plywood Sunmica", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_56", + "message": "Power Loom", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_57", + "message": "Raw wool and raw cotton", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_58", + "message": "Sale of hosiery goods", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_59", + "message": "Sale of Panja,Kassi etc", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_6", + "message": "C.T Scan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_60", + "message": "Sanitary fitting including G.I., C.I. Pipes, S.W. Pipes, A.C. Pipes, Cement pipes", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_61", + "message": "Silk Clothes and Art Silk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_62", + "message": "Sirki, Baan, Khazoor, Patta, Manj, Ropes and Nylon ropes etc", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_63", + "message": "Soap", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_64", + "message": "Steam engine and oil engine", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_65", + "message": "Storage or sale of Audio Cassettes", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_66", + "message": "Sugar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_67", + "message": "Tarcoal and bitumen,etc", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_68", + "message": "Testing laboratories", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_69", + "message": "Thermostat Boilers", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_7", + "message": "Camphor", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_70", + "message": "Tobacco or Zarda", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_71", + "message": "Tyre/Tubes", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_72", + "message": "Ultra Sound", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_73", + "message": "Unslacked limes", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_74", + "message": "Vegetable oil and Hydrogenated Oil etc", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_75", + "message": "Vegetable oil and Hydronated Oil etc", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_76", + "message": "Video Cassettes/CDs/DVDs", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_77", + "message": "Welding of Metal", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_78", + "message": "Welding Set", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_79", + "message": "Wool", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_8", + "message": "Candles,Dhoop,Aggarbatti etc", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_80", + "message": "X-ray", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_81", + "message": "Yarn other than waste yarn", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_9", + "message": "Carbide of calcium", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_TRADETYPE_INTERSTATE", + "message": "MP Inter District Pass", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_TRADETYPE_SERVICES_NGBS_TST_220", + "message": "workshop", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADE_LICENCE", + "message": "Trade Licence", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRADE_LICENSE", + "message": "Trade License", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TRANSGENDER", + "message": "Transgender", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TX.ELECTRICITY_CHUNGI_CGST", + "message": "CGST", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TX.ELECTRICITY_CHUNGI_FIELD_FEE", + "message": "Field Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TX.ELECTRICITY_CHUNGI_SGST", + "message": "SGST", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TX.ELECTRICITY_CHUNGI_TAX", + "message": "Electricity Chungi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TX.NO_DUES_CERTIFICATE_CGST", + "message": "CGST (If applicable):", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TX.NO_DUES_CERTIFICATE_CGST_TAX", + "message": "CGST (If applicable):", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TX.NO_DUES_CERTIFICATE_FIELD_FEE", + "message": "Field Collection Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TX.NO_DUES_CERTIFICATE_SGST", + "message": "SGST (If applicable):", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TX.NO_DUES_CERTIFICATE_SGST_TAX", + "message": "SGST (If applicable):", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TX.NO_DUES_CERTIFICATE_TAX", + "message": "NDC - No Dues Certificate Tax Amount", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TX.TRANSFER_PROPERTY_FEES_CGST", + "message": "CGST", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TX.TRANSFER_PROPERTY_FEES_FIELD_FEE", + "message": "Field Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TX.TRANSFER_PROPERTY_FEES_SGST", + "message": "SGST", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TX.TRANSFER_PROPERTY_FEES_TAX", + "message": "Transfer Property Fees", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TX.TS1_COPY_REGISTER_FOR_OLD_SURVEY_CGST", + "message": "CGST", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TX.TS1_COPY_REGISTER_FOR_OLD_SURVEY_FIELD_FEE", + "message": "Field Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TX.TS1_COPY_REGISTER_FOR_OLD_SURVEY_SGST", + "message": "SGST", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TX.TS1_COPY_REGISTER_FOR_OLD_SURVEY_TAX", + "message": "TS1 Copy register for old survey tax", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TXN_ABRUPTLY_DISCARDED", + "message": "A transaction for this bill has been abruptly discarded, please retry after 30 mins", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TX_NO_DUES_CERTIFICATE_CGST", + "message": "CGST (If applicable):", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TX_NO_DUES_CERTIFICATE_FIELD_FEE", + "message": "Field Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TX_NO_DUES_CERTIFICATE_SGST", + "message": "SGST (If applicable):", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "TX_NO_DUES_CERTIFICATE_TAX", + "message": "Tax", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ToDate", + "message": "Application created to date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "Total Payable", + "message": "TOTAL_PAYABLE", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UC_ACTIVE", + "message": "Active", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UC_AMOUNT_DUE_LABEL", + "message": "Amount Due", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UC_BILL_GENERATED_SUCCESS_MESSAGE", + "message": "Challan Generated Succesfully", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UC_BILL_GENERATION_MESSAGE_SUB", + "message": "A notification regarding above challan/bill has been sent to the registered Mobile No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UC_BILL_NO_LABEL", + "message": "Bill No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UC_BLDG_NAME_LABEL", + "message": "Building Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UC_BLDG_NAME_PLACEHOLDER", + "message": "Enter Building Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UC_BUILDING_NAME_LABEL", + "message": "Building Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UC_BUILDING_NAME_LABEL:", + "message": "Challan Register Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UC_BUTTON_PAY", + "message": "Pay", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UC_CANCELLED", + "message": "Cancelled", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UC_CANCEL_CHALLAN", + "message": "Cancel", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UC_CHALLAN", + "message": "Challan ", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UC_CHALLAN_NO", + "message": "Challan No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UC_CHALLAN_NO_LABEL", + "message": "Challan No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UC_CHALLAN_NO_LABEL_PLACEHOLDER", + "message": "Enter Challan No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UC_CHALLAN_NO_LABEL_PLACEHOLDER ", + "message": "Enter Challan No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UC_CITY_LABEL", + "message": "City*", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UC_CLICK_HERE_TO_SEARCH_LINK", + "message": "Click here to Search", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UC_COMMON_FIELD_ERROR", + "message": "Enter Tax Amount", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UC_COMMON_HEADER_SEARCH", + "message": "Miscellaneous Collection", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UC_COMMON_NOT_PAID", + "message": "Not Paid", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UC_COMMON_TABLE_COL_AMOUNT", + "message": "Amount Paid[INR]", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UC_COMMON_TABLE_COL_DATE", + "message": "Receipt Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UC_COMMON_TABLE_COL_PAYEE_NAME", + "message": "Consumer Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UC_COMMON_TABLE_COL_RECEIPT_NO", + "message": "Receipt No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UC_COMMON_TABLE_COL_STATUS", + "message": "Status", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UC_DOOR_NO_LABEL", + "message": "Door/House No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UC_DOOR_NO_PLACEHOLDER", + "message": "Enter Door No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UC_ECHALLAN", + "message": "eChallan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UC_EDIT_CHALLAN_HEADER", + "message": "Edit Challan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UC_GENERATE_NEW_CHALLAN", + "message": "Generate new Challan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UC_HOME_SEARCH_RESULTS_DESC", + "message": "Searched Results", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UC_LESS_LABEL", + "message": "Less", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UC_MOBILE_NUMBER", + "message": "Mobile number*", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UC_MOHALLA_LABEL", + "message": "Mohalla ", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UC_MOHALLA_PLACEHOLDER", + "message": "Choose Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UC_MY_CHALLANS", + "message": "My Challans", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UC_OWNER_NAME_LABEL", + "message": "Owner Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UC_PAID", + "message": "Paid", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UC_PINCODE_INVALID", + "message": "Invalid Pincode", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UC_PINCODE_LABEL", + "message": "Pincode", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UC_PINCODE_PLACEHOLDER", + "message": "Enter Pincode", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UC_PRINT_CHALLAN_LABEL", + "message": "Print", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UC_SEARCHANDPAY_LABEL", + "message": "Search And Pay", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UC_SEARCH_AND_PAY", + "message": "Search and Pay", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UC_SEARCH_CHALLAN_LABEL", + "message": "Search Challan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UC_SEARCH_MOBILE_NO_LABEL", + "message": "Mobile Number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UC_SERVICE_TYPE_LABEL", + "message": "Service Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UC_SRT_NAME_LABEL", + "message": "Street Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UC_SRT_NAME_PLACEHOLDER", + "message": "Enter Street Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UC_STREET_NAME_LABEL", + "message": "Street Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UC_STREET_NAME_LABEL:", + "message": "Collection Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UC_UPDATE_CHALLAN", + "message": "Update", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UC_VIEWBILL_DETAILS_HEADER", + "message": "View Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ULB", + "message": "ULB", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ULBGRADE_B", + "message": "MUNICIPAL CORPORATION", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ULBGRADE_B+", + "message": "MUNICIPAL CORPORATION", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ULBGRADE_MC1", + "message": "MUNICIPAL CORPORATION", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ULBGRADE_MC_1", + "message": "MUNICIPAL CORPORATION", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ULBGRADE_MC_CLASS", + "message": "MUNICIPAL COUNCIL", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ULBGRADE_MC_CLASS_I", + "message": "MUNICIPAL COUNCIL", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ULBGRADE_MC_CLASS_II", + "message": "MUNICIPAL CORPORATION", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ULBGRADE_MC_CLASS_III", + "message": "MUNICIPAL CORPORATION", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ULBGRADE_MUNICIPAL_CORPORATION", + "message": "MUNICIPAL CORPORATION", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ULBGRADE_MUNICIPAL_CORPORATION ", + "message": "MUNICIPAL CORPORATION", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ULBGRADE_NAGAR_NIGAM", + "message": "MUNICIPAL CORPORATION", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ULBGRADE_NP", + "message": "NAGAR PANCHAYAT", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ULBGRADE_ST", + "message": "STATE", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ULBREPORT", + "message": "ULB Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ULB_MC_CLASS", + "message": "MUNICIPAL COUNCIL", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ULB_MUNICIPAL_CORPORATION", + "message": "MUNICIPAL CORPORATION", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ULB_MUNICIPAL_CORPORATION ", + "message": "MUNICIPAL CORPORATION", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "ULB_NP", + "message": "NAGAR PANCHAYAT", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UNKNOWN_ERROR", + "message": "Unknown error", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UNSKILLED", + "message": "Unskilled", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UNSKILLED.CHAIN_MAN", + "message": "Unskilled - Chain Man", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UNSKILLED.FEMALE_MULIA", + "message": "Unskilled - Female Mulia", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UNSKILLED.MALE_MULIA", + "message": "Unskilled - Male Mulia", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UNSKILLED.SCAVENGER", + "message": "Unskilled - Scavenger", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UNSKILLED_CHAIN_MAN", + "message": "Unskilled - Chain Man", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UNSKILLED_FEMALE_MULIA", + "message": "Unskilled - Female mulia", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UNSKILLED_MALE_MULIA", + "message": "Unskilled - Male mulia", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UNSKILLED_MULIA", + "message": "Unskilled Mulia", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UNSKILLED_PLUMBER", + "message": "Unskilled Plumber", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UNSKILLED_SCAVENGER", + "message": "Unskilled - Scavanger", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UPDATE_EVENT_LABEL", + "message": "Update Event", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "UPDATE_PUBLIC_MESSAGE", + "message": "Update Public Message", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "USAGECATEGORYMAJOR_REQUIRED ", + "message": "Required", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "VACANT", + "message": "Vacant Land", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "VALIDITY_OF_CHALLAN_IS", + "message": "Validity of challan is", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "VERIFIED", + "message": "Verified", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "VIEW_ON_MAP", + "message": "View on Map", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "VIEW_TEST_DETAILS", + "message": "View Test Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "VIL10_SL010", + "message": "Angaragadia Rameswar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "VIL10_SL011", + "message": "Angargadia DIC Office", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "VIL10_SL012", + "message": "Angargadia Rameswar Nagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "VIL14_SL013", + "message": "Bateswar Sweeper Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "VIL16_SL014", + "message": "Nua Bazar Adi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "VIL18_SL015", + "message": "Arad bazar-3", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "VIL18_SL016", + "message": "Nua Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "VIL18_SL017", + "message": "Aradbazar 2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "VIL18_SL018", + "message": "Arad Bazar-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "VIL19_SL019", + "message": "Bhaskarganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "VIL1_SL001", + "message": "Mahammadpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "VIL1_SL002", + "message": "Kanhu Behera Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "VIL20_SL020", + "message": "Tail basa", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "VIL20_SL021", + "message": "Chudakutasahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "VIL20_SL022", + "message": "Telenga Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "VIL21_SL023", + "message": "Gudipada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "VIL21_SL024", + "message": "Sweeper Colony Bhaskarganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "VIL22_SL025", + "message": "Godhibasa", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "VIL22_SL026", + "message": "Ananda Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "VIL22_SL027", + "message": "Railway Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "VIL23_SL028", + "message": "Bhalia dang", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "VIL23_SL029", + "message": "Chhachina Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "VIL23_SL030", + "message": "Gosalapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "VIL24_SL031", + "message": "Balighat", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "VIL24_SL032", + "message": "Sweeper Colony Olondaz Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "VIL26_SL033", + "message": "Adibasi Sahi Town Hall", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "VIL26_SL034", + "message": "Congress gali baula pokhari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "VIL27_SL035", + "message": "Gopalgaon Tala Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "VIL28_SL036", + "message": "Mirzapokhari Sweeper Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "VIL28_SL037", + "message": "Darzi Pokhari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "VIL29_SL038", + "message": "Mahila College Back side Adibasi Sahi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "VIL2_SL003", + "message": "Munipada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "VIL2_SL004", + "message": "Malik Sahi-1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "VIL2_SL005", + "message": "Malik Sahi-2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "VIL30_SL039", + "message": "Jadav Pur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "VIL31_SL040", + "message": "Lepracy Colony", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "VIL31_SL041", + "message": "Golapolo", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "VIL3_SL006", + "message": "Uchhapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "VIL5_SL007", + "message": "Mansing Bazar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "VIL8_SL008", + "message": "Khaparapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "VIL9_SL009", + "message": "Angaragadia Cold Store", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "W&S", + "message": "Water & Sewerage", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WAGE_SEEKER_SKILL", + "message": "Skill", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WAGE_SEEKER_SKILL_CAT", + "message": "Skill Category", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WARDCOMMITTEEMEETING", + "message": "Ward Committee Meeting", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WARD_IS_REQUIRED", + "message": "Ward is required", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WATER", + "message": "Water", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WATER_APPLICATIONTYPE_DISCONNECT_SEWERAGE_CONNECTION", + "message": "sewerage", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WATER_APPLICATIONTYPE_DISCONNECT_WATER_CONNECTION", + "message": "water", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WATER_BILL_GENERATION", + "message": "Water Bill Generation", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WATER_CONNECTION", + "message": "Water Connection", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WATER_CONNECTION_BILL_GENERATION_MESSAGE", + "message": "Dear {Owner Name},Your{Service} Bill for {Billing Period} has been generated. Please pay the amount due: {bill amount} by due date {Due Date}. Following is the link to your bill: {Link to Bill}", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_ACTION_CANCELLED", + "message": "Action has been cancelled", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_ADD_HOC_CHARGES_POPUP_COMMENT_LABEL", + "message": "Enter Comments", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_AIRPORT_NOC_OFFLINE_AUTO_APPROVE", + "message": "Approve", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_AIRPORT_NOC_OFFLINE_INITIATED", + "message": "Initiated", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_AIRPORT_NOC_OFFLINE_VOID", + "message": "VOID", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_APPROVAL_UPLOAD_HEAD", + "message": "Supporting Documents", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_APPROVAL_UPLOAD_SUBHEAD", + "message": "Only .jpg and .pdf files. 5MB max file size.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_APPROVE_APPLICATION", + "message": "Approve Application", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_ASMT_APPLIED", + "message": "Property Assessment Applied", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_ASSIGNEE_NAME_LABEL", + "message": "Assignee Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_ASSIGNEE_NAME_PLACEHOLDER", + "message": "Select assignee Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_APPROVAL_INPROGRESS", + "message": "Approval In Progress", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_APPROVE", + "message": "APPROVE", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_APPROVED", + "message": "Approved", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_BACK_FROM_DOC_VERIFICATION", + "message": "Back From Document Verification", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_BACK_FROM_FI_VERIFICATION", + "message": "Back From FI Verification", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_BACK_FROM_NOC_VERIFICATION", + "message": "Back From NOC Verification", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_BUILDING_OC_PLAN_SCRUTINY", + "message": "Occupancy Certificate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_BUILDING_PLAN_SCRUTINY", + "message": "Permit Application", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_CANCELLED", + "message": "Cancelled", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_CITIZEN_ACTION_PENDING_AT_DOC_VERIF", + "message": "Citizen Action Pending At Document Verification", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_CITIZEN_ACTION_PENDING_AT_FI_VERIF", + "message": "Citizen Action Pending At FI Verification", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_CITIZEN_ACTION_PENDING_AT_NOC_VERIF", + "message": "Citizen Action Pending At NOC Verification", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_CITIZEN_APPROVAL_INPROCESS", + "message": "Citizen Approval Inprogress", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_CITIZEN_APPROVAL_PENDING", + "message": "Citizen Approval Pending", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_DOC_VERIFICATION_INPROGRESS", + "message": "Document Verification In Progress", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_DOC_VERIFICATION_PENDING", + "message": "Document Verification Pending", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_FIELDINSPECTION_INPROGRESS", + "message": "Field Inspection InProgress", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_FIELDINSPECTION_PENDING", + "message": "Field Inspection Pending", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_FORWARD", + "message": "VERIFY AND FORWARD", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_HIGH", + "message": "High", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_INITIATED", + "message": "Pending for Stakeholders update", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_INPROGRESS", + "message": "Stakeholders’s submission pending", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_LOW", + "message": "Low", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_LOW_APPROVAL_INPROGRESS", + "message": "Approval Inprogess", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_LOW_APPROVED", + "message": "Approved", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_LOW_CITIZEN_APPROVAL_INPROCESS", + "message": "Citizen Approval Inprogress", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_LOW_CITIZEN_APPROVAL_PENDING", + "message": "Citizen Approval Pending", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_LOW_DOC_VERIFICATION_INPROGRESS", + "message": "Document Verification Inprogress", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_LOW_DOC_VERIFICATION_PENDING", + "message": "Document Verification Pending", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_LOW_FIELDINSPECTION_INPROGRESS", + "message": "Field Inspection Inprogress", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_LOW_FIELDINSPECTION_PENDING", + "message": "Field Inspection Pending", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_LOW_FIELDINSPECTION_PENDING1", + "message": "Field Inspection Pending", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_LOW_INITIATED", + "message": "Pending for Stakeholders update", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_LOW_INPROGRESS", + "message": "Stakeholders’s submission pending", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_LOW_NOC_VERIFICATION_INPROGRESS", + "message": "NOC Verification Inprogress", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_LOW_NOC_VERIFICATION_PENDING", + "message": "NOC Verification Pending", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_LOW_PENDINGAPPROVAL", + "message": "Pending Approval", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_LOW_PENDING_FEE", + "message": "Pending Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_LOW_PENDING_FEE_PAYMENT", + "message": "Pending Fee Payment", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_LOW_REVOCATED", + "message": "Revocated", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_MEDIUM", + "message": "Medium", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_NEW_CONSTRUCTION", + "message": "New Construction", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_NOC_VERIFICATION_INPROGRESS", + "message": "NOC Verification Is InProgress", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_NOC_VERIFICATION_PENDING", + "message": "NOC Verification Pending", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_OC_APPROVED", + "message": "Approved", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_OC_BACK_FROM_DOC_VERIFICATION", + "message": "Back From Document Verification", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_OC_BACK_FROM_FI_VERIFICATION", + "message": "Back From FI Verification", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_OC_BACK_FROM_NOC_VERIFICATION", + "message": "Back From NOC Verification", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_OC_CITIZEN_ACTION_PENDING_AT_DOC_VERIF", + "message": "Citizen Action Pending At Document Verification", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_OC_CITIZEN_ACTION_PENDING_AT_FI_VERIF", + "message": "Citizen Action Pending At FI Verification", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_OC_CITIZEN_ACTION_PENDING_AT_NOC_VERIF", + "message": "Citizen Action Pending At NOV Verification", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_OC_CITIZEN_APPROVAL_INPROCESS", + "message": "Citizen Approval Inprogress", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_OC_CITIZEN_APPROVAL_PENDING", + "message": "Citizen Approval Pending", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_OC_DOC_VERIFICATION_INPROGRESS", + "message": "Document Verification In Progress", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_OC_DOC_VERIFICATION_PENDING", + "message": "Document Verification Pending", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_OC_FIELDINSPECTION_INPROGRESS", + "message": "Field Inspection InProgress", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_OC_FIELDINSPECTION_PENDING", + "message": "Field Inspection Pending", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_OC_INITIATED", + "message": "Pending for Stakeholders update", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_OC_INPROGRESS", + "message": "Stakeholders’s submission pending", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_OC_NOC_VERIFICATION_INPROGRESS", + "message": "NOC Verification Is InProgress", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_OC_NOC_VERIFICATION_PENDING", + "message": "NOC Verification Pending", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_OC_PAY", + "message": "PAY", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_OC_PENDINGAPPROVAL", + "message": "Pending For Approval", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_OC_PENDING_APPL_FEE", + "message": "Pending Application Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_OC_PENDING_APPL_FEE_PAYMENT", + "message": "Pending For Application Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_OC_PENDING_FEE", + "message": "Pending Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_OC_PENDING_SANC_FEE_PAYMENT", + "message": "Pending Sanction Fee Payment", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_OC_REJECTED", + "message": "REJECTED", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_OC_SKIP_PAYMENT", + "message": "Skip Payment", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_PAID", + "message": "Paid", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_PENDINGAPPROVAL", + "message": "Pending For Approval", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_PENDINGPAYMENT", + "message": "Pending For Payment", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_PENDING_APPL_FEE", + "message": "Pending Application Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_PENDING_APPL_FEE_PAYMENT", + "message": "Pending For Application Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_PENDING_FEE", + "message": "Pending For Payment", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_PENDING_SANC_FEE_PAYMENT", + "message": "Pending Sanction Fee Payment", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_PERMIT REVOCATION", + "message": "Permit Revocation", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_PERMIT_REVOCATION", + "message": "Permit Revocation", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_REJECT", + "message": "REJECT", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_REJECTED", + "message": "Rejected", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_REVOCATED", + "message": "Revocated", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_SKIP_PAYMENT", + "message": "Skip Payment", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_BPA_SYSTEM", + "message": "System", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_CITIZEN_FIRENOC_APPLY", + "message": "Apply", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_CITIZEN_FIRENOC_PAY", + "message": "Pay", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_CITIZEN_NEWTL_CANCEL", + "message": "CANCEL", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_CITIZEN_PT.MUTATION_PAY", + "message": "PAY", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_COMMON_COMMENTS", + "message": "Comments", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_CONTRACT_ACTION_CREATE_PURCHASE_BILL", + "message": "Create Purchase Bill", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_DEACTIVATE-NEWSW1_INITIATED", + "message": "Initiated", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_DEACTIVATE-NEWWS1 _INITIATED", + "message": "Initiated", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_DIRECTRENEWAL_APPROVED", + "message": "Approved", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_DIRECTRENEWAL_PENDINGPAYMENT", + "message": "Pending Payment", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_EDITRENEWAL_APPLIED", + "message": "Pending for Document verification", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_EDITRENEWAL_APPROVED", + "message": "Approved", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_EDITRENEWAL_CITIZENACTIONREQUIRED", + "message": "Citizen Action Required", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_EDITRENEWAL_FIELDINSPECTION", + "message": "Pending for Field inspection", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_EDITRENEWAL_INITIATED", + "message": "Pending Application", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_EDITRENEWAL_PENDINGAPPROVAL", + "message": "Pending approval", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_EDITRENEWAL_PENDINGPAYMENT", + "message": "Pending for Payment", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_EDITRENEWAL_SENDBACK", + "message": "SEND BACK", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_EDITRENEWAL_SENDBACKTOCITIZEN", + "message": "SEND BACK TO CITIZEN", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_EMPLOYEE_AIRPORT_NOC_OFFLINE_AUTO_APPROVE", + "message": "Approve", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_EMPLOYEE_AIRPORT_NOC_OFFLINE_VOID", + "message": "VOID", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_EMPLOYEE_BPA_LOW_SKIP_PAYMENT", + "message": "SKIP PAYMENT", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_EMPLOYEE_BPA_OC_SKIP_PAYMENT", + "message": "SKIP PAYMENT", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_EMPLOYEE_BPA_SKIP_PAYMENT", + "message": "SKIP PAYMENT", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_EMPLOYEE_DIRECTRENEWAL_APPLY", + "message": "Apply", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_EMPLOYEE_DIRECTRENEWAL_INITIATE", + "message": "Initiate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_EMPLOYEE_EDITRENEWAL_APPLY", + "message": "Apply", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_EMPLOYEE_EDITRENEWAL_INITIATE", + "message": "Initiate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_EMPLOYEE_EDITRENEWAL_RESUBMIT", + "message": "RE-SUBMIT", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_EMPLOYEE_EDITRENEWAL_SENDBACK", + "message": "SEND BACK", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_EMPLOYEE_EDITRENEWAL_SENDBACKTOCITIZEN", + "message": "SEND BACK TO CITIZEN", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_EMPLOYEE_FIRENOC_CANCEL", + "message": "Cancel", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_EMPLOYEE_FIRE_NOC_SRV_VOID", + "message": "Void", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_EMPLOYEE_PT.CREATE_APPROVE", + "message": "APPROVE", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_EMPLOYEE_PT.CREATE_FORWARD", + "message": "FORWARD", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_EMPLOYEE_PT.CREATE_REJECT", + "message": "REJECT", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_EMPLOYEE_PT.CREATE_VERIFY", + "message": "VERIFY", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_EMPLOYEE_PT.UPDATE_FORWARD", + "message": "FORWARD", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_EMPLOYEE_PT.UPDATE_VERIFY", + "message": "VERIFY", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_ESCALATED_SLA", + "message": "SLA Breached", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_FIRENOC_APPROVE", + "message": "Approve", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_FIRENOC_APPROVED", + "message": "Approved", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_FIRENOC_CANCELLED", + "message": "Cancelled", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_FIRENOC_CITIZENACTIONREQUIRED", + "message": "Citizen Action Required", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_FIRENOC_CITIZENACTIONREQUIRED-DV", + "message": "Citizen Action Required", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_FIRENOC_CITIZENACTIONREQUIRED_DV", + "message": "Citizen Action Required", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_FIRENOC_DOCUMENTVERIFY", + "message": "Pending for Document Verification", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_FIRENOC_FIELDINSPECTION", + "message": "Pending for Field Inspection", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_FIRENOC_INITIATED", + "message": "Initiated", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_FIRENOC_PENDINGAPPROVAL", + "message": "Pending for Approval", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_FIRENOC_PENDINGPAYMENT", + "message": "Pending for Payment", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_FIRE_NOC_SRV_INITIATED", + "message": "Initiated", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_FIRE_NOC_SRV_VOID", + "message": "VOID", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_FORWARD_APPLICATION", + "message": "Forward Application", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_FSM_ASSING_DSO", + "message": "Pending for DSO Assignment", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_FSM_CREATED", + "message": "Created", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_FSM_DSO_INPROGRESS", + "message": "DSO InProgress", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_FSM_DSO_REJECTED", + "message": "DSO Rejected", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_FSM_PENDING_APPL_FEE_PAYMENT", + "message": "Pending for Payment", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_FSM_PENDING_DSO_APPROVAL", + "message": "Pending for DSO Approval", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_INBOX_HEADER_APPLICATION_NO", + "message": "Application No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_INBOX_HEADER_ASSIGNED_BY", + "message": "Assigned By", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_INBOX_HEADER_ASSIGNED_TO", + "message": "Assigned To", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_INBOX_HEADER_CURRENT_OWNER", + "message": "Current Owner", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_INBOX_HEADER_LOCALITY", + "message": "Locality", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_INBOX_HEADER_MODULE_SERVICE", + "message": "Module/Service", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_INBOX_HEADER_SLA_DAYS_REMAINING", + "message": "SLA (Days Remaining)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_INBOX_HEADER_STATUS", + "message": "Status", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_INBOX_HEADER_TASK_ID", + "message": "Task ID", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_MODAL_APPROVER", + "message": "Assignee Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_MODAL_CANCEL", + "message": "Cancel", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_MODAL_COMMENTS", + "message": "Comments", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_MODIFYSWCONNECTION_INITIATED", + "message": "Modify Sewerage Connection-Initiated", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_MODIFYSWCONNECTION_PENDING_FOR_APPROVAL", + "message": "Pending For Approval", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_MODIFYWSCONNECTION_INITIATED", + "message": "Modify Water Connection-Initiated", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_MODIFYWSCONNECTION_PENDING_FOR_APPROVAL", + "message": "Pending For Approval", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_MODIFYWSCONNECTION_REJECTED", + "message": "Rejected", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_MUSTOR_SUBMITTED", + "message": "Pending for Verification", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_MY_WORKLIST", + "message": "My Worklist", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_NEWBPA_LOW_INPROGRESS", + "message": "Stakeholders’s submission pending", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_NEWSW1_INITIATED", + "message": "Initiated", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_NEWSW1_PENDING_FOR_CITIZEN_ACTION", + "message": "Pending For Citizen Action", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_NEWSW1_PENDING_FOR_CONNECTION_ACTIVATION", + "message": "Pending For Connection Activation", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_NEWSW1_PENDING_FOR_DOCUMENT_VERIFICATION", + "message": "Pending for Document Verification", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_NEWSW1_PENDING_FOR_PAYMENT", + "message": "Pending For Payment", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_NEWTL_APPLIED", + "message": "Pending for Document verification", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_NEWTL_APPROVED", + "message": "Approved", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_NEWTL_CITIZENACTIONREQUIRED", + "message": "Pending for Citizen Action", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_NEWTL_EDIT", + "message": "Edit", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_NEWTL_FIELDINSPECTION", + "message": "Pending for Field inspection", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_NEWTL_INITIATE", + "message": "Initiate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_NEWTL_INITIATED", + "message": "Initiated", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_NEWTL_PENDINGAPPROVAL", + "message": "Pending For Approval", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_NEWTL_PENDINGPAYMENT", + "message": "Pending payment", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_NEWTL_REJECT", + "message": "Reject", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_NEWTL_REJECTED", + "message": "Rejected", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_NEWTL_RESUBMIT", + "message": "Re-Submit", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_NEWTL_SENDBACK", + "message": "SendBack", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_NEWWS1_INITIATED", + "message": "Initiated", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_NEWWS1_PENDING_APPROVAL_FOR_CONNECTION", + "message": "Pending for Approval", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_NEWWS1_PENDING_FOR_CITIZEN_ACTION", + "message": "Pending For Citizen Action", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_NEWWS1_PENDING_FOR_CONNECTION_ACTIVATION", + "message": "Pending For Connection Activation", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_NEWWS1_PENDING_FOR_DOCUMENT_VERIFICATION", + "message": "Pending for Document Verification", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_NEWWS1_PENDING_FOR_FIELD_INSPECTION", + "message": "Pending for Field inspection", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_NEWWS1_PENDING_FOR_PAYMENT", + "message": "Pending For Payment", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_PGR_CLOSEDAFTERRESOLUTION", + "message": "Close After Resolution", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_PGR_PENDINGATLME", + "message": "Pending at LME", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_PGR_PENDINGATSUPERVISOR", + "message": "Pending at Supervisor", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_PGR_PENDINGFORASSIGNMENT", + "message": "Pending for Assignement", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_PGR_PENDINGFORREASSIGNMENT", + "message": "Pending for Reassignment", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_PGR_REJECTED", + "message": "Rejected", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_PGR_RESOLVED", + "message": "Resolved", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_PT.CREATE_CORRECTIONPENDING", + "message": "Correction Pending", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_PT.CREATE_DOCVERIFIED", + "message": "Pending Field Inspection", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_PT.CREATE_FIELDVERIFIED", + "message": "Pending Approval", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_PT.CREATE_OPEN", + "message": "Open", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_PT.CREATE_PENDINGPAYMENT", + "message": "PT Pending Payment", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_PT.CREATE_VERIFIED", + "message": "Property Verified", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_PT.LEGACY_APPROVALPENDING", + "message": "Pending for Approval", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_PT.MUTATION_APPROVED", + "message": "Approved", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_PT.MUTATION_CORRECTIONPENDING", + "message": "Correction Pending", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_PT.MUTATION_FIELDVERIFIED", + "message": "Pending Payment", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_PT.MUTATION_OPEN", + "message": "Property Mutation Open", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_PT.MUTATION_PAID", + "message": "Pending Approval", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_PT.MUTATION_PENDINGPAYMENT", + "message": "Mutation Pending Payment", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_PT.MUTATION_VERIFIED", + "message": "Mutation Verified", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_PT.UPDATE_APPROVED", + "message": "Approved", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_PT.UPDATE_CORRECTIONPENDING", + "message": "Pending for Citizen Action", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_PT.UPDATE_DOCVERIFIED", + "message": "Pending for Field Verification", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_PT.UPDATE_FIELDVERIFIED", + "message": "Pending for Approval", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_PT.UPDATE_OPEN", + "message": "Open", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_REFER_APPLICATION", + "message": "Refer Application", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_REJECT_APPLICATION", + "message": "Reject Application", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_RESUBMIT_APPLICATION", + "message": "Re-Submit Application", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_SENDBACKTOCITIZEN_APPLICATION", + "message": "SEND BACK TO CITIZEN", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_SENDBACK_APPLICATION", + "message": "Send Back Application", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_SEND_BACK_TO_CITIZEN_APPLICATION", + "message": "Application has Sent Back To Citizen", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_SERVICE_STATE_FIELDVERIFIED", + "message": "Sample Text", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_SERVICE_STATUS_EDIT", + "message": "Sample Text", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_SKIP_PAYMENT_APPLICATION", + "message": "Forward Application", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_TAKE_ACTION", + "message": "TAKE ACTION", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_TOTAL_NEARING_SLA", + "message": "Nearing Escalation", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_TOTAL_OVER_SLA", + "message": "Over SLA", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_TOTAL_TASK", + "message": "Total", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_WORK_ORDER_STATE_ACCEPTED", + "message": "Accepted", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WF_WORK_ORDER_STATE_PENDING_FOR_ACCEPTANCE", + "message": "Approved", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WHAT DATA DO WE COLLECT? / WHAT IS ‘DATA’ UNDER THIS ‘PROGRAM’?", + "message": "We adhere to the principles of accountability, transparency, purposeful and proportional collection, usage, storage and disclosure of personally identifiable information (“PII”).", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WHATSAPP_CHOOSE_CITY", + "message": "Choose City", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WHATSAPP_CHOOSE_LOCALITY", + "message": "Choose locality", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WHATSAPP_CONTINUE_MOBILE", + "message": "CONTINUE WITH WHATSAPP", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WHATSAPP_SCAN_QR_CODE", + "message": "Scan the QR code to file/track complaints", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WHATSAPP_SEARCH_CITY", + "message": "Search City", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WHATSAPP_SEARCH_LOCALITY", + "message": "Search locality", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WHO_RESPONDED", + "message": "Who has Responded", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WIDOW", + "message": "Widow", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WINCH_OPERATOR", + "message": "Winch operator", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WNSCOLLECTIONREGISTERREPORT", + "message": "Collection Register", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WNSDEFAULTERREPORT", + "message": "Defaulter Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WNSRECEIPTREGISTERREPORT", + "message": "Register report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WNS_COMMON_TABLE_COL_AMT_DUE_LABEL", + "message": "Amount Due", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKBENCH_HOME", + "message": "Home", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKFLOW_IN_PROGRESS", + "message": "For the given connection an application is already in progress", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKFLOW_MODAL_UPLOAD_FILES", + "message": "Attach Supporting Documents", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKFLOW_MODAL_UPLOAD_HINT_TEXT", + "message": "Only .jpg and.pdf Files. 5 MB max file size", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS", + "message": "MUKTA", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_ACTIONS", + "message": "Actions", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_ADD_ITEM", + "message": "Add Line Item", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_AMOUNT_ERR", + "message": "Enter amount upto 2 decimals", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_ASSIGNEE_NAME", + "message": "Assignee Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_BUDGET_HEAD", + "message": "Budget Head", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_CANCEL", + "message": "Cancel", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_CITY", + "message": "City", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_CLEAR_SEARCH", + "message": "Clear", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_CLOSURE_REQUESTS", + "message": "Closer Request", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_COMMENT_LENGTH_EXCEEDED_1024", + "message": "Comment character limit exceeded 1024", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_COMMENT_LENGTH_EXCEEDED_512", + "message": "Comment character limit exceeded:512", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_COMMON_APPLY", + "message": "Apply", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_COMMON_FROM_DATE_LABEL", + "message": "From Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_COMMON_SEARCH", + "message": "Search", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_COMMON_TO_DATE_LABEL", + "message": "To Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_COMPLETION_PERIOD", + "message": "Completion Period", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_CONTRACTS", + "message": "Work Orders", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_DASHBOARD", + "message": "Dashboard", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_DATE_PROPOSAL", + "message": "Project sanction date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_DOC_UPLOAD_HINT", + "message": "Only pdf, xls and doc files are allowed. Max File size allowed is 5MB", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_DUE_DATE", + "message": "Due Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_END_DATE", + "message": "Work End Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_ESTIMATED_AMOUNT", + "message": "Estimated Amount (in Rs)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_ESTIMATES", + "message": "Estimates", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_ESTIMATE_TYPE", + "message": "Estimate Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_FILE_UPLOAD_CUSTOM_ERROR_MSG", + "message": "Only pdf, xls, jpeg, and doc files are allowed. Max file size allowed is 5MB", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_FINANCIAL_DETAILS", + "message": "Financial Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_FORWARD", + "message": "Forward", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_FUNCTION", + "message": "Function", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_FUND", + "message": "Fund", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_GEO_LOCATION", + "message": "Geo Location", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_HEAD_OF_ACCOUNTS", + "message": "Head of Accounts", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_INBOX", + "message": "Inbox", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_INFO", + "message": "Info", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_KICKOFF_CHECKLIST", + "message": "Checklist", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_LOCALITY", + "message": "Locality", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_LOCATION_DETAILS", + "message": "Location Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_LOR", + "message": "File Reference Number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_MASTERS", + "message": "Organization", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_MUKTA", + "message": "Home", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_MUSTERROLLS", + "message": "Muster Rolls", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_MY_BILLS", + "message": "My Bills", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_NO_FILE_SELECTED", + "message": "No File Selected", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_ORDER_NO", + "message": "Work order number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_OVERHEAD", + "message": "Overhead", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_PATTERN_ERR", + "message": "One or more entered characters are not allowed", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_PERCENT", + "message": "%", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_PROJECT", + "message": "Projects", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_PROJECT_CLOSURE", + "message": "Project Closure", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_PROJECT_DETAILS", + "message": "Project Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_PROJECT_ID", + "message": "Project ID", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_PROJECT_NAME", + "message": "Project Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_PROJECT_TYPE", + "message": "Project Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_QT_ERR", + "message": "Enter quantity upto 2 decimals", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_RELEVANT_DOCS", + "message": "Relevant Documents", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_RELEVANT_DOCUMENTS", + "message": "Relevant Documents", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_REQUIRED_ERR", + "message": "This field is mandatory", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_SCHEME", + "message": "Scheme", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_SEARCH_ORGANISATION", + "message": "Search Organization", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_SEARCH_PROJECTS", + "message": "Search Projects", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_SEARCH_WAGESEEKERS", + "message": "Search Wage Seeker", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_SNO", + "message": "S.NO", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_START_DATE", + "message": "Work Start Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_SUB_PROJECT_INFO_MSG", + "message": "Please enter details of project breakdown in the sub-projects section", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_SUB_SCHEME", + "message": "Sub Scheme", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_TABLE_TOTAL_AMOUNT", + "message": "Total Amount", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_UPLOAD_DOCS", + "message": "Upload Documents", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_UPLOAD_FILES", + "message": "Upload Files", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_WAGESEEKERS", + "message": "Wage Seekers", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_WARD", + "message": "Ward", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_WMS", + "message": "WMS", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_WORKFLOW_HISTORY", + "message": "Workflow History", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_WORKFLOW_TIMELINE", + "message": "Workflow Timeline", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_WORK_DETAILS", + "message": "Work Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORKS_WORK_NATURE", + "message": "Nature of Work", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORK_ORDER_CONDITIONS_FOR_IMPLEMENTATION_AGENCY", + "message": "Conditions for Implementation Agency (IA)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORK_ORDER_CONDITIONS_FOR_IMPLEMENTATION_PARTNER", + "message": "Conditions for Implementation Partner (IP)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORK_ORDER_CONDITIONS_FOR_NON_COMPLETION", + "message": "Conditions for non-completion", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORK_ORDER_EXECUTION_OF_WORK", + "message": "Execution of work", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORK_ORDER_GENERAL_CONDITIONS", + "message": "General Conditions", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORK_ORDER_INFO", + "message": "Date of acceptance is considered as start date of the project", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORK_ORDER_SIR", + "message": "Sir", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORK_ORDER_SUBJECT", + "message": "Subject", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORK_ORDER_TERMS_AND_CONDITIONS", + "message": "Terms and Conditions", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORK_ORDER_TO", + "message": "To", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WORK_ORDER_YOURS_FAITHFULLY", + "message": "Yours Faithfully", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WP_BPA_APPLIED", + "message": "Applied", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WRR_WORKFLOW_ERROR", + "message": "Workflow returned empty object !", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS-SERVICES-MASTERS_WATERSOURCETYPE_LABEL", + "message": "Water Source", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS-SERVICES-MASTERS_WATERSOURCETYPE_PLACEHOLDER", + "message": "Select Water Source", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS-SERVICES-MASTERS_WATERSUBSOURCE_LABEL", + "message": "Water Sub Source", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS-SERVICES-MASTERS_WATERSUBSOURCE_PLACEHOLDER", + "message": "Select Water Sub Source", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS.ONE_TIME_FEE", + "message": "One Time Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_ADHOC_PENALTY_TOOLTIP", + "message": "To increase in bill amount is treated adhoc penalty.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_ADHOC_REBATE_TOOLTIP", + "message": "To reduce in bill amount is treated adhoc rebate.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_ADVANCE_CARRYFORWARD", + "message": "Advance Carry Forward", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_APPLICATION_MODIFY_CONNECTION_HEADER", + "message": "Modify Water Connection", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_APPLICATION_NEW_CONNECTION_HEADERWS_APPLICATION_NEW_CONNECTION_HEADER", + "message": "Water and Severage Application", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_APPLY_NEW_CONNECTION_HOME_CARD_LABEL", + "message": "Apply for Connection", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_APPLY_SEWERAGE", + "message": "Sewerage", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_APPLY_WATER", + "message": "Water", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_BILL_AMENDMENT_BUTTON", + "message": "Bill Amendment", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_BILL_AMEND_EDIT_APP", + "message": "Bill Amendment Edit Application", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_CHARGE", + "message": "Water Charges", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_CLICK_ON_INFO_LABEL", + "message": "to unmask the field details. Please note that this action will be recorded and stored in our database for security reasons.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_CLICK_ON_LABEL ", + "message": "Click on", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_COMMON_ADDITIONAL_DETAILS_HEADER", + "message": "Additional Details (filled by Municipal Employee)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_COMMON_APPLICATION_DISCONNECTION", + "message": "Application for Disconnection", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_COMMON_CONNECTION_DETAIL", + "message": "Connection Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_COMMON_CONNECTION_DETAILS", + "message": "Connection Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_COMMON_DISCONNECTION_DETAIL", + "message": "Disconnection Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_COMMON_DOCUMENTS_DETAILS", + "message": "Attachments", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_COMMON_DOCUMENT_DETAILS", + "message": "Document Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_COMMON_FROM_DATE_LABEL", + "message": "Date effective from", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_COMMON_INBOX_MODIFYWSCONNECTION", + "message": "Modify Water Connection", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_COMMON_INBOX_NEWWS1", + "message": "New Water Connection", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_COMMON_PAID_LABEL", + "message": "PAID", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_COMMON_PAY_NOW_LABEL", + "message": "PAY NOW", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_COMMON_ROAD_CUTTING_DETAILS", + "message": "Road Cutting Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_COMMON_SUMMARY", + "message": "Summary", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_COMMON_TABLE_COL_ACTION", + "message": "Action", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_COMMON_TABLE_COL_ACTION_LABEL", + "message": "Action", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_COMMON_TABLE_COL_ADDRESS", + "message": "Address", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_COMMON_TABLE_COL_AMT_DUE_LABEL", + "message": "Amount Due", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_COMMON_TABLE_COL_APPLICATION_STATUS", + "message": "Status", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_COMMON_TABLE_COL_APP_NO_LABEL", + "message": "Application No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_COMMON_TABLE_COL_APP_TYPE_LABEL", + "message": "Application Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_COMMON_TABLE_COL_CONSUMER_NO_LABEL", + "message": "Consumer No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_COMMON_TABLE_COL_DUE_DATE_LABEL", + "message": "Due Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_COMMON_TABLE_COL_OWN_NAME_LABEL", + "message": "Owner Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_COMMON_TABLE_COL_SERVICE_LABEL", + "message": "Service", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_COMMON_TABLE_COL_SLA", + "message": "SLA", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_COMMON_TABLE_COL_STATUS_LABEL", + "message": "Connection Status", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_COMMON_TABLE_COL_TASK_OWNER", + "message": "Task Owner", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_COMMON_TO_DATE_LABEL", + "message": "Date effective to", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_CONSUMPTION_DETAILS_ERRO_MSG", + "message": "Current Meter Reading should be equal or greater than Last Meter Reading", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_COURT_ORDER_NO", + "message": "Court Order No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_CURRENT_DEMAND", + "message": "Current Demand", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_DISCONNECTION_DETAILS", + "message": "Disconnection Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_FAQ_ANS_ONE", + "message": "To avail new water or sewerage connection, application can be submitted online through citizen account as well as by visiting to Urban Local Body.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_FAQ_ANS_THREE", + "message": "To know the status of application applicant need to login into account and then go to my application to see the detail and status of application.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_FAQ_ANS_TWO", + "message": "No, It is not at all mandatory to apply for both the connection, applicant can apply for only any one of them also.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_FAQ_QUES_ONE", + "message": "How do I apply for a new water connection?", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_FAQ_QUES_THREE", + "message": "How do I know the status of my application?", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_FAQ_QUES_TWO", + "message": "Is it must to apply for sewerage connection along with water connection?", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_FAQ_S", + "message": "FAQs", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_FEE_ROUND_OFF", + "message": "Fee Round Off", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_FORM_FEE", + "message": "Form Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_GOVTNOTIFICATION", + "message": "Government Notification", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_INBOX_HEADER", + "message": "Inbox", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_INFO_VALIDATION", + "message": "Provide at least one parameter to search for an application", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_LOAD_MORE_MSG", + "message": "Load More?", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_METER_CHARGE", + "message": "Meter Charge", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_MODIFICATIONS_EFFECTIVE_DATE", + "message": "Modification Effective Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_MODIFY_CONNECTION_BUTTON", + "message": "Modify Connection", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_MODIFY_SEWERAGE_CONNECTION", + "message": "Modify Sewerage Connection", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_MODIFY_WATER_CONNECTION", + "message": "Modify Water Connection", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_NA", + "message": "NA", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_NEW_SEWERAGE_CONNECTION", + "message": "New Sewerage Connection", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_NEW_WATER_CONNECTION", + "message": "New Water Connection", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_NO_APP_FOUND_MSG", + "message": "No connections found", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_OFFICENOTEORDER", + "message": "Office note order", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_ONE_TIME_FEE", + "message": "One Time Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_OTHER_CHARGE", + "message": "Other Charge", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_OWNER.ADDRESSPROOF.ELECTRICITYBILL", + "message": "Address Proof Electricity Bill", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_OWNER.IDENTITYPROOF.VOTERID", + "message": "Identity Proof Voter ID", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_PENALTY_HEAD", + "message": "Additional Amount", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_PLUMBER_SELF", + "message": "Self", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_PROPERTY_ID", + "message": "Property ID", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_REBATE_HEAD", + "message": "Reduced Amount", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_REBATE_PENALTY", + "message": "Adhoc Rebate/Penalty", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_REVISED_DEMAND", + "message": "Revised Demand", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_ROAD_CUTTING_CHARGE", + "message": "Road Cutting Charge", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_ROAD_CUTTING_CHARGE_DETAILS", + "message": "Road Cutting Charges", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_Round_Off", + "message": "Round Off", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_SCRUTINY_FEE", + "message": "Scrutiny Fee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_SECURITY_CHARGE", + "message": "Security Charge", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_SERVICES_MASTERS_ WATERSOURCE_BULKSUPPLY", + "message": "Bulk Supply", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_SERVICES_MASTERS_WATERSOURCE_", + "message": "NA", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_SERVICES_MASTERS_WATERSOURCE_BULKSUPPLY", + "message": "BULKSUPPLY", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_SERVICES_MASTERS_WATERSOURCE_BULKSUPPLY_RAW", + "message": "RAW", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_SERVICES_MASTERS_WATERSOURCE_BULKSUPPLY_TREATED", + "message": "TREATED", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_SERVICES_MASTERS_WATERSOURCE_GROUND", + "message": "Ground", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_SERVICES_MASTERS_WATERSOURCE_GROUND_BOREWELL", + "message": "BOREWELL", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_SERVICES_MASTERS_WATERSOURCE_GROUND_HANDPUMP", + "message": "HANDPUMP", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_SERVICES_MASTERS_WATERSOURCE_GROUND_WELL", + "message": "WELL", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_SERVICES_MASTERS_WATERSOURCE_METERED", + "message": "Metered", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_SERVICES_MASTERS_WATERSOURCE_NON_METERED", + "message": "Non Metered", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_SERVICES_MASTERS_WATERSOURCE_SURFACE", + "message": "Surface", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_SERVICES_MASTERS_WATERSOURCE_SURFACE_CANAL", + "message": "CANAL", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_SERVICES_MASTERS_WATERSOURCE_SURFACE_LAKE", + "message": "LAKE", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_SERVICES_MASTERS_WATERSOURCE_SURFACE_POND", + "message": "POND", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_SERVICES_MASTERS_WATERSOURCE_SURFACE_RAINWATER", + "message": "RAINWATER", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_SERVICES_MASTERS_WATERSOURCE_SURFACE_RECYCLEDWATER", + "message": "RECYCLEDWATER", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_SERVICES_MASTERS_WATERSOURCE_SURFACE_RIVER", + "message": "RIVER", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_SERVICE_SEWERAGE", + "message": "SEWERAGE", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_SERVICE_TYPE_undefined", + "message": "Water", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_SERVICE_WATER", + "message": "WATER", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_SERV_DETAIL_PIPE_SIZE", + "message": "Proposed Pipe Size", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_SERV_DETAIL_UNIT_OF_MEASUREMENT", + "message": "Unit of Measurement", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_SEWERAGE_APPLICATION_SEARCH", + "message": "Search Application", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_SEWERAGE_CONNECTION_SEARCH_LABEL", + "message": "Search Connection", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_SEWERAGE_INBOX", + "message": "Inbox", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_SUPPORTINGDOCUMENT", + "message": "Supporting Document", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_TASK_DETAILS_CONN_DETAIL_NO_OF_TAPS_PROPOSED", + "message": "Proposed No. Of taps", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_TAX_AND_CESS", + "message": "Tax and Cess", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_TAX_HEADER", + "message": "Tax", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_TIME_INTEREST", + "message": "Interest", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_TIME_PENALTY", + "message": "Penalty", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_TOTAL_DUE", + "message": "Total Due Amount", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_VIEW_PROPERTY_DETAILS", + "message": "View Property Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_WATER_APPLICATION_SEARCH", + "message": "Search Application", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_WATER_CESS", + "message": "Water Cess", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_WATER_CONNECTION_SEARCH_LABEL", + "message": "Search Connection", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "WS_WATER_INBOX", + "message": "Inbox", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "abc", + "message": "abc", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "abc123", + "message": "abc123", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "murali-testing-key", + "message": "murali-testing-key", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "murali-testing-key1", + "message": "murali-testing-key1", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "murali-testing-key2", + "message": "murali-testing-key2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "murali-testing-key3", + "message": "murali-testing-key3", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od", + "message": "Odisha", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.anandapur", + "message": "Anandapur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.angul", + "message": "Angul", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.aska", + "message": "Aska", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.athagarh", + "message": "Athagarh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.athmallik", + "message": "Athmallik", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.attabira", + "message": "Attabira", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.balangir", + "message": "Balangir", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.balasore", + "message": "Balasore", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.balimela", + "message": "Balimela", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.balliguda", + "message": "Balliguda ", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.balugaon", + "message": "Balugaon", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.banki", + "message": "Banki", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.banpur", + "message": "Banpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.barbil", + "message": "Barbil", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.bargarh", + "message": "Bargarh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.baripada", + "message": "Baripada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.barpali", + "message": "Barpali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.basudevpur", + "message": "Basudevpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.bellaguntha", + "message": "Bellaguntha", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.belpahar", + "message": "Belpahar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.berhampur", + "message": "Berhampur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.berhampurdevelopmentauthority", + "message": "Berhampur Development Authority", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.bhadrak", + "message": "Bhadrak", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.bhanjanagar", + "message": "Bhanjanagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.bhawanipatna", + "message": "Bhawanipatna", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.bhuban", + "message": "Bhuban", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.bhubaneswar", + "message": "Bhubaneswar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.bhubaneswardevelopmentauthority", + "message": "Bhubaneswar Development Authority", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.bijepur", + "message": "Bijepur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.binka", + "message": "Binka", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.birmitrapur", + "message": "Birmitrapur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.boudhgarh", + "message": "Boudhgarh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.brajrajnagar", + "message": "Brajrajnagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.buguda", + "message": "Buguda", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.champua", + "message": "Champua", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.chandbali", + "message": "Chandbali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.chatrapur", + "message": "Chatrapur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.chikiti", + "message": "Chikiti", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.choudwar", + "message": "Choudwar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.cuttack", + "message": "Cuttack", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.cuttackdevelopmentauthority", + "message": "Cuttack Development Authority", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.daspalla", + "message": "Daspalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.deogarh", + "message": "Deogarh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.dhamnagar", + "message": "Dhamnagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.dharamgarh", + "message": "Dharamgarh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.dhenkanal", + "message": "Dhenkanal", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.digapahandi", + "message": "Digapahandi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.ganjam", + "message": "Ganjam", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.gopalpur", + "message": "Gopalpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.gudari", + "message": "Gudari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.gudayagiri", + "message": "G. Udayagiri", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.gunupur", + "message": "Gunupur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.hindol", + "message": "Hindol", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.hinjilicut", + "message": "Hinjilicut", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.jagatsinghpur", + "message": "Jagatsinghpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.jajpur", + "message": "Jajpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.jaleswar", + "message": "Jaleswar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.jatni", + "message": "Jatni", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.jeypore", + "message": "Jeypore", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.jharsuguda", + "message": "Jharsuguda", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.joda", + "message": "Joda", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.junagarh", + "message": "Junagarh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.kabisuryanagar", + "message": "Kabisuryanagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.kalinganagardevelopmentauthority", + "message": "Kalinga Nagar Development Authority", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.kamakhyanagar", + "message": "Kamakhyanagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.kantabanji", + "message": "Kantabanji", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.karanjia", + "message": "Karanjia", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.kashinagar", + "message": "Kashinagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.kendrapara", + "message": "Kendrapara", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.keonjhargarh", + "message": "Keonjhargarh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.kesinga", + "message": "Kesinga", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.khallikote", + "message": "Khallikote", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.khandapada", + "message": "Khandapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.khariar", + "message": "Khariar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.khariarroad", + "message": "Khariar Road", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.khordha", + "message": "Khordha", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.kodala", + "message": "Kodala", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.konark", + "message": "Konark", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.koraput", + "message": "Koraput", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.kotpad", + "message": "Kotpad", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.kuchinda", + "message": "Kuchinda", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.malkangiri", + "message": "Malkangiri", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.nabarangpur", + "message": "Nabarangpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.nayagarh", + "message": "Nayagarh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.nilgiri", + "message": "Nilgiri", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.nimapara", + "message": "Nimapara", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.nuapada", + "message": "Nuapada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.odagaon", + "message": "Odagaon", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.padampur", + "message": "Padampur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.paradeep", + "message": "Paradeep", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.paradipdevelopmentauthority", + "message": "Paradip Development Authority", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.paralakhemundi", + "message": "Paralakhemundi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.patnagarh", + "message": "Patnagarh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.pattamundai", + "message": "Pattamundai", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.phulbani", + "message": "Phulbani", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.pipli", + "message": "Pipli", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.polasara", + "message": "Polasara", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.puri", + "message": "Puri", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.purikonarkdevelopmentauthority", + "message": "Puri Konark Development Authority", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.purushottampur", + "message": "Purushottampur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.rairangpur", + "message": "Rairangpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.rajgangpur", + "message": "Rajgangpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.rambha", + "message": "Rambha", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.ranpur", + "message": "Ranpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.rayagada", + "message": "Rayagada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.redhakhol", + "message": "Redhakhol", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.rourkela", + "message": "Rourkela", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.rourkeladevelopmentauthority", + "message": "Rourkela Development Authority", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.sambalpur", + "message": "Sambalpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.sambalpurdevelopmentauthority", + "message": "Sambalpur Development Authority", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.sonepur", + "message": "Sonepur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.soro", + "message": "Soro", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.sunabeda", + "message": "Sunabeda", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.sundargarh", + "message": "Sundargarh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.surada", + "message": "Surada", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.talcher", + "message": "Talcher", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.talcherangulmeramandalidevelopmentauthority", + "message": "Talcher Angul Meramandali Development Authority", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.tarbha", + "message": "Tarbha", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.testing", + "message": "testing", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.titilagarh", + "message": "Titilagarh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.tusura", + "message": "Tusura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.udala", + "message": "Udala", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.umerkote", + "message": "Umerkote", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "od.vyasanagar", + "message": "Vyasanagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "paymentinstrument", + "message": "Payment Instrument", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "pb", + "message": "Punjab", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "pb.amritsar", + "message": "Amritsar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "pb.derabassi", + "message": "Derabassi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "pb.jalandhar", + "message": "Jalandhar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "pb.nawanshahr", + "message": "Nawanshahr", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "pb.nayagaon", + "message": "Nayagaon", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "pb.phagwara", + "message": "Phagwara", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "pdf.static.label.consolidated.receipt.consumer_id", + "message": "Consumer ID", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "pdf.static.label.consolidated.receipt.logo.header", + "message": "Amritsar Muncipal Corporation", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "pdf.static.label.consolidated.receipt.payer_contact", + "message": "dummy2", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "pdf.static.label.consolidated.receipt.payer_name", + "message": "dummy3", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "pdf.static.label.consolidated.receipt.payment_date", + "message": "dummy4", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "pdf.static.label.consolidated.receipt.payment_receipt", + "message": "Payment Receipt", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "pdf.static.label.consolidated.receipt.receipt_no", + "message": "Receipt No", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "pg.balasore", + "message": "Balasore", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "pg.cityA", + "message": "City A", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "pg.cityB", + "message": "City B", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "pg.cityC", + "message": "City C", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "pg.citya", + "message": "City A", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "pg.cityb", + "message": "City B", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "pg.cityc", + "message": "City C", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "pg.cityd", + "message": "City D", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "pg.citye", + "message": "City E", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "pg.diredawa", + "message": "City H", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "receiptstatus", + "message": "Receipt Status", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "report.obps.applicationnumber", + "message": "Application No..", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "report.obps.applicationtype", + "message": "Application Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "report.obps.bankname", + "message": "Bank Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "report.obps.chequedate", + "message": "Cheque/DD Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "report.obps.chequeno", + "message": "Cheque/DD no.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "report.obps.instrumentstatus", + "message": "Instrumenr Status", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "report.obps.instrumenttype", + "message": "Instrument Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "report.obps.lastfourdigits", + "message": "Last 4 digits of card", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "report.obps.name", + "message": "Applicant Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "report.obps.receiptdate", + "message": "Receipt Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "report.obps.receiptnumber", + "message": "Receipt No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "report.obps.totalamountpaid", + "message": "Amount (Rs)", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "report.obps.transactionid", + "message": "Transaction ID", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "report.tl.applicationchannel", + "message": "Application Channel", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "report.tl.commencementdate", + "message": "Trade Commencement date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "report.tl.currentstatus", + "message": "Current Status", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "report.tl.financialyear", + "message": "License year", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "report.tl.instrumentstatus", + "message": "Status", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "report.tl.issueddate", + "message": "License issued date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "report.tl.licenseexpirydate", + "message": "License Expirydate", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "report.tl.locality", + "message": "Locality", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "report.tl.name", + "message": "Trade Owner Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "report.tl.structuretype", + "message": "Structure type/subtype", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "report.tl.tradeaddress", + "message": "Trade Address", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "report.tl.tradename", + "message": "Trade name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "report.tl.tradesubtype", + "message": "Trade SubType", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "report.tl.tradetype", + "message": "Trade Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "report.tl.tradetypesubtype", + "message": "Trade Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "report.wns.chequeno", + "message": "Cheque/DD no", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "report.wns.consumercode", + "message": "Consumer Number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "report.wns.locality", + "message": "Locality", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "report.wns.name", + "message": "Collector Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "report.wns.payername", + "message": "Payer Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "report.wns.paymentmode", + "message": "Payment Instrument", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "report.wns.receiptdate", + "message": "Receipt Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "report.wns.receiptnumber", + "message": "Receipt No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "report.wns.service", + "message": "Service", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "report.wns.totalamountpaid", + "message": "Amount Collected", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "report.wns.totaldue", + "message": "Due Amount", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "report.wns.totaltransactions", + "message": "Total Transactions", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "report.wns.transactionnumber", + "message": "Transaction No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports-tl-instrumenttype", + "message": "Instrument type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports-tl-instrumenttype_PLACE", + "message": "Instrument type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports-wns-serviceName", + "message": "Service Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports-wns-serviceName_PLACE", + "message": "Service Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.Block.label", + "message": "Block", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.Locality.label", + "message": "Locality", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.Zone.label", + "message": "Zone", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.common.CollectionRegister.card", + "message": "Card", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.common.CollectionRegister.cash", + "message": "Cash", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.common.CollectionRegister.channel", + "message": "Collection Channel", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.common.CollectionRegister.cheque", + "message": "Cheque", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.common.CollectionRegister.dd", + "message": "DD", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.common.CollectionRegister.fromdate", + "message": "From Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.common.CollectionRegister.mode", + "message": "Payment Mode", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.common.CollectionRegister.noofreceipts", + "message": "No of receipts", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.common.CollectionRegister.online", + "message": "Online", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.common.CollectionRegister.service", + "message": "Service Category", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.common.CollectionRegister.service.ulb", + "message": "ULB", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.common.CollectionRegister.serviceResult", + "message": "Service", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.common.CollectionRegister.taxcollector", + "message": "Tax Collector Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.common.CollectionRegister.todate", + "message": "To Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.common.CollectionRegister.total", + "message": "Total", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.common.CollectionRegister.transactions", + "message": "No of Transactions", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.common.CollectionRegister.ulb", + "message": "ULB", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.mcollect.amountcollected", + "message": "Amount Collected", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.mcollect.challannumber", + "message": "Challan No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.mcollect.chequeNo", + "message": "Cheque/DD No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.mcollect.collectorname", + "message": "Collection Agent Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.mcollect.consumername", + "message": "Consumer Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.mcollect.fromDate", + "message": "From Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.mcollect.locality", + "message": "Locality / Mohalla", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.mcollect.payername", + "message": "Payer name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.mcollect.paymentType", + "message": "Payment Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.mcollect.paymentinstrument", + "message": "Payment Instrument", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.mcollect.receiptdate", + "message": "Receipt Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.mcollect.receiptnumber", + "message": "Receipt No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.mcollect.receiptstatus", + "message": "Receipt Status", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.mcollect.service", + "message": "Service Category", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.mcollect.servicedetails", + "message": "Service Details", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.mcollect.status", + "message": "Challan Status", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.mcollect.toDate", + "message": "To Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.mcollect.totalamount", + "message": "Total Amount", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.mcollect.totalchallans", + "message": "Total Challans", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.mcollect.totaltransaction", + "message": "Total Transactions", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.mcollect.transactionnumber", + "message": "Transaction No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.noc.applicationstatusreport.appStatus", + "message": "Application Status ", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.noc.applicationstatusreport.fromDate", + "message": "From Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.noc.applicationstatusreport.noofapplications", + "message": "Number of Applications", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.noc.applicationstatusreport.toDate", + "message": "To Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.noc.applicationstatusreport.ulb", + "message": "ULB", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.noc.channelsreport.applicationNo", + "message": "Number of Applications", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.noc.channelsreport.channel", + "message": "Channels Report", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.noc.channelsreport.fromDate", + "message": "From Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.noc.channelsreport.percentage", + "message": "Percentage of Application", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.noc.channelsreport.toDate", + "message": "To Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.noc.channelsreport.ulb", + "message": "ULB", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.noc.collectionreport.channel", + "message": "Collection Channel", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.noc.collectionreport.fees_counter", + "message": "Fee Collected counter", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.noc.collectionreport.fees_online", + "message": "Fee Collected online", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.noc.collectionreport.fromDate", + "message": "From Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.noc.collectionreport.paymentMode", + "message": "Payment Mode", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.noc.collectionreport.toDate", + "message": "To Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.noc.collectionreport.transactionNumber", + "message": "Total Transaction", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.noc.collectionreport.ulb", + "message": "ULB", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.noc.collectionreport.usagetype", + "message": "Building Usage Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.obps.applicationchannel", + "message": "Application Channel", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.obps.applicationdate", + "message": "Application Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.obps.applicationno", + "message": "Application No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.obps.applicationtype", + "message": "Application Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.obps.currentowner", + "message": "Current Owner", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.obps.name", + "message": "Applicant Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.obps.occupancytype", + "message": "Occupancy Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.obps.permitno", + "message": "Permit / OC number", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.obps.servicetype", + "message": "Service Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.obps.status", + "message": "Application Status", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.pgr.datefrom", + "message": "From Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.pgr.dateto", + "message": "To Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.pgr.dept.name", + "message": "Department", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.pgr.status", + "message": "Nature of complaint", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.pt.amountCollected", + "message": "Amount Collected", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.pt.chequeNo", + "message": "Cheque/DD No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.pt.collectorname", + "message": "Collector Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.pt.consumername", + "message": "Consumer Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.pt.dueamount", + "message": "Due Amount", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.pt.fromDate", + "message": "From Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.pt.locality", + "message": "Locality", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.pt.payerName", + "message": "Payer Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.pt.paymentdate", + "message": "Receipt Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.pt.paymentinstrument", + "message": "Payment Instrument", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.pt.paymentmode", + "message": "Payment Instrument", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.pt.propertyid", + "message": "Property UID", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.pt.propertystatus", + "message": "Property Status", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.pt.receiptnumber", + "message": "Receipt No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.pt.receiptstatus", + "message": "Receipt Status", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.pt.toDate", + "message": "To Date", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.pt.totaltransactions", + "message": "Total Transactions", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.pt.transactionnumber", + "message": "Transaction No.", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.pt.usagetype", + "message": "Usage Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.tl.applicationchannel", + "message": "Application Channel", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.tl.applicationstatus", + "message": "Application Status", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.tl.applicationtype", + "message": "Application Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.tl.instrumentstatus", + "message": "Status", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.tl.workflowstatus", + "message": "Application Status", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.wns.CollectionOperator", + "message": "Collection Operator", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.wns.connectionType", + "message": "Connection Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.wns.connectionType_PLACE", + "message": "Connection Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.wns.locality", + "message": "Locality", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.wns.locality_PLACE", + "message": "Locality", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.wns.paymentmode", + "message": "Payment Mode", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.wns.paymentmode_PLACE", + "message": "Payment Mode", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.wns.receiptStatus", + "message": "Receipt Status", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.wns.receiptStatus_PLACE", + "message": "Receipt Status", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.wns.serviceName", + "message": "Service Name", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.wns.totaltransactions", + "message": "Total Transactions", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.wns.usageType", + "message": "Usage Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "reports.wns.usageType_PLACE", + "message": "Usage Type", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "statea.cityone", + "message": "City one", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "statea.citythree", + "message": "City three", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "statea.citytwo", + "message": "City two", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "test.s.emoji", + "message": "Pending for Assignment 🏠", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "testlocall", + "message": "yoyoyoyo", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.almora", + "message": "Almora", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.augustmuni", + "message": "Augustmuni", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.badrinath", + "message": "Badrinath", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.bageshwar", + "message": "Bageshwar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.banbasa", + "message": "Banbasa", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.barkot", + "message": "Barkot", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.bazpur", + "message": "Bazpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.berinag", + "message": "Berinag", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.bhagwanpur", + "message": "Bhagwanpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.bhikiyasain", + "message": "Bhikiyasain", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.bhimtal", + "message": "Bhimtal", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.bhowali", + "message": "Bhowali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.chamba", + "message": "Chamba", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.chamiyala", + "message": "Chamiyala", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.chamoligopeshwar", + "message": "Chamoli Gopeshwar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.champawat", + "message": "Champawat", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.chinyalisaur", + "message": "Chinyalisaur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.dehradun", + "message": "Dehradun", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.devaprayag", + "message": "Devaprayag", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.dharchula", + "message": "Dharchula ", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.didihat", + "message": "Didihat", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.dineshpur", + "message": "Dineshpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.doiwala", + "message": "Doiwala", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.dugadda", + "message": "Dugadda", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.dwarahat", + "message": "Dwarahat", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.gadarpur", + "message": "Gadarpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.gairsain", + "message": "Gairsain", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.gaja", + "message": "Gaja", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.gangolihat", + "message": "Gangolihat", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.gangotri", + "message": "Gangotri", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.gauchar", + "message": "Gauchar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.ghansali", + "message": "Ghansali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.gularbhoj", + "message": "Gularbhoj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.haldwani", + "message": "Haldwani", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.haridwar", + "message": "Haridwar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.herbertpur", + "message": "Herbertpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.jaspur", + "message": "Jaspur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.jhabrera", + "message": "Jhabrera", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.joshimath", + "message": "Joshimath", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.kaladhungi", + "message": "Kaladhungi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.kapkot", + "message": "Kapkot", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.karnaprayag", + "message": "Karnaprayag", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.kashipur", + "message": "Kashipur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.kedarnath", + "message": "Kedarnath", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.khatima", + "message": "Khatima", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.kichha", + "message": "Kichha", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.kirtinagar", + "message": "Kirtinagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.kotdwar", + "message": "Kotdwar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.laksar", + "message": "Laksar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.lalkuan", + "message": "lalkuan", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.lambgaon", + "message": "Lambgaon", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.landhaura", + "message": "Landhaura", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.lohaghat", + "message": "Lohaghat", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.mahuakheraganj", + "message": "Mahua Kheraganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.mahuwadawara", + "message": "Mahuwadawara", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.manglaur", + "message": "manglaur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.munikireti", + "message": "Munikireti", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.mussorie", + "message": "Mussorie", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.nainital", + "message": "Nainital", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.nanakmatta", + "message": "Nanakmatta", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.nandprayag", + "message": "Nandprayag", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.narendranagar", + "message": "Narendranagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.naugaon", + "message": "Naugaon", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.pauri", + "message": "Pauri", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.pipalkoti", + "message": "PIPALKOTI", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.pirankaliyar", + "message": "Piran kaliyar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.pithoragarh", + "message": "Pithoragarh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.pokhari", + "message": "Pokhari", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.purola", + "message": "Purola", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.ramnagar", + "message": "Ramnagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.rishikesh", + "message": "Rishikesh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.roorkee", + "message": "Roorkee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.rudraprayag", + "message": "Rudraprayag", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.rudrapur", + "message": "Rudrapur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.satpuli", + "message": "Satpuli", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.shaktigarh", + "message": "Shaktigarh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.sitarganj", + "message": "Sitarganj", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.srinagar", + "message": "Srinagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.sultanpur", + "message": "Sultanpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.swargashramjonk", + "message": "swargashram jonk", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.tanakpur", + "message": "Tanakpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.tehri", + "message": "Tehri", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.testing", + "message": "Testing", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.tharali", + "message": "Tharali", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.tilwara", + "message": "Tilwara", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.ukhimath", + "message": "Ukhimath", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.uttarkashi", + "message": "Uttarkashi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.uttarkhand", + "message": "Uttarkhand", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "uk.vikasnagar", + "message": "Vikasnagar", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "up.agra", + "message": "Agra", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "up.aligarh", + "message": "Aligarh", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "up.fatehpur", + "message": "Fatehpur", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "up.ghaziabad", + "message": "Ghaziabad", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "up.lucknow", + "message": "Lucknow", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "up.varanasi", + "message": "Varanasi", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "v3", + "message": "Employee", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "प्रोफ़ाइल संपादित करें", + "message": "EDIT_PROFILE", + "module": "rainmaker-common", + "locale": "en_IN" + }, + { + "code": "प्रोफ़ाइल संपादित करें ", + "message": "Edit Profile", + "module": "rainmaker-common", + "locale": "en_IN" + } +] \ No newline at end of file diff --git a/utilities/default-data-handler/src/main/resources/localisations-dev/en_IN/rainmaker-hr.json b/utilities/default-data-handler/src/main/resources/localisations-dev/en_IN/rainmaker-hr.json new file mode 100644 index 00000000..9b5f7a5e --- /dev/null +++ b/utilities/default-data-handler/src/main/resources/localisations-dev/en_IN/rainmaker-hr.json @@ -0,0 +1,2072 @@ +[ + { + "code": "ACCESSCONTROL_ROLES_ROLES_LOC_ADMIN", + "message": "Localization Admin", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_MDMS_ADMIN", + "message": "Workbench MDMS Admin", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_PGR_VIEWER", + "message": "Complaints Viewer", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_PT_CEMP", + "message": "Property Tax Counter Employee", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_REINDEXING_ROLE", + "message": "Reindexing Role", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_SW_APPROVER", + "message": "SW Approver", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_SW_CEMP", + "message": "SW Counter Employee", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_SW_CLERK", + "message": "SW Clerk", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_SW_DOC_VERIFIER", + "message": "SW Doc Verifier", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_SW_FIELD_INSPECTOR", + "message": "SW Field Inspector", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_TICKET_REPORT_VIEWER", + "message": "Reports Viewer", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_WORKFLOW_ADMIN", + "message": "Workflow Admin", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_WS_APPROVER", + "message": "WS Approver", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_WS_CEMP", + "message": "WS Counter Employee", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_WS_CLERK", + "message": "WS Clerk", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_WS_DOC_VERIFIER", + "message": "WS Doc Verifier", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_WS_FIELD_INSPECTOR", + "message": "WS Field Inspector", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ACTIVATE EMPLOYEE", + "message": "Activate Employee", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ADMIN", + "message": "Admin", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "COMMON_GENDER_NONBINARY", + "message": "Non Binary", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "COMMON_GENDER_PREFERNOTTODISCLOSE", + "message": "Prefer not to disclose", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DEPARTMENT_ACC", + "message": "Accounts", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DEPARTMENT_ADM", + "message": "Administration", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DEPARTMENT_NULM", + "message": "National Urban Livelihood Mission", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DEPARTMENT_PHS", + "message": "Public Health and Sanitation", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DEPARTMENT_PR", + "message": "Public Relations", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DEPARTMENT_REV", + "message": "Tax", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DEPARTMENT_TWP", + "message": "Town Planning", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DEPARTMENT_WRK", + "message": "Works", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "COMMON_RELATION_FATHER", + "message": "FATHER", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "COMMON_RELATION_HUSHBAND", + "message": "HUSHBAND", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "CONTRACT", + "message": "Contract", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_SUB_COMPLAINT_TYPE", + "message": "Complaint Sub-Type", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_LOCALITY", + "message": "Locality", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_SELECT_CITY", + "message": "City", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "DAILYWAGES", + "message": "Dailywages", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "DEPUTATION", + "message": "Deputation", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "EGOV_HRMS_DEACTIVATIONREASON_ORDERBYCOMMISSIONER", + "message": "Order by Commissioner", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "EGOV_HRMS_DEACTIVATIONREASON_OTHERS", + "message": "Others", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "EGOV_HRMS_DEGREE_10+2_EQUIVALENTDIPLOMA", + "message": "10+2/EQUIVALENTDIPLOMA", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "EGOV_HRMS_DEGREE_B_A_B_SC__B_COM_BBA", + "message": "B.A/B.SC./B.COM/BBA", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "EGOV_HRMS_DEGREE_B_E_B_TECH_", + "message": "B.E/B.TECH.", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "EGOV_HRMS_DEGREE_DOCTORATE", + "message": "DOCTORATE", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "EGOV_HRMS_DEGREE_LLB_LLM", + "message": "LLB/LLM", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "EGOV_HRMS_DEGREE_MATRICULATION", + "message": "MATRICULATION", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "EGOV_HRMS_DEGREE_MBA_PGDM", + "message": "MBA/PGDM", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "EGOV_HRMS_DEGREE_M_A_M_COM__M_SC_", + "message": "M.A/M.COM./M.SC.", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "EGOV_HRMS_DEGREE_M_E_M_TECH_", + "message": "M.E/M.TECH.", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "EGOV_HRMS_DEGREE_OTHER", + "message": "OTHER", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "EGOV_HRMS_EMPLOYEESTATUS_DECEASED", + "message": "DECEASED", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "EGOV_HRMS_EMPLOYEESTATUS_EMPLOYED", + "message": "EMPLOYED", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "EGOV_HRMS_EMPLOYEESTATUS_RESIGNED", + "message": "RESIGNED", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "EGOV_HRMS_EMPLOYEESTATUS_RETIRED", + "message": "RETIRED", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "EGOV_HRMS_EMPLOYEESTATUS_SUSPENDED", + "message": "SUSPENDED", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "EGOV_HRMS_EMPLOYEESTATUS_TERMINATED", + "message": "TERMINATED", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "EGOV_HRMS_EMPLOYEESTATUS_TRANSFERRED", + "message": "TRANSFERRED", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "EGOV_HRMS_EMPLOYEETYPE_CONTRACT", + "message": "CONTRACT", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "EGOV_HRMS_EMPLOYEETYPE_DAILYWAGES", + "message": "DAILYWAGES", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "EGOV_HRMS_EMPLOYEETYPE_DEPUTATION", + "message": "DEPUTATION", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "EGOV_HRMS_EMPLOYEETYPE_PERMANENT", + "message": "PERMANENT", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "EGOV_HRMS_EMPLOYEETYPE_TEMPORARY", + "message": "TEMPORARY", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "EGOV_HRMS_EMPLOYMENTTEST_APTITUDETEST", + "message": "APTITUDE TEST", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "EGOV_HRMS_EMPLOYMENTTEST_MAINS", + "message": "MAINS", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "EGOV_HRMS_EMPLOYMENTTEST_PRELIMS", + "message": "PRELIMS", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "EGOV_HRMS_SPECALIZATION_ARTS", + "message": "Arts", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "EGOV_HRMS_SPECALIZATION_SCIENCE", + "message": "Science", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_RESPONSE_ACTIVATION_ACTION", + "message": "Employee Reactivated Successfully", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_RESPONSE_CREATE_ACTION", + "message": "Employee Created Successfully", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_RESPONSE_CREATE_ACTION_ERROR", + "message": "Employee Creation Failed", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_RESPONSE_CREATE_LABEL", + "message": "Employee ID", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_RESPONSE_DEACTIVATION_ACTION", + "message": "Employee Deactivated Successfully", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_RESPONSE_DEACTIVATION_ACTION_ERROR", + "message": "Employee Deactivation Failed", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_RESPONSE_UPDATE_ACTION", + "message": "Employee Details Updated Successfully", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE_RESPONSE_UPDATE_ACTION_ERROR", + "message": "Employee Details Update Failed", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ERR_ALL_MANDATORY_FIELDS", + "message": "Enter data in all mandatory fields", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ERR_BASE_TENANT_MANDATORY", + "message": "Atleast one Jurisdiction should be selected in Parent city", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ERR_HRMS_BULK_CREATE_DUPLICATE_EMPCODE", + "message": "Bulk request has duplicate employee code", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ERR_HRMS_BULK_CREATE_DUPLICATE_MOBILE", + "message": "Bulk request has duplicate mobile number", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ERR_HRMS_GENERATE_ID_ERROR", + "message": "Unable to create ids", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ERR_HRMS_INVALID_ASSIGNMENT_CURRENT_TO_DATE", + "message": "To Date field should be blank for current assignment of the employee.", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ERR_HRMS_INVALID_ASSIGNMENT_DATES", + "message": "Employee period of assignment (From Date or To date) can not be before date of birth.", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ERR_HRMS_INVALID_ASSIGNMENT_DATES_APPOINTMENT", + "message": "Employee period of assignment (From Date or To date) can not be before date of appointment.", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ERR_HRMS_INVALID_ASSIGNMENT_NOT_CURRENT_TO_DATE", + "message": "To date field should not be blank for non current assignment of the employee.", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ERR_HRMS_INVALID_ASSIGNMENT_PERIOD", + "message": "Invalid period of assignment (From date - To date).", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ERR_HRMS_INVALID_BOUNDARY_TYPE_HEIRARCHY", + "message": "Jurisiction boundary type value is invalid.", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ERR_HRMS_INVALID_CURRENT_ASSGN", + "message": "There should be exactly one current assignment for the employee.", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ERR_HRMS_INVALID_DATE_OF_APPOINTMENT", + "message": "Invalid employee date of appointment entered by the user.", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ERR_HRMS_INVALID_DATE_OF_APPOINTMENT_DOB", + "message": "Employee date of appointment can not be before date of birth.", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ERR_HRMS_INVALID_DEACT_REASON", + "message": "Employee deactivation reason is invalid.", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ERR_HRMS_INVALID_DEACT_REQUEST", + "message": "Employee active flag should be set as false during deactivation.", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ERR_HRMS_INVALID_DEPARTMENTAL_TEST", + "message": "Departmental evaluation test of the employee is invalid.", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ERR_HRMS_INVALID_DEPARTMENTAL_TEST_PASSING_YEAR", + "message": "Departmental evaluation test passing year of the employee can not be before date of birth.", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ERR_HRMS_INVALID_DEPT", + "message": "Invalid department of employee entered.", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ERR_HRMS_INVALID_DESG", + "message": "Invalid designation of employee.", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ERR_HRMS_INVALID_DOB", + "message": "Invalid date of birth entered.", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ERR_HRMS_INVALID_EDUCATIONAL_PASSING_YEAR", + "message": "Education year of passing of the employee can not be before date of birth.", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ERR_HRMS_INVALID_EDUCATIONAL_STREAM", + "message": "Education stream of the employee is invalid.", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ERR_HRMS_INVALID_EMP_STATUS_ROLE", + "message": "Invalid employment status entered.", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ERR_HRMS_INVALID_EMP_TYPE", + "message": "Invalid employee type entered.", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ERR_HRMS_INVALID_JURISDICTION_ACTIIEV_NULL", + "message": "Jurisiction should have atleast 1 active data", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ERR_HRMS_INVALID_JURISDICTION_BOUNDARY", + "message": "Jurisiction boundary value is invalid.", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ERR_HRMS_INVALID_JURISDICTION_HEIRARCHY", + "message": "Jurisiction hierarchy value is invalid.", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ERR_HRMS_INVALID_MOB_NO", + "message": "Invalid mobile number entered.", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ERR_HRMS_INVALID_QUALIFICATION", + "message": "Qualification of the employee is invalid.", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ERR_HRMS_INVALID_ROLE", + "message": "Invalid role assigned to the employee.", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ERR_HRMS_INVALID_SEARCH_AOD", + "message": "Along with as on date, atleast one department and designation need to be passed as search criteria.", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ERR_HRMS_INVALID_SEARCH_REQ", + "message": "Open search is disabled for this user.", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ERR_HRMS_INVALID_SEARCH_ROLES", + "message": "For search based on roles, passing of tenant id is mandatory.", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ERR_HRMS_INVALID_SEARCH_USER", + "message": "For search based on phone number and name, passing of tenant id is mandatory.", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ERR_HRMS_INVALID_SERVICE_ASSGN", + "message": "There should be maximum one currently working service for the employee.", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ERR_HRMS_INVALID_SERVICE_CURRENT_TO_DATE", + "message": "To Date of service period should be blank for currently working employees.", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ERR_HRMS_INVALID_SERVICE_DATES", + "message": "Employee service period (From date or To date) can not be before date of birth.", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ERR_HRMS_INVALID_SERVICE_NOT_CURRENT_TO_DATE", + "message": "To Date of service period should not be blank for currently non working employees.", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ERR_HRMS_INVALID_SERVICE_PERIOD", + "message": "Service period (From date or To date) of employee is invalid.", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ERR_HRMS_INVALID_SERVICE_STATUS", + "message": "Service stataus of employee is invalid.", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ERR_HRMS_MISSING_ROLES", + "message": "Invalid mobile number entered.", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ERR_HRMS_OVERLAPPING_ASSGN", + "message": "There should not be overlapping period of assignments for the employee.", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ERR_HRMS_OVERLAPPING_ASSGN_CURRENT", + "message": "Period of assignements of employee should not be after current assignment.", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ERR_HRMS_OVERLAPPING_SERVICEHISTORY_CURRENT", + "message": "Period of service details of employee should not be after current assignment!", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ERR_HRMS_UPDATE_ASSIGNEMENT_INCOSISTENT", + "message": "Assignment data in an update request should contain all previously entered data.", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ERR_HRMS_UPDATE_DEACT_DETAILS_INCORRECT_EFFECTIVEFROM", + "message": "Employee deactivation effective date should not be future date.", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ERR_HRMS_UPDATE_DEACT_DETAILS_INCOSISTENT", + "message": "Employee deactivation data in an update request should contain all previously entered data.", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ERR_HRMS_UPDATE_DOCUMENT_INCOSISTENT", + "message": "Employee document data in an update request should contain all previously entered data.", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ERR_HRMS_UPDATE_EDUCATION_INCOSISTENT", + "message": "Education data in an update request should contain all previously entered data.", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ERR_HRMS_UPDATE_EMPLOYEE_CODE_CHANGE", + "message": "Employee code can not be changed in an update request.", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ERR_HRMS_UPDATE_EMPLOYEE_NOT_EXIST_CODE", + "message": "No employee found for given UUID.", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ERR_HRMS_UPDATE_EXISTING_MOBNO", + "message": "User exist for given mobile no", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ERR_HRMS_UPDATE_JURISDICTION_INCOSISTENT", + "message": "Jurisdiction data in an update request should contain all previously entered data.", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ERR_HRMS_UPDATE_NULL", + "message": "Employee Code in an update request should not be null.", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ERR_HRMS_UPDATE_NULL_ID", + "message": "Employee ID in an update request should not be null.", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ERR_HRMS_UPDATE_NULL_UUID", + "message": "Employee UUID in an update request should not be null.", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ERR_HRMS_UPDATE_SERVICE_HISTORY_INCOSISTENT", + "message": "Service history data in an update request should contain all previously entered data.", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ERR_HRMS_UPDATE_TESTS_INCOSISTENT", + "message": "Employee evaluation test data in an update request should contain all previously entered data.", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ERR_HRMS_USER_CREATION_FAILED", + "message": "User creation failed at the user service.", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ERR_HRMS_USER_EXIST_MOB", + "message": "User already exists for the entered mobile number. Use a different mobile number to proceed.", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ERR_HRMS_USER_EXIST_USERNAME", + "message": "User already exists for the entered user name.", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ERR_HRMS_USER_UPDATION_FAILED", + "message": "User updation failed at the user service.", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ERR_MOBILE_NUMBER_EXISTS_FIELDS", + "message": "Mobile number already in use. Enter another mobile number", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_SEARCH_BY", + "message": "SEARCH BY:", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "ES_SEARCH_APPLICATION_MOBILE_INVALID", + "message": "Please provide a valid mobile number", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HE_NEW_EMPLOYEE_CITY_LABEL", + "message": "New Employee Locality", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HE_NEW_EMPLOYEE_CITY_LABEL ", + "message": "New Employee Locality", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HRMS_CREATE_EMPLOYEE_INFO", + "message": "The login credentials have been shared with the employee via SMS on the registered mobile number.", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HRMS_CREATE_EMPLOYEE_RESPONSE_MESSAGE", + "message": "Employee Created Successfully", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HRMS_SEARCH_RESET_BUTTON", + "message": "Reset", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HRMS_UPDATE_EMPLOYEE_RESPONSE_MESSAGE", + "message": "SUCCESS", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_ACTION_NO_FILEUPLOADED", + "message": "No File Selected", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_ACTIVATE_EMPLOYEE_HEAD", + "message": "Activate Employee", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_ACTIVATE_EMPLOYEE_LABEL", + "message": "Activate Employee", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_ACTIVATE_HEAD", + "message": "Active", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_ACTIVATION_REASON", + "message": "Reason for Re-activation", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_ACTIVATION_REASON_SELECT", + "message": "Select Reason for Re-activation", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_ADD_ASSIGNMENT", + "message": "ADD ASSIGNMENT", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_ADD_JURISDICTION", + "message": "ADD JURISDICTION", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_ADD_NEW_EMPLOYEE_BUTTON", + "message": "Add Employee", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_ADD_QUALIFICATIONS", + "message": "ADD QUALIFICATIONS", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_ADD_SERVICE_ENTRY", + "message": "ADD SERVICE ENTRY", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_ADD_TEST", + "message": "ADD TEST", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_APPOINTMENT_DATE_LABEL", + "message": "Date of Appointment", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_APPROVAL_UPLOAD_HEAD", + "message": "Supporting Documents", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_APPT_DATE_LABEL", + "message": "Date of Appointment", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_APPT_DATE_PLACEHOLDER", + "message": "Enter Date of Appointment", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_ASMT_FROM_DATE_LABEL", + "message": "Assigned From Date", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_ASMT_FROM_DATE_PLACEHOLDER", + "message": "Assigned From Date", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_ASMT_TO_DATE_LABEL", + "message": "Assigned To Date", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_ASMT_TO_DATE_LABEL_PLACEHOLDER", + "message": "Assigned To Date", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_ASMT_TO_DATE_PLACEHOLDER", + "message": "Assigned To Date", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_ASSIGNMENT", + "message": "Assignment", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_ASSIGN_DET_HEADER", + "message": "Assignment Details", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_ASSIGN_DET_SUB_HEADER", + "message": "Verify entered details before submission. Assignment details cannot be edited once submitted.", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_BIRTH_DATE_LABEL", + "message": "Date of Birth", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_BIRTH_DATE_PLACEHOLDER", + "message": "Date of Birth", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_BOUNDARY_LABEL", + "message": "Boundary", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_BOUNDARY_PLACEHOLDER", + "message": "Select Boundary", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_BOUNDARY_TYPE_LABEL", + "message": "Boundary Type", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_BOUNDARY_TYPE_PLACEHOLDER", + "message": "Select Boundary Type", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_CITY_SELECT_LABEL", + "message": "Select", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_CITY_SELECT_LABEL ", + "message": "Select", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_COMMON_APPLY", + "message": "Apply", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_COMMON_APPL_NEW_HEADER", + "message": "Create New Employee", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_COMMON_BUTTON_HOME", + "message": "Home", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_COMMON_BUTTON_NXT_STEP", + "message": "Next Step", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_COMMON_BUTTON_PREV_STEP", + "message": "Previous Step", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_COMMON_BUTTON_SUBMIT", + "message": "Submit", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_COMMON_CLEAR_SEARCH", + "message": "Clear Search", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_COMMON_CREATE_EMPLOYEE_HEADER", + "message": "Create Employee", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_COMMON_DEACTIVATED_EMPLOYEE_HEADER", + "message": "Deactivate Employee", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_COMMON_EDIT_EMPLOYEE_HEADER", + "message": "Edit Employee", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_COMMON_FILTER", + "message": "Filter By", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_COMMON_HEADER", + "message": "Employee Management", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_COMMON_REACTIVATED_EMPLOYEE_HEADER", + "message": "Reactivate Employee", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_COMMON_SEARCH", + "message": "Apply", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_COMMON_TABLE_COL_DEPT", + "message": "Department", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_COMMON_TABLE_COL_DESG", + "message": "Designation", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_COMMON_TABLE_COL_EMP_ID", + "message": "Employee ID", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_COMMON_TABLE_COL_NAME", + "message": "Name", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_COMMON_TABLE_COL_ROLE", + "message": "Role", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_COMMON_TABLE_COL_STATUS", + "message": "Status", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_COMMON_TABLE_COL_TENANT_ID", + "message": "Tenant", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_COMMON_TAKE_ACTION", + "message": "Take Action", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_COMMON_UPDATE_EMPLOYEE_HEADER", + "message": "Employee Update", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_CORRESPONDENCE_ADDRESS_LABEL", + "message": "Correspondence Address", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_CORRESPONDENCE_ADDRESS_PLACEHOLDER", + "message": "Enter Corrospondence Address", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_CREATE_SUCCESS_MESSAGE", + "message": "Employee Created Successfully", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_CREATE_SUCCESS_SUBHEADER", + "message": "A notification has been sent to the created Employee at registered Mobile No.", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_CURRENTLY_ASSIGNED_HERE_SWITCH_LABEL", + "message": "Currently Assigned Here", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_CURRENTLY_WORKING_HERE_SWITCH_LABEL", + "message": "Currently Working Here", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_CURR_ASSIGN_LABEL", + "message": "Currently Assigned Here", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_CURR_WORKING_LABEL", + "message": "Currently Working Here", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_DEACTIVATE", + "message": "DEACTIVATE", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_DEACTIVATE_EMPLOYEE_BUTTON_TEXT", + "message": "Deactivate Employee", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_DEACTIVATE_EMPLOYEE_HEAD", + "message": "Deactivate Employee", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_DEACTIVATE_EMPLOYEE_LABEL", + "message": "DEACTIVATE EMPLOYEE", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_DEACTIVATE_HEAD", + "message": "Inactive", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_DEACTIVATE_SUCCESS_MESSAGE", + "message": "Employee Deactivated Successfully", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_DEACTIVATE_SUCCESS_SUBHEADER", + "message": " ", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_DEACTIVATION_REASON", + "message": "Reason for Deactivation", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_DEACTIVATION_REASON_SELECT", + "message": "Select Reason for Deactivation", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_DEGREE_LABEL", + "message": "Degree", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_DEGREE_PLACEHOLDER", + "message": "Select Degree", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_DEPARTMENT_PLACEHOLDER", + "message": "Select Department", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_DEPT_LABEL", + "message": "Department", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_DEPT_PLACEHOLDER", + "message": "Select Department", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_DEPT_TEST_HEADER", + "message": "Department Test Details", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_DESG_LABEL", + "message": "Designation", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_DESIGNATION_PLACEHOLDER", + "message": "Select Designation", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_DESIG_PLACEHOLDER", + "message": "Select Designation", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_DETAILS_HEADER", + "message": "Adminstrative Details", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_DOB_LABEL", + "message": "DOB", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_EDIT_DETAILS_LABEL", + "message": "EDIT DETAILS", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_ED_QUAL_HEADER", + "message": "Education Qualification", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_EFFECTIVE_DATE", + "message": "Effective Date", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_EMAIL_LABEL", + "message": "Email", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_EMAIL_PLACEHOLDER", + "message": "Enter Email", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_EMPLOYEE_ID_LABEL", + "message": "Employee ID", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_EMPLOYEE_ID_PLACEHOLDER", + "message": "Enter Employee ID", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_EMPLOYMENT_TYPE_LABEL", + "message": "Employement Type", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_EMPLOYMENT_TYPE_PLACEHOLDER", + "message": "Select Employment Type", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_EMP_ID_ERR_MSG", + "message": "Invalid Employee ID", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_EMP_ID_LABEL", + "message": "Employee ID", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_EMP_ID_MESSAGE", + "message": "ID assigned to employee by the municipality. Incase there is no ID assigned, leave the column blank for the system to generate the Employee ID.", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_EMP_ID_PLACEHOLDER", + "message": "Enter Employee ID", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_EMP_MOBILE_ERR_MSG", + "message": "Invalid Mobile Number", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_EMP_MOBILE_LABEL", + "message": "Employee Mobile No.", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_EMP_MOBILE_PLACEHOLDER", + "message": "Enter Employee Mobile No.", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_EMP_NAME_ERR_MSG", + "message": "Invalid Name", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_EMP_NAME_LABEL", + "message": "Employee Name", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_EMP_NAME_PLACEHOLDER", + "message": "Enter Employee Name", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_EMP_STATUS_LABEL", + "message": "Employment Status", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_EMP_TYPE_LABEL", + "message": "Employee Type", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_EMP_TYPE_PLACEHOLDER", + "message": "Select Employee Type", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_ENTER_ORDER_NO", + "message": "Enter Order No.", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_ENTER_REMARKS", + "message": "Enter Remarks", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_FATHER_HUSBANDS_NAME_LABEL", + "message": "Father/Husband's Name", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_FATHER_HUSBAND_NAME_LABEL", + "message": "Father/Husband's Name", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_FATHER_HUSBAND_NAME_PLACEHOLDER", + "message": "Enter Employee Name", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_GENDER_LABEL", + "message": "Gender", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_GENDER_PLACEHOLDER", + "message": "Select Gender", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_GUARDIAN_NAME_LABEL", + "message": "Guardian Name", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_GUARDIAN_NAME_PLACEHOLDER", + "message": "Enter Guardian Name", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_HIERARCHY_LABEL", + "message": "Hierarchy", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_HIERARCHY_PLACEHOLDER", + "message": "Select Hierarchy", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_HOD_LABEL", + "message": "Head of Department", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_HOD_SWITCH_LABEL", + "message": "Head Of Department", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_HOME_SEARCH_RESULTS_DESC", + "message": "Provide at least one parameter to search for an employee", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_HOME_SEARCH_RESULTS_HEADING", + "message": "Search Employe", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_HOME_SEARCH_RESULTS_TABLE_HEADING", + "message": "Search Results for Employee", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_JURISDICTION", + "message": "Jurisdiction", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_JURISDICTION_DETAILS_HEADER", + "message": "Jurisdiction Details", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_JURIS_DET_HEADER", + "message": "Jurisdiction Details", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_LOCATION_LABEL", + "message": "Location", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_LOCATION_PLACEHOLDER", + "message": "Select Location", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_MOBILE_NO_CHECK", + "message": "Please enter a 10 digit number starting with 6/7/8/9", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_MOB_NO_LABEL", + "message": "Mobile Number", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_MOB_NO_PLACEHOLDER", + "message": "Enter Mobile No.", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_NAME_LABEL", + "message": "Employee Name", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_NAME_PLACEHOLDER", + "message": "Enter Employee Name", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_NEW_EMPLOYEE_FORM_HEADER", + "message": "Employee Details", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_NEW_EMP_NAME_PLACEHOLDER", + "message": "Enter Employee Name", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_ORDER_NO", + "message": "Order No.", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_ORDER_NO_LABEL", + "message": "Order No", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_ORDER_NO_PLACEHOLDER", + "message": "Enter Order No", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_OTHER_DET_HEADER", + "message": "Other Details", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_PERSONAL_DETAILS_FORM_HEADER", + "message": "Personal Details", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_PICK_YOUR_CITY_LABEL", + "message": "Pick Your City", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_PROFESSIONAL_DETAILS_FORM_HEADER", + "message": "Employee Details", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_RACTIVATE_SUCCESS_MESSAGE", + "message": "Employee Reactivated Successfully", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_REACTIVATE_SUCCESS_SUBHEADER", + "message": " ", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_RELATIONSHIP_LABEL", + "message": "Relationship", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_RELATIONSHIP_PLACEHOLDER", + "message": "Select Relationship", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_REMARKS", + "message": "Remarks", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_REMARKS_LABEL", + "message": "Remarks", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_REMARKS_PLACEHOLDER", + "message": "Enter Remarks", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_REP_TO_LABEL", + "message": "Reporting To", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_ROLE_LABEL", + "message": "Role", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_ROLE_NO_LABEL", + "message": "No of Roles", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_ROLE_PLACEHOLDER", + "message": "Select Role", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_SELECT_CITY_PLACEHOLDER", + "message": "Select Locality", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_SELECT_CITY_PLACEHOLDER ", + "message": "Select Locality", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_SELECT_ULB_PLACEHOLDER", + "message": "Select Locality", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_SER_DET_HEADER", + "message": "Service Details", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_SER_DET_SUB_HEADER", + "message": "Verify entered details before submission. Service details cannot be edited once submitted.", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_SER_FROM_DATE_LABEL", + "message": "Service From Date", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_SER_TO_DATE_LABEL", + "message": "Service To Date", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_STATUS_LABEL", + "message": "Status", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_STATUS_PLACEHOLDER", + "message": "Select Status", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_STREAM_LABEL", + "message": "Stream", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_STREAM_PLACEHOLDER", + "message": "Select Stream", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_SUBMIT_LABEL", + "message": "SUBMIT", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_SUMMARY_DEPT_TEST_DEATILS_SUBHEADER", + "message": "Test Details", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_SUMMARY_DETAILS", + "message": "Summary", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_SUMMARY_EDIT", + "message": "Edit", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_SUMMARY_EDUCATION_DEATILS_SUBHEADER", + "message": "Education Details", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_SUMMARY_HEADER", + "message": "Create New Employee - Summary", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_SUMMARY_PERSONAL_DEATILS_SUBHEADER", + "message": "Personal Details", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_SUMMARY_PROFESSIONAL_DEATILS_SUBHEADER", + "message": "Professional Details", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_TEST_NAME_LABEL", + "message": "Test Name", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_TEST_NAME_PLACEHOLDER", + "message": "Select Test Name", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_ULB_LABEL", + "message": "Locality", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_UNIVERSITY_LABEL", + "message": "University", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_UNIVERSITY_PLACEHOLDER", + "message": "Select University", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_UPDATE_SUCCESS_MESSAGE", + "message": "Employee Updated Successfully", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_UPDATE_SUCCESS_SUBHEADER", + "message": " ", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_UPLOAD_FILES_BUTTON_LABEL", + "message": "Upload Files", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_UPLOAD_FILES_LABEL", + "message": "UPLOAD FILES", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_VIEW_HEADER", + "message": "View Employee Information", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_YEAR_LABEL", + "message": "Year", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "HR_YEAR_PLACEHOLDER", + "message": "Select Year", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "PERMANENT", + "message": "Permanent", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "REVENUE", + "message": "Revenue", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "TEMPORARY", + "message": "Temporary", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PB_CITYA", + "message": "Victoria", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "TL_ADD_ASSIGNMENT", + "message": "ADD ASSIGNMENT", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "TL_ADD_JURISDICTION", + "message": "ADD JURISDICTION", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "TL_ADD_QUALIFICATIONS", + "message": "ADD QUALIFICATIONS", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "TL_ADD_SERVICE_ENTRY", + "message": "ADD SERVICE ENTRY", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "TL_ADD_TEST", + "message": "ADD TEST", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "TL_COMMON_BUTTON_HOME", + "message": "GO TO HOME", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "TL_HOME_SEARCH_RESULTS_BUTTON_SEARCH", + "message": "Search", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "reports.hrms.department", + "message": "Employee Department", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "reports.hrms.designation", + "message": "Employee Designation", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "reports.hrms.id", + "message": "Employee Id", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "reports.hrms.name", + "message": "Employee Name", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "reports.hrms.role", + "message": "Employee Roles", + "module": "rainmaker-hr", + "locale": "en_IN" + }, + { + "code": "reports.hrms.status", + "message": "Employee Status", + "module": "rainmaker-hr", + "locale": "en_IN" + } +] \ No newline at end of file diff --git a/utilities/default-data-handler/src/main/resources/localisations-dev/en_IN/rainmaker-pgr.json b/utilities/default-data-handler/src/main/resources/localisations-dev/en_IN/rainmaker-pgr.json new file mode 100644 index 00000000..d2156fe9 --- /dev/null +++ b/utilities/default-data-handler/src/main/resources/localisations-dev/en_IN/rainmaker-pgr.json @@ -0,0 +1,31250 @@ +[ + { + "code": "ADMIN_Locality", + "message": "Locality", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ANOTHER_USER", + "message": "Another User", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ASSIGN", + "message": "Assign", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ASSIGNED_TO_ALL", + "message": "Assigned to All", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ASSIGNED_TO_ME", + "message": "Assigned to Me", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ASSIGN_SUCCESSFULLY", + "message": "Assigned Successfully", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "COMMON_BOTTOM_NAVIGATION_COMPLAINTS", + "message": "Citizen Complaint Resolution System", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "COMMON_BOTTOM_NAVIGATION_INFORMATION", + "message": "Information", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "COMMON_BOTTOM_NAVIGATION_PAYMENTS", + "message": "Payments", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "COMMON_FEVERS_DENGUE_MALARIA", + "message": "Fevers - Dengue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_AC01", + "message": "Additional Commissioner", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_AMO01", + "message": "Asst. Medical Officer", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_CM01", + "message": "City manager", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_CME01", + "message": "Chief Municipal Engineer", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DC01", + "message": "Deputy Commissioner", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_HDC01", + "message": "Higher Division Clerk", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_HSI01", + "message": "Head Sanitary Inspector", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_MC01", + "message": "Municipal Commissioner", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_SS01", + "message": "Sanitory Supervisor", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_TC01", + "message": "Tax Collector", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_TI01", + "message": "Tax Inspector", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "COMMON_REPAIRS_TO_FLYOVERS_BRIDGES_CULVERTS", + "message": "Repairs to Flyovers", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "COMMON_UNHYGIENIC_IMPROPER_TRANSFER_OF_MEAT_LIVESTOCK", + "message": "Unhygienic", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "COMPLAINTS_COMPLAINANT_CONTACT_NUMBER", + "message": "Complainant Phone No.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "COMPLAINTS_COMPLAINANT_NAME", + "message": "Complainant Name", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "COMPLAINTS_SUPERVISOR_CONTACT_NUMBER", + "message": "Supervisor Contact No.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "COMPLAINTS_SUPERVISOR_NAME", + "message": "Supervisor Name", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_CLOSE", + "message": "CLOSE", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_NAME_VALIDMSG", + "message": "Please enter a valid Name", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_OPEN", + "message": "OPEN", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_PHONENO_INVALIDMSG", + "message": "Invalid Mobile Number", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_PHONENO_REGISTREDMSG", + "message": "Mobile Number is already Registered", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_PHONE_NUMBER", + "message": "Phone Number", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_PHONE_NUMBER_PLACEHOLDER", + "message": "Enter your mobile number", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_PICK", + "message": "Pick", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_PINCODE", + "message": "Pincode", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_PINCODE_INVALID", + "message": "Provide Valid Pin code", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_PINCODE_NOT_ENTERED", + "message": "Enter Pincode", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_PINCODE_NOT_SERVICEABLE", + "message": "Sorry we are not providing service in this city", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_REQUIRED_ERRMSG", + "message": "Required", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_SEARCH_COMPLAINT", + "message": "Search Complaint", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_SKIP_CONTINUE", + "message": "Skip and continue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_TAKE_ACTION", + "message": "__entermesage_____", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_USERNAME_INVALIDMSG", + "message": "Please enter a valid user name", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CORE_EMPLOYEE_OTP_CHECK_MESSAGE", + "message": "Please check your messages for the OTP & then set a new password.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CORE_LOGIN_CONFIRM_NEW_PASSWORD", + "message": "Confirm New Password ", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CORE_LOGIN_CONNFIRM_NEW_PASSWORD_PLACEHOLDER", + "message": "Confirm new password ", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CORE_LOGIN_NEW_PASSWORD", + "message": "New Password ", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CORE_LOGIN_NEW_PASSWORD_PLACEHOLDER", + "message": "Enter your new password", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CORE_LOGIN_NO_ACCOUNT", + "message": "Don’t have an account?", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CORE_LOGIN_PASSWORD", + "message": "Password", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CORE_LOGIN_PASSWORD_ERRORMSG", + "message": "Password is Incorrect", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CORE_LOGIN_PASSWORD_PLACEHOLDER", + "message": "Enter your Password", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CORE_LOGIN_USERNAME", + "message": "User Name", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CORE_LOGIN_USERNAME_PLACEHOLDER", + "message": "Enter your Employee ID", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CORE_LOGOUTPOPUP_CANCEL", + "message": "CANCEL", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CORE_LOGOUTPOPUP_CONFIRM", + "message": "Are you sure you want to logout?", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CORE_LOGOUTPOPUP_LOGOUT", + "message": "LOGOUT", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CORE_LOGOUTPOPUP_NO", + "message": "No", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CORE_LOGOUTPOPUP_YES", + "message": "Yes", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CORE_OTP_ERRORMSG", + "message": "Invalid OTP", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CORE_OTP_GET_STARTED", + "message": "GET STARTED", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CORE_OTP_HEADING", + "message": "ENTER OTP", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CORE_OTP_NOT_RECEIVE", + "message": "Didn’t receive OTP?", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CORE_OTP_OTP", + "message": "OTP", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CORE_OTP_PLACEHOLDER", + "message": "Enter OTP", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CORE_OTP_RESEND", + "message": "RESEND", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CORE_OTP_SENT_MESSAGE", + "message": "An OTP has been sent to :", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CORE_POPUP_OK", + "message": "OK", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CORE_POPUP_SEND", + "message": "SEND", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CORE_REGISTER_HAVE_ACCOUNT", + "message": "Have an account?", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CORE_REGISTER_HEADING", + "message": "REGISTER", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_ACTION_ASSIGN", + "message": "Assign Complaint", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_ACTION_ASSIGN_TEXT", + "message": "Complaint Assigned Successfully", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_ACTION_FILEUPLOADED", + "message": "File Uploaded", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_ACTION_FORWARD", + "message": "Forward", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_ACTION_NO_FILEUPLOADED", + "message": "No file uploaded", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_ACTION_REASSIGN", + "message": "Re-assign Complaint", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_ACTION_REASSIGN_TEXT", + "message": "Complaint Reassigned Succesfully", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_ACTION_REJECT", + "message": "Reject Complaint", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_ACTION_REJECT_TEXT", + "message": "Complaint Rejected Succesfully", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_ACTION_REOPEN", + "message": "Re-open", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_ACTION_REOPEN_TEXT", + "message": "Complaint Reopened Successfully", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_ACTION_RESOLVE", + "message": "Resolve", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_ACTION_RESOLVE_TEXT", + "message": "Complaint Resolved Successfully", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_ACTION_Re-open", + "message": "Re-open", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_ACTION_SUPPORTING_DOCUMENTS", + "message": "Supporting Documents", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_ADDCOMPLAINT_ADDITIONAL_DETAILS", + "message": "Additional Address Information", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_ADDCOMPLAINT_ADDITIONAL_DETAILS_PLACEHOLDER", + "message": "Enter WARD and address", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_ADDCOMPLAINT_ADDITIONAL_DETAILS_SUBMIT_COMPLAINT", + "message": "Submit Complaint", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_ADDCOMPLAINT_ADDITIONAL_DETAILS_TEXT", + "message": "If you think apart from information provided till now additional details are required to resolve complaint, provide it below:", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_ADDCOMPLAINT_ADDRESSINFO", + "message": "Address Info:", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_ADDCOMPLAINT_CHANGE_PINCODE_TEXT", + "message": "If you know the pincode of the complaint address, provide below. It will help us identify complaint location easily or you can skip and continue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_ADDCOMPLAINT_CITY_MOHALLA_TEXT", + "message": "Choose the locality of the complaint from the list given below.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_ADDCOMPLAINT_COMPLAINT_DETAILS", + "message": "Complaint Additional Details", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_ADDCOMPLAINT_COMPLAINT_DETAILS_PLACEHOLDER", + "message": "Enter Complaint additional details", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_ADDCOMPLAINT_COMPLAINT_LOCATION", + "message": "Complaint's Location", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_ADDCOMPLAINT_COMPLAINT_SUBTYPE", + "message": "Complaint Sub-Type ", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_ADDCOMPLAINT_COMPLAINT_SUBTYPE_PLACEHOLDER", + "message": "Choose Complaint Sub-Type", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_ADDCOMPLAINT_COMPLAINT_SUB_TYPE", + "message": "Complaint Sub-Type", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_ADDCOMPLAINT_COMPLAINT_TYPE", + "message": "Complaint Type", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_ADDCOMPLAINT_COMPLAINT_TYPE_PLACEHOLDER", + "message": "Select complaint type", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_ADDCOMPLAINT_ERROR_COMPLAINT_SUBTYPE", + "message": "Select the complaint sub-type", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_ADDCOMPLAINT_ERROR_COMPLAINT_TYPE", + "message": "Select the complaint type", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_ADDCOMPLAINT_ERROR_FAILURE", + "message": "Sorry, there is a problem with the service. Try again later.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_ADDCOMPLAINT_ERROR_MESSAGE", + "message": "Complaint Not Submitted", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_ADDCOMPLAINT_ERROR_REOPEN_REASON", + "message": "Select reason to re-open complaint", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_ADDCOMPLAINT_HOUSE_NO", + "message": "House No. and Street Name", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_ADDCOMPLAINT_HOUSE_NO_PLACEHOLDER", + "message": "Enter House No. and Street Name", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_ADDCOMPLAINT_LANDMARK", + "message": "Landmark", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_ADDCOMPLAINT_LANDMARK_ERROR", + "message": "Enter Landmark", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_ADDCOMPLAINT_LANDMARK_PLACEHOLDER", + "message": "Enter landmark", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_ADDCOMPLAINT_LOCATION", + "message": "Complaint Location", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_ADDCOMPLAINT_LOCATION_ERROR", + "message": "Select City and Locality", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_ADDCOMPLAINT_LOCATION_ERRORMSG", + "message": "Address doesn’t exist", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_ADDCOMPLAINT_PINCODE", + "message": "Do you know the pincode ?", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_ADDCOMPLAINT_PIN_LOCATION", + "message": "Pin Complaint location", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_ADDCOMPLAINT_PIN_LOCATION_TEXT", + "message": "If you know the pincode of the complaint address, provide below. It will help us identify complaint location easily or you can skip and continue.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_ADDCOMPLAINT_PROVIDE_ADDITIONAL_DETAILS", + "message": "Provide Additional Details", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_ADDCOMPLAINT_PROVIDE_COMPLAINT_ADDRESS", + "message": "Provide Complaint address", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_ADDCOMPLAINT_PROVIDE_LANDMARK", + "message": "Provide Landmark", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_ADDCOMPLAINT_PROVIDE_LANDMARK_TEXT", + "message": "Provide the landmark to help us reach the complaint location easily.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_ADDCOMPLAINT_SELECT_GEOLOCATION_HEADER", + "message": "Pin Complaint Location", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_ADDCOMPLAINT_SELECT_GEOLOCATION_TEXT", + "message": "Click and hold to drop the pin to complaint location. If you are not able to pin the location you can skip the continue for next step.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_ADDCOMPLAINT_UPLOAD_ERROR_MESSAGE", + "message": "Upload Image", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_ADDCOMPLAINT_UPLOAD_PHOTO", + "message": "Upload complaint photos", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_ADDCOMPLAINT_UPLOAD_PHOTO_TEXT", + "message": "Click on the icon below to upload the complaint photos as evidence. You can capture photos directly through your camera or upload from your Gallery. If you do not have complaint photo, you can skip the continue for next step.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_ADDCOMPLAINT_YOU_RATED", + "message": "You Rated ", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_ADD_COMPLAINT_COMPLAINT_SUBMISSION", + "message": "Complaint Submission", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_ACCUMULATION_LITTER", + "message": "Accumulation of Litter", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_ASSIGN", + "message": "Assign", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_ASSIGNED", + "message": "Assigned", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_ASSIGNED_TO", + "message": "Assigned to ", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_ATTACHMENTS", + "message": "Attachments", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_BACK", + "message": "Back", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_BLOCKAGE_OF_DRAINS", + "message": "Blockage Of Drains", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_BROKEN_FOOTPATHS", + "message": "Broken Footpaths", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_CALL_BUTTON", + "message": "CALL", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_CANCEL", + "message": "Cancel", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_CANCELLED", + "message": "Cancelled", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_CHOOSE_FILE", + "message": "Choose File", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_CITIZEN_FEEDBACK", + "message": "Citizen Feedback", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_CITIZEN_REQUEST_REASSIGN", + "message": "Being Re-assigned", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_CLEAR_ALL", + "message": "CLEAR ALL", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_CLEAR_SEARCH", + "message": "CLEAR SEARCH", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_CLOSED", + "message": "Closed", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_CLOSEDAFTERREJECTION", + "message": "Closed after rejection", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_CLOSEDAFTERRESOLUTION", + "message": "Closed after resolution", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_CLOSED_UCASE", + "message": "CLOSED", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_COMMENTS", + "message": "Comments", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_COMMENTS_PLACEHOLDER", + "message": "Type your comments", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_COMMENTS_PLACEHOLDER2", + "message": "Write your comments...", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_COMPLAINT", + "message": "Complaint", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_COMPLAINT_ASSIGNED_TO", + "message": "Complaint assigned to", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_COMPLAINT_DATE", + "message": "ComplaintDate", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_COMPLAINT_FILED", + "message": "Complaint filed", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_COMPLAINT_NO", + "message": "Complaint No", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_COMPLAINT_PENDINGFORASSINMENT", + "message": "Pending for Assignment", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_COMPLAINT_REJECTED", + "message": "Rejected", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_COMPLAINT_REOPENED", + "message": "Complaint Re-opened", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_COMPLAINT_RESOLVED", + "message": "Complaint resolved", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_COMPLAINT_STATUS", + "message": "Complaint status", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_COMPLAINT_SUBMITTED", + "message": "Complaint Submitted", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_DAY", + "message": "day", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_DAYS", + "message": "days", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_DAYS_LEFT", + "message": "days left", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_DAY_LEFT", + "message": "day left", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_EMPLOYEE_COMMENTS", + "message": "Comments", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_EMPLOYEE_NAME", + "message": "Employee Name", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_ERROR_LOADING_RESULTS", + "message": "Error while loading results", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_ERROR_SCREEN_MESSAGE", + "message": "The page you are looking for cannot be found", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_FILE_A_COMPLAINT", + "message": "File a Complaint", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_FILTER", + "message": "Filter", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_GARBAGE_BIN_ABSENT", + "message": "Garbage Bin Absent", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_HOME", + "message": "Home", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_INBOX", + "message": "Inbox", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_LOGOUT", + "message": "Logout", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_MOBILE_NO", + "message": "Mobile No", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_MOBILE_NO.", + "message": "Mobile No", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_NEXT", + "message": "Next", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_OPEN", + "message": "Open", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_OPENED", + "message": "Opened", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_OPEN_UCASE", + "message": "OPEN", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_OVERDUE_BY", + "message": "Overdue by", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_OVERFLOWING_BINS", + "message": "Overflowing Garbage Bins", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_PATHOLES", + "message": "Patholes", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_PENDINGATLME", + "message": "Pending at LME", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_PENDINGATSUPERVISOR", + "message": "Pending At Supervisor", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_PENDINGFORASSIGNMENT", + "message": "Pending for assignment", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_PENDINGFORREASSIGNMENT", + "message": "Pending for reassignment", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_PGR_STATE_CLOSEDAFTERREJECTION", + "message": "Closed after rejection", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_PGR_STATE_CLOSEDAFTERRESOLUTION", + "message": "Closed after resolution", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_PGR_STATE_PENDINGATLME", + "message": "Pending at last mile employee", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_PGR_STATE_PENDINGFORASSIGNMENT", + "message": "Pending for assignment", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_PGR_STATE_PENDINGFORREASSIGNMENT", + "message": "Pending for re-assignment", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_PGR_STATE_REJECTED", + "message": "Rejected", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_PGR_STATE_RESOLVED", + "message": "Resolved", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_PINCODE_NOT_SERVICABLE", + "message": "Sorry we are not providing service in this city", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_RATING_SUBMIT_TEXT", + "message": "By making your voice heard, you help us improve mSeva.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_RE-ASSIGN REQUESTED", + "message": "Re-assign Requested", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_REASSIGNED", + "message": "Re-assigned", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_REASSIGNED_TO", + "message": "Re-Assigned to ", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_REJECT", + "message": "Reject", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_REJECTED", + "message": "Rejected", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_REJECTED_UCASE", + "message": "REJECTED", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_REOPENED", + "message": "Re-opened", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_REQUIRED_FIELDS_MISSING", + "message": "Required fields missing", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_RESOLVE", + "message": "Resolve", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_RESOLVED", + "message": "Resolved", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_RESOLVEDBYSUPERVISOR", + "message": "Resolved By Supervisor", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_RESOLVED_UCASE", + "message": "RESOLVED", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_RE_ASSIGNED", + "message": "Re-Assigned", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_SEARCH_BY", + "message": "SEARCH BY", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_SELECT_EMPLOYEE", + "message": "Select Employee", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_SKIP", + "message": "Skip and Continue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_STATUS_ASSIGNED", + "message": "Assigned", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_STATUS_BEING_REASSIGNED", + "message": "Complaint is being Re-Assigned", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_STATUS_CLOSED", + "message": "Your Complaint has been Closed", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_STATUS_REASSIGNED", + "message": "Your Complaint has been Re-assigned", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_STATUS_REASSIGN_REQUESTED", + "message": "Your Complaint is being Re-Assigned", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_STATUS_REJECTED", + "message": "Your Complaint has been Rejected", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_STATUS_REOPENED", + "message": "Your Complaint has been Re-opened", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_STATUS_RESOLVED", + "message": "Your Complaint has been Resolved", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_STATUS_SUBMITTED", + "message": "Your Complaint has been Filed", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_STATUS_UNASSIGNED", + "message": "Unassigned", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_SUBMIT", + "message": "SUBMIT", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_SUBMITTED", + "message": "Filed", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_SWEEPERS_ABSENT", + "message": "Absenteeism of Sweepers", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_THANK_YOU", + "message": "Thank You", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_TRACK_COMPLAINT_TEXT", + "message": "The notification along with complaint number is sent to your registered mobile number. You can track the complaint status using mobile or web app.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_UPLOAD_PHOTOS", + "message": "UPLOAD PHOTOS", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINTDETAILS_HOUSE", + "message": "House/Street No", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINTDETAILS_LANDMARK", + "message": "Landmark", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINTDETAILS_MOHALLA", + "message": "Mohalla/City", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_ADDTIONAL_DETAILS", + "message": "Additional Details", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_COMMENT_SUCCESS", + "message": "Comment Successful", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_COMPLAINT_ADDTIONAL_DETAILS", + "message": "Additional Details", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_ACCUMULATION_LITTER", + "message": "Accumulation of Litter", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_ADDITIONAL_DETAILS", + "message": "Additional Details", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_ADDITIONAL_DETAILS_DESCRIPTION", + "message": "Description", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_ADDRESS_1_DETAILS", + "message": "Address", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_ADDRESS_2_DETAILS", + "message": "Address Line 1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_ADDRESS_DETAILS", + "message": "Address Details", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_APPLICATION_STATUS", + "message": "Application Status", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_AREA", + "message": "Locality", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_ASSIGN", + "message": "Assign", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_ASSIGNED", + "message": "Assigned", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_ASSIGNED_TO", + "message": "Assigned to ", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_ATTACHMENTS", + "message": "Attachments", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_BACK", + "message": "Back", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_BEING_REASSIGNED", + "message": "Complaint is being re-assigned by", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_BLOCKAGE_OF_DRAINS", + "message": "Blockage Of Drains", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_BROKEN_FOOTPATHS", + "message": "Broken Footpaths", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_BUILDING_NAME", + "message": "Build Name", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_CALL_BUTTON", + "message": "CALL", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_CANCEL", + "message": "Cancel", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_CANCELLED", + "message": "Cancelled", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_CHOOSE_FILE", + "message": "Choose File", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_CITIZEN_FEEDBACK", + "message": "Citizen Feedback", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_CITIZEN_REQUEST_REASSIGN", + "message": "Being Re-assigned", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_CITY", + "message": "City", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_CLEAR_ALL", + "message": "CLEAR ALL", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_CLEAR_SEARCH", + "message": "CLEAR SEARCH", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_CLOSED", + "message": "Closed", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_CLOSEDAFTERREJECTION", + "message": "Closed after rejection", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_CLOSEDAFTERRESOLUTION", + "message": "Closed after resolution", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_CLOSED_UCASE", + "message": "CLOSED", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_COMMENTS", + "message": "Too much garbage lying on the road, its very dificult to cross the area.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_COMMENTS_PLACEHOLDER", + "message": "Type your comments", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_COMMENTS_PLACEHOLDER2", + "message": "Write your comments...", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_COMPLAINT", + "message": "Complaint", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_COMPLAINT_ASSIGNED_TO", + "message": "Complaint assigned to", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_COMPLAINT_DATE", + "message": "Complaint Date", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_COMPLAINT_DESCRIPTION", + "message": "Complaint Description", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_COMPLAINT_DETAILS", + "message": "Complaint Details", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_COMPLAINT_FILED", + "message": "Complaint Filed", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_COMPLAINT_NO", + "message": "Complaint No.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_COMPLAINT_PENDINGFORASSINMENT", + "message": "Pending for Assignment", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_COMPLAINT_REJECTED", + "message": "Rejected", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_COMPLAINT_REOPENED", + "message": "Complaint Re-opened", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_COMPLAINT_RESOLVED", + "message": "Complaint Resolved", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_COMPLAINT_STATUS", + "message": "Complaint status", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_COMPLAINT_SUBMITTED", + "message": "Complaint Submitted", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_COMPLAINT_SUBTYPE", + "message": "Complaint Subtype", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_COMPLAINT_TIMELINE", + "message": "Complaint Timeline", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_COMPLAINT_TYPE", + "message": "Complaint Type", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_CURRENT_STATUS", + "message": "Current Status", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_DAY", + "message": "day", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_DAYS", + "message": "days", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_DAYS_LEFT", + "message": "days left", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_DAY_LEFT", + "message": "day left", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_DOOR", + "message": "Door", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_EMPLOYEE_COMMENTS", + "message": "Comments", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_EMPLOYEE_NAME", + "message": "Employee Name", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_ERROR_LOADING_RESULTS", + "message": "Error while loading results", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_ERROR_SCREEN_MESSAGE", + "message": "The page you are looking for cannot be found", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_FILE_A_COMPLAINT", + "message": "File a Complaint", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_FILTER", + "message": "Filter", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_GARBAGE_BIN_ABSENT", + "message": "Garbage Bin Absent", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_GEOLOCATION", + "message": "Geolocation", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_HOME", + "message": "Home", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_INBOX", + "message": "Inbox", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_LANDMARK", + "message": "Landmark", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_LOCALITY", + "message": "Locality", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_LOCATION", + "message": "Enter Complaint Location", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_LOGOUT", + "message": "Logout", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_MOBILE_NO", + "message": "Mobile No", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_MOBILE_NO.", + "message": "Mobile No", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_NEXT", + "message": "Next", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_OPEN", + "message": "Open", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_OPENED", + "message": "Opened", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_OPEN_UCASE", + "message": "OPEN", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_OVERDUE_BY", + "message": "Overdue by", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_OVERFLOWING_BINS", + "message": "Overflowing Garbage Bins", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_PATHOLES", + "message": "Patholes", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_PENDINGATLME", + "message": "Pending at LME", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_PENDINGATSUPERVISOR", + "message": "Pending At Supervisor", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_PENDINGFORASSIGNMENT", + "message": "Pending for assignment", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_PENDINGFORREASSIGNMENT", + "message": "Pending for reassignment", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_PENDING_STATUS", + "message": "Complaint pending at GRO", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_PINCODE_NOT_SERVICABLE", + "message": "Sorry we are not providing service in this city", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_PLOT_NO", + "message": "Plot No.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_RATE", + "message": "RATE", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_RATING_SUBMIT_TEXT", + "message": "By making your voice heard, you help us improve mSeva.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_RE-ASSIGN REQUESTED", + "message": "Re-assign Requested", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_REASSIGNED", + "message": "Re-assigned", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_REASSIGNED_TO", + "message": "Re-Assigned to ", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_REASSIGN_REQUESTED", + "message": "Re-Assign requested", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_REJECT", + "message": "Reject", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_REJECTED", + "message": "Rejected", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_REJECTED_UCASE", + "message": "REJECTED", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_REOPEN", + "message": "RE-OPEN", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_REOPENED", + "message": "Re-opened", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_RESOLUTION_EVIDENCE", + "message": "Resolution Evidence", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_RESOLVE", + "message": "Resolve", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_RESOLVED", + "message": "Resolved", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_RESOLVEDBYSUPERVISOR", + "message": "Resolved By Supervisor", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_RESOLVED_UCASE", + "message": "RESOLVED", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_RE_ASSIGNED", + "message": "Re-Assigned", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_SEARCH_BY", + "message": "SEARCH BY", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_SKIP", + "message": "Skip and Continue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_STATUS_ASSIGNED", + "message": "Assigned", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_STATUS_BEING_REASSIGNED", + "message": "Complaint is being Re-Assigned", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_STATUS_CLOSED", + "message": "Your Complaint has been Closed", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_STATUS_REASSIGNED", + "message": "Your Complaint has been Re-assigned", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_STATUS_REASSIGN_REQUESTED", + "message": "Your Complaint is being Re-Assigned", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_STATUS_REJECTED", + "message": "Your Complaint has been Rejected", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_STATUS_REOPENED", + "message": "Your Complaint has been Re-opened", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_STATUS_RESOLVED", + "message": "Your Complaint has been Resolved", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_STATUS_SUBMITTED", + "message": "Your Complaint has been Filed", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_STATUS_UNASSIGNED", + "message": "Unassigned", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_STREET", + "message": "Street", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_SUBMISSION_DATE", + "message": "Filed Date", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_SUBMIT", + "message": "SUBMIT", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_SUBMITTED", + "message": "Filed", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_SUB_COMPLAINT_TYPE", + "message": "Complaint Sub-Type", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_SWEEPERS_ABSENT", + "message": "Absenteeism of Sweepers", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_THANK_YOU", + "message": "Thank You", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_TRACK_COMPLAINT_TEXT", + "message": "The notification along with complaint number is sent to your registered mobile number. You can track the complaint status using mobile or web app.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_DETAILS_UPLOAD_PHOTOS", + "message": "UPLOAD PHOTOS", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_FILED_DATE", + "message": "Filed Date", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_LANDMARK__DETAILS", + "message": "Landmark", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_LOCALITY", + "message": "Locality", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_LOCATION_DETAILS", + "message": "Location Details", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_NO_ERROR_TEXT", + "message": "Complaint No should be minimum 6 digits", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_PIN_COMPLAINT_LOCATION_TEXT", + "message": "Click and hold to drop the pin to complaint location. If you are not able to pin the location you can skip the continue for next step.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_POSTALCODE__DETAILS", + "message": "Postal Code", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_RATE_HELP_TEXT", + "message": "How would you rate your experience with us?", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_RATE_TEXT", + "message": "How would you rate your experience with us?", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_SELECT_CITY", + "message": "City", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_SUBMITTED_COMPLAINT_NO", + "message": "Complaint No.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_SUBMITTED_LABEL1", + "message": "Complaint Registered Successfully", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_SUBMITTED_LABEL2", + "message": "You can track the status of your complaint on this app anytime!", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_SUBMITTED_THANKYOU", + "message": "Thank You!", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_SUBTYPE_TEXT", + "message": "The complaint type you have chosen has following complaint sub-types. Select the option of your choice from the list given below.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_TYPE_DRAINS", + "message": "Drains", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_TYPE_GARBAGE", + "message": "Garbage", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_TYPE_OTHERS", + "message": "Others", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_TYPE_PUBLIC_HEALTH_HYGIENE", + "message": "Public Health & Hygiene", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_TYPE_PUBLIC_LAND_PROPERTY", + "message": "Public Land & Property", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_TYPE_SEARCH_PLACEHOLDER", + "message": "Search", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_TYPE_STREET_LIGHTS", + "message": "Street Lights", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_TYPE_TEXT", + "message": "Select the option related to your complaint from the list given below. If the complaint type you are looking for is not listed select others.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_COMPLAINT_TYPE_WATER", + "message": "Water", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_CONTACTUS_OPEN_MAP", + "message": "Open Map", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_CONTACTUS_WEEKDAY", + "message": "Mon – Fri", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_CONTACTUS_WEEKEND", + "message": "Sat", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_CREATECOMPLAINT_MOHALLA", + "message": "Locality", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_CREATECOMPLAINT_MOHALLA_PLACEHOLDER", + "message": "Choose Locality", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_DAYS_LEFT", + "message": "{0} days left", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_DAY_LEFT", + "message": "{0} day left", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_FEEDBACK_ENTER_RATING_ERROR", + "message": "Please rate your experience between 1-5 stars", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_FEEDBACK_OTHERS", + "message": "Others", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_FEEDBACK_QUALITY_OF_WORK", + "message": "Quality of Work", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_FEEDBACK_RATE_HELP_TEXT", + "message": "Help Us Help You", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_FEEDBACK_RATE_TEXT", + "message": "How would you rate your experience with us?", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_FEEDBACK_RESOLUTION_TIME", + "message": "Resolution Time", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_FEEDBACK_SERVICES", + "message": "Services", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_FEEDBACK_SUCCESS", + "message": "Thank You for your feedback!", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_FEEDBACK_WHAT_WAS_GOOD", + "message": "What was good ?", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_FILE_APPLICATION_PROPERTY_LOCATION_PROVIDE_LANDMARK_TITLE_TEXT", + "message": "Provide the landmark to help us reach the complaint location easily.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_HEADER_ADD_COMPLAINT", + "message": "Add Complaint", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_HEADER_ALL_COMPLAINTS", + "message": "All Complaints", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_HEADER_ASSIGN_COMPLAINT", + "message": "Assign Complaint", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_HEADER_COMPLAINT_SUBMITTED", + "message": "Complaint Filed", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_HEADER_COMPLAINT_SUMMARY", + "message": "Complaint Summary", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_HEADER_FEEDBACK", + "message": "Feedback", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_HEADER_FEEDBACK_ACKNOWLEDGEMENT", + "message": "Feddback Submitted", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_HEADER_REASSIGN_COMPLAINT", + "message": "Re-Assign Complaint", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_HEADER_REOPEN_COMPLAINT", + "message": "Reopen Complaint", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_HEADER_REQUEST_REASSIGN", + "message": "Request Re-Assign", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_HEADER_TRACK_LOCATION", + "message": "Track Location", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_HOME_FILE_COMPLAINT", + "message": "File Complaint", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_HOME_HEADER_CONTACT_US", + "message": "Contact Us", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_HOME_HEADER_HOME", + "message": "Home", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_HOME_HEADER_HOW_IT_WORKS", + "message": "How it Works", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_HOME_HEADER_LANGUAGE", + "message": "Language", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_HOME_HEADER_PROFILE", + "message": "Edit Profile", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_HOME_HOMEHEADER", + "message": "Home", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_HOME_MY_COMPLAINTS", + "message": "My Complaints", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_HOME_MY_COMPLAINTS_CARD_LABEL", + "message": "My Complaints", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_HOME_STATUS_PREFIX", + "message": "Your complaint has been", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_HOME_STATUS_REASSIGN_PREFIX", + "message": "Your complaint is", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_HOME_UPDATES", + "message": "Filed Complaints", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_HOWITWORKS_CONNECT_OFFICER", + "message": "Connect to Concerned Officer", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_HOWITWORKS_DESCRIPTION", + "message": "We have made connecting with us easier than ever before. Once you raise the complaint, we will assign it to the responsible officer. You can track the status of your complaint on our web-site under “ My Complaints “ till your complaint is resolved.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_HOWITWORKS_RAISE_COMPLAINT", + "message": "Raise a Complaint", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_HOWITWORKS_TRACK_STATUS", + "message": "Track Status", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_LANDING_PAGE_COMPLAINTS_DESCRIPTION", + "message": "mSeva Complaints offers an easy to use interface which enables you to lodge civic works related complaints. It also lets you track the status of your complaint and facilitates direct interaction with your municipality till its resolution.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_LANDING_PAGE_PROPERTY_TAX_DESCRIPTION", + "message": "Assess, pay and track your Property Taxes online with mSeva Property Tax.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_LANDING_PAGE_TRADE_LICENSE_DESCRIPTION", + "message": "A licensed trade will always enjoy a greater goodwill and attract more customers and investors than unregistered entities. Help your city to plan and support your business. Apply for your Trade License Now!", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_LANDING_PAGE_WELCOME_TEXT", + "message": "Welcome", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_MANDATORY_COMMENTS", + "message": "Comments are mandatory", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_MAP_MOVE_PIN", + "message": "Move pin to adjust", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_MAP_PICK", + "message": "Pick", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_MYCOMPLAINTS_CLOSED", + "message": "Complaint Resolved. Please rate", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_MYCOMPLAINTS_COMPLAINT_HEADER", + "message": "ComplaintHeader", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_MYCOMPLAINTS_COMPLAINT_PREFIX", + "message": "Complaint has been", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_MYCOMPLAINTS_ESCALATED_TO", + "message": "Escalated To:", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_MYCOMPLAINTS_NO_COMPLAINTS", + "message": "You haven't logged any complaints yet. \nStart with one, make a change.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_MYCOMPLAINTS_NO_COMPLAINTS_EMPLOYEE", + "message": "No Records Found", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_MYCOMPLAINTS_RATE", + "message": ". Please rate", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_MYCOMPLAINTS_REASSIGN_MESSAGE1", + "message": "requested for re-assign", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_MYCOMPLAINTS_REASSIGN_MESSAGE2", + "message": "You have", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_MYCOMPLAINTS_REJECTED", + "message": "Complaint has been Rejected", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_MYCOMPLAINTS_RE_ASSIGNED", + "message": "Complaint Re-assigned to", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_MYCOMPLAINTS_TO", + "message": "to", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_MYCOMPLAINTS_TRACK", + "message": "TRACK", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_OVERDUE_BY_DAY", + "message": "Overdue by {0} day", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_OVERDUE_BY_DAYS", + "message": "Overdue by {0} days", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_OVERDUE_BY_DAY_TESTING", + "message": "Overdue by {0} and {1} week", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_PGR_COMPLAINT_DETAILS", + "message": "Complaint Details", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_PGR_COMPLAINT_NUMBER", + "message": "Complaint No.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_PGR_CREATE_COMPLAINT", + "message": "Create Complaint", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_PGR_LOCALITY", + "message": "Locality", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_PGR_REPORTS_HEADER", + "message": "Citizen Complaint Resolution System Reports", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_PGR_RESPONSE", + "message": "Response", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_PGR_SEND_COMMENT", + "message": "Send", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_PROFILE_EMAIL", + "message": "Email Id", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_PROFILE_EMAIL_ERRORMSG", + "message": "Invalid Email Id", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_PROFILE_EMAIL_PLACEHOLDER", + "message": "Enter Your Email Id", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_PROFILE_SAVE", + "message": "Save", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_REJECT_COMPLAINT", + "message": "Employee Name", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_REOPEN_COMPLAINT", + "message": "Choose Reason to Re-open the Complaint", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_REOPEN_COMPLAINT_WHY", + "message": "Why do you want to Re-Open your Complaint?", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_REOPEN_OPTION_FOUR", + "message": "No permanent solution", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_REOPEN_OPTION_ONE", + "message": "No work was done", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_REOPEN_OPTION_THREE", + "message": "Employee did not turn up", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_REOPEN_OPTION_TWO", + "message": "Only partial work was done", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_REOPEN_SUCCESS_MESSAGE", + "message": "Your complaint has been Re-opened", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_SELECT_CITY_AMRITSAR", + "message": "Amritsar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_SELECT_CITY_BHATINDA", + "message": "Bhatinda", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_SELECT_CITY_CHANDIGARH", + "message": "Chandigarh", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_SELECT_CITY_CHOOSE_CITY", + "message": "Choose City", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_SELECT_CITY_FARIDKOT", + "message": "Faridkot", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_SELECT_CITY_JALANDHAR", + "message": "Jalandhar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_SELECT_CITY_LUDHIYAA", + "message": "Ludhiana", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_SELECT_CITY_MOHALI", + "message": "Mohali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_SORT_OPTION_ONE", + "message": "Complaint Date - Old to New", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_SORT_OPTION_THREE", + "message": "Days Remaining to SLA", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_SORT_OPTION_TWO", + "message": "Complaint Date - New to old", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "CS_UPLOAD_RESTRICTIONS", + "message": "**Upload restrictions", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "DASHBOARD_CITIZEN_SERVICES_LABEL", + "message": "Citizen Services", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "DASHBOARD_TITLE_PGR", + "message": "Dashboard", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "DASHBOARD_WHATS_NEW_LABEL", + "message": "Whats New", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "DEPARTMENT_DEPT_1", + "message": "Street Lights", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "DEPARTMENT_DEPT_3", + "message": "Garbage", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "DEPT_1", + "message": "Street Lights", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "DEPT_3", + "message": "Garbage", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE.ASSIGNMENT.TITLE", + "message": "ASSIGNMENT DETAILS", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE.EMPLOYEE.TITLE", + "message": "EMPLOYEE DETAILS", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE.JURISDICTION.TITLE", + "message": "JURISDICTION LIST", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE.OTHER.TITLE", + "message": "OTHER DETAILS", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "EMPLOYEE.SERVICE.TITLE", + "message": "SERVICE SECTION", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ERR_COMPLAINT_NUMBER_SEARCH", + "message": "Enter at least last 6 digit of complaint No", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_ALL_COMPLAINTS_ASSIGNED_TAB_LABEL", + "message": "ASSIGNED", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_ALL_COMPLAINTS_ASSIGNED_TO", + "message": "Assigned to:", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_ALL_COMPLAINTS_HEADER", + "message": "All Complaints", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_ALL_COMPLAINTS_SUBMITTED_BY", + "message": "Submitted By :", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_ALL_COMPLAINTS_UNASSIGNED_TAB_LABEL", + "message": "UNASSIGNED", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_ASSIGN_STATUS_ASSIGN", + "message": "Choose Employee to assign complaint to from the list", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_ASSIGN_STATUS_REASSIGN", + "message": "Choose Employee to Re-assign complaint to from the list", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_ASSIGN_TO_EMPLOYEE_HEADER", + "message": "Assign to Employee", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_CLOSED_COMPLAINTS_HEADER", + "message": "Closed Complaints", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_ASSIGN", + "message": "ASSIGN", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_CLEAR_SEARCH", + "message": "Clear Search", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_FILED_BY", + "message": "Filed By", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_FILED_VIA_MOBILE", + "message": "Filed Via Mobile App", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_FILED_VIA_WEB", + "message": "Filed Via Web", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_FILED_VIA_WHATSAPP", + "message": "Filed via Whatsapp", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_FILTER", + "message": "Filter By", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_FILTER_BY", + "message": "Filter By", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_INBOX", + "message": "Inbox", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_REASSIGN", + "message": "RE-ASSIGN", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_SEARCH", + "message": "Search", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_SEARCH_COMPLAINT", + "message": "Search Complaint", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_SEARCH_EMPLOYEE", + "message": "Search Employee", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_TRACK_COMPLAINT_TEXT", + "message": "The notification along with complaint number is sent to your applicant’s mobile number. Applicant can track the complaint status using mobile or web app.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_COMPLAINTS_COUNT_RATIO_LABEL", + "message": "Showing {0} of {1} complaints", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_COMPLAINT_ASSIGNED_HEADER", + "message": "Complaint Assigned", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_COMPLAINT_DETAILS_ASSIGNED_BY", + "message": "Assigned By", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_COMPLAINT_DETAILS_REASSIGNED_BY", + "message": "Re-Assigned By", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_COMPLAINT_FILED_BY_CSR", + "message": "Complaint Filed at Citizen Service Desk", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_COMPLAINT_REASSIGNED_HEADER", + "message": "Complaint Re-Assigned", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_COMPLAINT_REJECTED_HEADER", + "message": "Complaint Rejected", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_COMPLAINT_REJECT_SUCCESS_MESSAGE", + "message": "You have Rejected this complaint.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_COMPLAINT_RESOLVED_SUCCESS_MESSAGE", + "message": "You have marked the complaint as", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_COMPLAINT_SUCCESS_LASTLABEL", + "message": "Please share the complaint no. with the citizen", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_COMPLAINT_SUMMARY_MAP", + "message": "MAP", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_CREATECOMPLAINT_ADDITIONAL_DETAILS", + "message": "Additional Complaint Details", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_CREATECOMPLAINT_ADDITIONAL_DETAILS_PLACEHOLDER", + "message": "Add complaint description", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_CREATECOMPLAINT_ADDRESS", + "message": "Address", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_CREATECOMPLAINT_ADDRESS_PLACEHOLDER", + "message": "Enter complaint address", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_CREATECOMPLAINT_COMPLAINT_NAME", + "message": "Citizen Name", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_CREATECOMPLAINT_COMPLAINT_NAME_PLACEHOLDER", + "message": "Enter citizen name", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_CREATECOMPLAINT_FOR", + "message": "Complaint For", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_CREATECOMPLAINT_MOBILE_NUMBER", + "message": "Citizen Mobile No.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_CREATECOMPLAINT_MOBILE_NUMBER_PLACEHOLDER", + "message": "Enter citizen mobile no.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_CREATECOMPLAINT_MOHALLA", + "message": "Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_CREATECOMPLAINT_MOHALLA_PLACEHOLDER", + "message": "Select your Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_CREATECOMPLAINT_NEW_COMPLAINT", + "message": "New Complaint", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_CREATECOMPLAINT_PROVIDE_COMPLAINANT_DETAILS", + "message": "Complainant Details", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_CREATECOMPLAINT_SELECT_PLACEHOLDER", + "message": "Select", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_CREATE_COMPLAINT", + "message": "Create Complaint", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_DIALOG_SORT_BY", + "message": "Sort By", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_EMPLOYEE_DIRECTORY_HEADER", + "message": "Employee Directory", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_MYCOMPLAINTS_CLEAR_SEARCH_BUTTON", + "message": "CLEAR SEARCH", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_MYCOMPLAINTS_COMPLAINT_NO", + "message": "Enter last 6 digits of Complaint No", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_MYCOMPLAINTS_NO_ASSIGNED_COMPLAINTS", + "message": "No assigned complaints", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_MYCOMPLAINTS_NO_COMPLAINTS_ASSIGNED", + "message": "No complaints to show", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_MYCOMPLAINTS_NO_COMPLAINTS_TO_ASSIGN", + "message": "No complaints to Assign", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_MYCOMPLAINTS_SEARCH_BUTTON", + "message": "SEARCH", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_NO_SEARCH_RESULTS", + "message": "No search results found", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_OPEN_COMPLAINTS_HEADER", + "message": "Open Complaints", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_PGR_FILTER_STATUS", + "message": "Status", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_PGR_HEADER_COMPLAINT", + "message": "Citizen Complaint Resolution System", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_PGR_INBOX", + "message": "Inbox", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_PGR_NEW_COMPLAINT", + "message": "New Complaint", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_REASON_TO_REJECT_HEADER", + "message": "Reason to Reject", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_REASSIGN_OPTION_FOUR", + "message": "Other", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_REASSIGN_OPTION_ONE", + "message": "Not a valid complaint", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_REASSIGN_OPTION_THREE", + "message": "Absent or on leave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_REASSIGN_OPTION_TWO", + "message": "Not my responsibility", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_REASSIGN_REQUEST_QUESTION", + "message": "Why do you want this complaint to be Re-Assigned?", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_REASSIGN_REQUEST_SUCCESS_MESSAGE", + "message": "Your Re-Assign request has been sent.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_REASSIGN_TO_EMPLOYEE_HEADER", + "message": "Re-Assign to Employee", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_REJECT_BUTTON", + "message": "REJECT", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_REJECT_COMPLAINT_QUESTION", + "message": "Why do you want to Reject this Complaint?", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_REJECT_OPTION_FOUR", + "message": "Other", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_REJECT_OPTION_THREE", + "message": "Operation already underway", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_REJECT_OPTION_TWO", + "message": "Out of operational scope", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_REQUEST_REQUEST_RE_ASSIGN", + "message": "REQUEST RE-ASSIGN", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_RESOLVE_MARK_RESOLVED", + "message": "MARK RESOLVED", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_SEARCH_BOTTON", + "message": "SEARCH", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_SEARCH_BUTTON", + "message": "SEARCH", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_SORT_BOTTON", + "message": "SORT", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "ES_SORT_BUTTON", + "message": "SORT", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "FAILED_TO_UPDATE_COMPLAINT", + "message": "Failed to update the complaint, please try again later.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "FILTER_BY", + "message": "FILTER BY", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "HR_COMMON_TABLE_COL_DEPT", + "message": "Department", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "HR_SUMMARY_DEPT_TEST_DEATILS_SUBHEADER", + "message": "Department Test Details", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "HR_SUMMARY_EDUCATION_DEATILS_SUBHEADER", + "message": "Education Details", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "HR_SUMMARY_PERSONAL_DEATILS_SUBHEADER", + "message": "Personal Details", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "HR_SUMMARY_PROFESSIONAL_DEATILS_SUBHEADER", + "message": "Professional Details", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "MYSELF", + "message": "Myself", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "NO_RESULTS_FOUND", + "message": "No Results Found", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PGR_ACTION_ASSIGN", + "message": "Assign Complaint", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PGR_ACTION_REASSIGN", + "message": "Re-Assign Complaint", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PGR_ACTION_REJECT", + "message": "Reject Complaint", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PGR_ACTION_REOPEN", + "message": "Reopen Complaint", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PGR_ACTION_RESOLVE", + "message": "Resolve Complaint", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PGR_APPLY_PENDINGFORASSIGNMENT_SMS_MESSAGE", + "message": "Dear Citizen, Your complaint for {complaint_type} has been submitted with ID {id} on {date}. You can track your complaint status on the web portal.\n\nEGOVS", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PGR_ASSIGN_CITIZEN_PENDINGATLME_SMS_MESSAGE", + "message": "Dear Citizen, Your complaint for {complaint_type} with ID {id} submitted on {date} has been assigned to {emp_name}, {emp_designation}, {emp_department}. You can track your complaint status and connect with our officials on the web portal.\n\nEGOVS", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PGR_ASSIGN_EMPLOYEE_PENDINGATLME_SMS_MESSAGE", + "message": "Shri {emp_name}, Complaint for {complaint_type} with ID {id} has been assigned to you. Please take appropriate action. {ao_designation} - {ulb}.\n\nEGOVS", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PGR_CITIZEN_APPLY_PENDINGFORASSIGNMENT_SMS_MESSAGE", + "message": "Dear Citizen, Your complaint for {complaint_type} has been submitted with ID {id} on {date}. You can track your complaint status on the web portal.\n\nEGOVS", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PGR_CITIZEN_ASSIGN_PENDINGATLME_SMS_MESSAGE", + "message": "Dear Citizen, Your complaint for {complaint_type} with ID {id} submitted on {date} has been assigned to {emp_name}, {emp_designation}, {emp_department}. You can track your complaint status and connect with our officials on the web portal.\n\nEGOVS", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PGR_CITIZEN_REASSIGN_PENDINGATLME_SMS_MESSAGE", + "message": "Dear Citizen, Your complaint for {complaint_type} with ID {id} submitted on {date} has been re-assigned to {emp_name}, {emp_designation}, {emp_department}. You can track your complaint status and connect with our officials on the web portal. \n\nEGOVS", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PGR_CITIZEN_REASSIGN_PENDINGFORREASSIGNMENT_SMS_MESSAGE", + "message": "Dear Citizen, Your complaint for {complaint_type} with ID {id} submitted on {date} has been re-assigned to {emp_name}, {emp_designation}, {emp_department}. You can track your complaint status and connect with our officials on the web portal.\n\nEGOVS", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PGR_CITIZEN_REJECT_REJECTED_SMS_MESSAGE", + "message": "Dear Citizen, Your complaint for {complaint_type} with ID {id} submitted on {date} has been rejected. Reason for Rejection: {additional_comments} If you wish to re-open the complaint, you can visit the web portal.\n\nEGOVS", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PGR_CITIZEN_REOPEN_PENDINGFORASSIGNMENT_SMS_MESSAGE", + "message": "Dear Citizen, Your complaint for {complaint_type} with ID {id} submitted on {date} has been Re-opened as per your request. You can track your complaint status and connect with our officials on the web portal.\n\nEGOVS", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PGR_CITIZEN_RESOLVE_RESOLVED_SMS_MESSAGE", + "message": "Dear Citizen, Your complaint for {complaint_type} with ID {id} submitted on {date} has been resolved by {emp_name}. If you are not satisfied with service you can RE-OPEN complaint through web portal or by calling your nearest municipal office.\n\nEGOVS", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PGR_CLOSE_EMPLOYEE_CLOSEDAFTERRESOLUTION_SMS_MESSAGE", + "message": "Shri {emp_name}, Complaint for {complaint_type} with ID {id} has received {rating}/5 feedback from the citizen. Thank you for your service.\n\nEGOVS", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PGR_DEFAULT_CITIZEN_SMS_MESSAGE", + "message": "Your current complaint status is {status}. You can track your complaint status on the mSeva app or your local government web portal.\n\nEGOVS", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PGR_DEFAULT_SMS_MESSAGE", + "message": "Your complaint has been {status}. You can track your complaint status on the mSeva app or your local government web portal.\n\nEGOVS", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PGR_EMPLOYEE_ASSIGN_PENDINGATLME_SMS_MESSAGE", + "message": "Shri {emp_name}, Complaint for '{complaint_type}' with ID {id} has been assigned to you. Please take appropriate action. {ao_designation} - {ulb}.\n\nEGOVS", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PGR_EMPLOYEE_RATE_CLOSEDAFTERREJECTION_SMS_MESSAGE", + "message": "Shri {emp_name}, Complaint for {complaint_type} with ID {id} has received {rating}/5 feedback from the citizen. Thank you for your service.\n\nEGOVS", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PGR_EMPLOYEE_RATE_CLOSEDAFTERRESOLUTION_SMS_MESSAGE", + "message": "Shri {emp_name}, Complaint for {complaint_type} with ID {id} has received {rating}/5 feedback from the citizen. Thank you for your service.\n\nEGOVS", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PGR_EMPLOYEE_REASSIGN_PENDINGATLME_SMS_MESSAGE", + "message": "Shri {emp_name}, Complaint for '{complaint_type}' with ID {id} has been re-assigned as per your request. {ao_designation} - {ulb} \n\nEGOVS", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PGR_EMPLOYEE_REASSIGN_PENDINGFORREASSIGNMENT_SMS_MESSAGE", + "message": "Shri {emp_name}, Complaint for {complaint_type} with ID {id} has been re-assigned as per your request. {ao_designation} - {ulb}.\n\nEGOVS", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PGR_EMPLOYEE_REOPEN_PENDINGFORASSIGNMENT_SMS_MESSAGE", + "message": "Shri {emp_name}, Complaint for {complaint_type} with ID {id} has been Re-opened by the citizen. It is being reviewed by Assigning officer - {ulb}.\n\nEGOVS", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PGR_REASSIGN_CITIZEN_PENDINGATLME_SMS_MESSAGE", + "message": "Dear Citizen, Your complaint for {complaint_type} with ID {id} submitted on {date} has been re-assigned to {emp_name}, {emp_designation}, {emp_department}. You can track your complaint status and connect with our officials on the web portal.\n\nEGOVS", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PGR_REASSIGN_EMPLOYEE_PENDINGATLME_SMS_MESSAGE", + "message": "Shri {emp_name}, Complaint for {complaint_type} with ID {id} has been re-assigned as per your request. {ao_designation} - {ulb}.\n\nEGOVS", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PGR_REASSIGN_PENDINGATLME_SMS_MESSAGE", + "message": "Dear Citizen, Your complaint for {complaint_type} with ID {id} submitted on {date} has been re-assigned to {reassign_emp_name}, {emp_designation}, {emp_department}. You can track your complaint status and connect with our officials on the web portal.\n\nEGOVS", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PGR_REJECT_CITIZEN_REJECTED_SMS_MESSAGE", + "message": "Dear Citizen, Your complaint for {complaint_type} with ID {id} submitted on {date} has been rejected. Reason for Rejection: {reason}, Additional Comments: {additional_comments} If you wish to re-open the complaint, you can visit the web portal.\n\nEGOVS", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PGR_REJECT_REJECTED_SMS_MESSAGE", + "message": "Dear Citizen, Your complaint for {complaint_type} with ID {id} submitted on {date} has been rejected. Reason for Rejection: {reason}, Additional Comments: {additional_comments} If you wish to re-open the complaint, you can visit the web portal.\n\nEGOVS", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PGR_REOPEN_CITIZEN_PENDINGFORASSIGNMENT_SMS_MESSAGE", + "message": "Dear Citizen, Your complaint for {complaint_type} with ID {id} submitted on {date} has been RE-OPEN as per your request. You can track your complaint status and connect with our officials on the web portal.\n\nEGOVS", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PGR_REOPEN_EMPLOYEE_PENDINGFORASSIGNMENT_SMS_MESSAGE", + "message": "Shri {emp_name}, Complaint for {complaint_type} with ID {id} has been re-opened by the citizen. It is being reviewed by Assigning officer - {ulb}.\n\nEGOVS", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PGR_REOPEN_PENDINGFORASSIGNMENT_SMS_MESSAGE", + "message": "Dear Citizen, Your complaint for {complaint_type} with ID {id} submitted on {date} has been RE-OPEN as per your request. You can track your complaint status and connect with our officials on the web portal.\n\nEGOVS", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PGR_RESOLVE_CITIZEN_RESOLVED_SMS_MESSAGE", + "message": "Dear Citizen, Your complaint for {complaint_type} with ID {id} submitted on {date} has been resolved by {emp_name}. If you are not satisfied with service you can RE-OPEN complaint through web portal or by calling your nearest municipal office\n\nEGOVS", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PGR_RESOLVE_RESOLVED_SMS_MESSAGE", + "message": "Dear Citizen,\n Your complaint for with ID submitted on has been resolved by . If you are not satisfied with service you can REOPEN complaint through web portal or by calling our CSR.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PPT_COMMON_ASSESSMENT_FORM_HEADER", + "message": "Assessment Form", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PROFILE_UPDATED", + "message": "Profile is successfully updated", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_ADDITIONAL_CHARGES", + "message": "Additional Charges", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_ADDITIONAL_REBATE", + "message": "Additional Rebate", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_ADDRESS_ERROR_MESSAGE", + "message": "Enter valid address", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_ADD_NEW_PROPERTY", + "message": "Add New Property", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_ADD_UNIT", + "message": "ADD ONE MORE UNIT", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_ADHOC_PENALTY", + "message": "Additional Penalty", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_ADHOC_REBATE", + "message": "Additional Rebate", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_ADVANCE_CARRYFORWARD", + "message": "Amount Paid", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_AGREE_CONTINUE", + "message": "AGREE & CONTINUE", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_AMOUNT_PAID_HINT_TEXT", + "message": "Enter the amount paid", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_AMOUNT_TO_PAY_INR", + "message": "Amount to pay (INR)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_ASSESMENT1_NUMBER_OF_FLOORS", + "message": "No. of floors", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_ASSESMENT1_PLOT_SIZE", + "message": "Plot Size(sq yards)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_ASSESMENT1_PLOT_SIZE_ERROR_MESSAGE", + "message": "Please enter a valid plot size", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_ASSESMENT1_PROPERTY_TYPE", + "message": "Type of Property", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_ASSESPAY_SELECTPROPERTY", + "message": "Assess & Pay : Select Property", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_ASSESSMENT1_FORM_HEADING", + "message": "Tax Assessment Details - 1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_ASSESSMENT_ID", + "message": "Property Tax Assesssment ID", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_ASSESSMENT_ID_PLACEHOLDER", + "message": "Enter property tax assesssment ID", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_ASSESSMENT_INFORMATION_FORM_HEADING", + "message": "Assessment Information", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_BANK_BRANCH", + "message": "Bank Branch", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_BUILT_AREA", + "message": "Built Area", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_BUILT_AREA_ERROR_MESSAGE", + "message": "Enter a valid built area size", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_BUILT_UP_AREA_TOOLTIP_MESSAGE", + "message": "Carpet Area + balcony area + thickness of outer walls", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_CALCULATION_DETAILS", + "message": "CALCULATION DETAILS", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_CALCULATION_LOGIC", + "message": "Calculation Logic", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_CALCULATION_LOGIC_TEXT", + "message": "Property Tax = Built up area on GF*Rates per unit of GF-built up empty land on GF * Rate per unit of GF-empty land 𝝨(built-up on nth floor*Rate per unit of nth floor-built up)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_CANCER_CESS", + "message": "Cancer Cess", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_CHARGE_SLABS", + "message": "Applicable Charge Slabs", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_CHECK_DECLARATION_BOX", + "message": "Please check the declaration box to proceed futher", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_CHECK_DECLATION_BOX", + "message": "Please check the declaration box to proceed futher", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_CHEQUE_NUMBER_ERROR_MESSAGE", + "message": "Check no. should be minimum 6 digits", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_COMMONS_GO_BACK", + "message": "GO BACK", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_COMMONS_NEXT", + "message": "NEXT", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_COMMONS_PROPERTY_TYPE", + "message": "Property Type", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_COMMONS_PROPERTY_USAGE_TYPE", + "message": "Property Usage Type", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_COMMONS_SELECT_PLACEHOLDER", + "message": "Select", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_COMMON_ASSESSMENT_FORM_HEADER", + "message": "Assessment Form", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_COMMON_ASSESSMENT_FORM_HEADERS", + "message": "Assessment Form", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_COMMON_GO_BACK", + "message": "GO BACK", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_COMMON_NEXT", + "message": "Next", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_COMMON_PLEASE_SELECT", + "message": "-- Please Select --", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_COMMON_SELECT_PLACEHOLDER", + "message": "Select", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_COMMON_SQFT_PLACEHOLDER", + "message": "Mention in sq ft", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_COMPLAINT_DETAILS_ERROR_MESSAGE", + "message": "Complaint Details should be less than 300 characters", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_COMPLETED_ASSESSMENTS", + "message": "Completed Assessments", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_DATE_HINT_TEXT", + "message": "dd/mm/yy", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_DD_NUMBER_ERROR_MESSAGE", + "message": "DD should be minimum 6 digits", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_DECIMAL_CEILING_CREDIT", + "message": "Round off", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_DECIMAL_CEILING_DEBIT", + "message": "Round off", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_DESCRIPTION_FLOATING_LABEL", + "message": "Description", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_DESCRIPTION_HINT_TEXT", + "message": "Enter a description of the reason", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_DOCUMENT_ID_TOOLTIP_MESSAGE", + "message": "ID No. for selected Special Category", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_DOCUMENT_ID_TYPE_TOOLTIP_MESSAGE", + "message": "ID proof for selected Special Category", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_EDIT", + "message": "EDIT", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_EDIT_TEXT", + "message": "EDIT", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_EMAIL_ID_ERROR_MESSAGE", + "message": "Enter valid email id", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_EMP_FORM1_HEADER_MESSAGE", + "message": "Collect information from the citizen to identify the property.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_EMP_FORM2_HEADER_MESSAGE", + "message": "Collect information from the citizen to define his/her property.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_EMP_FORM3_HEADER_MESSAGE", + "message": "Collect information from the citizen regarding the owner(s) of the property.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_EMP_FORM4_HEADER_MESSAGE", + "message": "Verify the data provided by the citizen and add charges/rebate if required.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_EMP_FORM5_HEADER_MESSAGE", + "message": "Collect payment from the citizen and enter the payment details.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_ENTER_AMOUNT", + "message": "Enter amount", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_EXAMPLE", + "message": "Examples", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_EXAMPLES", + "message": "Examples", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_FAQ", + "message": "FAQ's", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_FAQs", + "message": "Frequently Asked Questions", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_FINAL_DECLARATION", + "message": "Declaration", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_FINAL_DECLARATION_MESSAGE", + "message": "I hereby declare and affirm that the above-furnished information is true and correct and nothing has been concealed therefrom. I am also aware of the fact that in case this information is found false/incorrect, the authorities are at liberty to initiate recovery of amount/interest/penalty/fine as provided in Punjab Municipal Act 1911 or Punjab Municipal Corporation Act 1976.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_FIRE_CESS", + "message": "Fire Cess", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_FLOOR_DETAILS_ADD_ONE_MORE_UNIT_INFO", + "message": "In a floor, each portion with a different usage or occupancy is a different unit", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_FORM1_HEADER_MESSAGE", + "message": "Please provide information to identify the property.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_FORM1_INFORMATION_MESSAGE", + "message": "If you do not have an existing Property ID, please visit your Municipal office with your Payment Receipt after you complete this assessment and you will be provided one.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_FORM2_BUILT_AREA", + "message": "Built-up area (sq ft)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_FORM2_BUILT_AREA_PLACEHOLDER", + "message": "Enter built-up area", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_FORM2_BUILT_UP_AREA_PLACEHOLDER", + "message": "Enter built-up area", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_FORM2_HEADER_MESSAGE", + "message": "Please provide information to define the property. The Property Tax will be calculated based on this.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_FORM2_NUMBER_OF_FLOORS", + "message": "No. of Floors", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_FORM2_OCCUPANCY", + "message": "Occupancy", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_FORM2_PLOT_SIZE", + "message": "Plot Size(sq yards)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_FORM2_PLOT_SIZE_PLACEHOLDER", + "message": "Enter plot size", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_FORM2_SELECT_FLOOR", + "message": "Select Floor", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_FORM2_SUB_USAGE_TYPE", + "message": "Sub Usage Type", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_FORM2_TOTAL_ANNUAL_RENT", + "message": "Total Annual Rent (INR)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_FORM2_TOTAL_ANNUAL_RENT_PLACEHOLDER", + "message": "Enter annual rent", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_FORM2_TOTAL_BUILT_AREA", + "message": "Total Super Built-up Area (sq ft)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_FORM2_TOTAL_BUILT_AREA_PLACEHOLDER", + "message": "Enter Super Built-up Area", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_FORM2_USAGE_TYPE", + "message": "Unit Usage Type", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_FORM3_ADDRESS_CHECKBOX", + "message": "Same as property address", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_FORM3_CORRESPONDENCE_ADDRESS", + "message": "Correspondence Address", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_FORM3_CORRESPONDENCE_ADDRESS_PLACEHOLDER", + "message": "Enter correspondence address", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_FORM3_DOCUMENT_ID_NO", + "message": "Document ID no.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_FORM3_DOCUMENT_ID_NO_PLACEHOLDER", + "message": "Enter identification no.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_FORM3_DOCUMENT_ID_TYPE", + "message": "Document ID Type", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_FORM3_DOCUMENT_ID_TYPE_PLACEHOLDER", + "message": "Enter identification no.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_FORM3_EMAIL_ID", + "message": "Email ID", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_FORM3_EMAIL_ID_PLACEHOLDER", + "message": "Enter email ID", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_FORM3_FEMALE", + "message": "Female", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_FORM3_GENDER", + "message": "Gender", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_FORM3_GUARDIAN", + "message": "Father's/Husband's Name", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_FORM3_GUARDIAN_PLACEHOLDER", + "message": "Enter name", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_FORM3_HEADER_MESSAGE", + "message": "Please provide information regarding the owner(s) of the property.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_FORM3_MALE", + "message": "Male", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_FORM3_MOBILE_NO", + "message": "Mobile No.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_FORM3_MOBILE_NO_PLACEHOLDER", + "message": "Enter Mobile No.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_FORM3_OWNERSHIP_TYPE", + "message": "Type of Ownership", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_FORM3_OWNERSHIP_TYPE_PLACEHOLDER", + "message": "Select Ownership Type", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_FORM3_OWNER_NAME_PLACEHOLDER", + "message": "Enter Owner's Name", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_FORM3_PAYER_MOBILE_NO", + "message": "Payer Mobile No", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_FORM3_RELATIONSHIP", + "message": "Relationship", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_FORM3_SPECIAL_CATEGORY", + "message": "Special Category", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_FORM3_TRANSGENDER", + "message": "Transgender", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_FORM4_DETAILED_BILL", + "message": "Detailed Bill", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_FORM4_HEADER_MESSAGE", + "message": "Verify the information you have provided and let us know how much you would like to pay against your bill.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_FORM4_IMPORTANT_DATES", + "message": "Important Dates", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_FORM4_PT_DUE", + "message": "Property Tax Dues:", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_FORM4_TOTAL", + "message": "Total", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_FORM5_HEADER_MESSAGE", + "message": "Collect payment from the citizen and enter the payment details.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_FOUR_DIGIT_ERROR_MESSAGE", + "message": "Enter 4 digits", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_FULL_AMOUNT", + "message": "Full Amount", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_HOME_COMPLAINT", + "message": "Citizen Complaint Resolution System", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_HOME_PAY", + "message": "PAY", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_HOME_PAY1", + "message": "PAY", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_HOUSE_NO_ERROR_MESSAGE", + "message": "House no should be less than 100 characters", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_HOW_IT_WORK", + "message": "How it works", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_HOW_IT_WORKS", + "message": "How it works", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_IFSC_ERROR_MESSAGE", + "message": "Please enter a valid IFSC", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_IFSC_FLOATING_LABEL", + "message": "IFSC", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_IFSC_HINT_TEXT", + "message": "Enter bank IFSC", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_INCOMPLETE_ASSESSMENT", + "message": "Incomplete Assessments", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_INCOMPLETE_ASSESSMENTS", + "message": "Incomplete Assessments", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_INDIVIDUAL_EXCEMPTION", + "message": "Individiual Exemption Category (if applicable)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_INSTITUTION_NAME", + "message": "Name of Institution", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_INSTITUTION_NAME_HINT_TEXT", + "message": "Enter Institute's name", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_INSTITUTION_TYPE", + "message": "Type of Institution", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_LANDLINE_NUMBER_FLOATING_LABEL", + "message": "Landline No.(with STD code)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_LANDLINE_NUMBER_HINT_TEXT", + "message": "Enter Landline No.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_LANDMARK_ERROR_MESSAGE", + "message": "Landmark should be less than 100 characters", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_LAND_NUMBER_ERROR_MESSAGE", + "message": "Enter valid landline number", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_MAKE_PAYMENT_DETAILED_BILL", + "message": "Detailed Bill", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_MAKE_PAYMENT_IMPORTANT_DATES", + "message": "Important Dates", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_MAKE_PAYMENT_PT_DUE", + "message": "Property Tax Dues:", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_MAKE_PAYMENT_TOTAL", + "message": "Total", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_MISPLACED_RECEIPT_FLOATING_LABEL", + "message": "Misplaced Receipt", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_MOBILE_NUMBER_ERROR_MESSAGE", + "message": "Enter valid mobile number", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_MODE_OF_PAYMENT", + "message": "Mode of payment", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_MOHALLA_TOOLTIP_MESSAGE", + "message": "Name of the area in which the property is located", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_MY_PROPERTIES", + "message": "My Properties", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_MY_PROPERTY", + "message": "My Properties", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_NAME_ERROR_MESSAGE", + "message": "Enter valid name (max length 64)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_NEW_PROPERTY_HEADER", + "message": "New Property", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_NOTIFICATIONS_COMPLAINT_ASSIGNED", + "message": "Your complaint has been assigned to the concerned department.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_NOTIFICATIONS_HEADER", + "message": "Notifications", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_NOTIFICATIONS_PROPERTY_TAX_PAID", + "message": "Your property tax has been assessed and paid successfully.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_NOTIFICATIONS_WATER_SEWERAGE_TAX_PAID", + "message": "Your Water & Sewerage tax has been paid successfully.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_NO_ASSESSMENT_BUTTON", + "message": "New Property Assessment", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_NO_ASSESSMENT_MESSAGE1", + "message": "You have no complete assessments.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_NO_ASSESSMENT_MESSAGE2", + "message": "You have no incomplete assessments!", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_NO_ASSESSMENT_MESSAGE3", + "message": "You have yet to assess for a property. Start Now:", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_NUMBER_OF_FLOORS_TOOLTIP_MESSAGE", + "message": "Total number of built floors in the property", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_OK", + "message": "OK", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_OLDPID_TOOLTIP_MESSAGE", + "message": "Unique ID assigned to the property by your Municipality", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_OOPS", + "message": "OOPS!", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_OWNER_EXEMPTION", + "message": "Special Category Exemption", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_OWNER_INFORMATION_FORM_HEADING", + "message": "Owner Information", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_OWNER_MOBILE_NUMBER", + "message": "Owner Mobile No.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_OWNER_MOBILE_NUMBER_PLACEHOLDER", + "message": "Enter owner mobile no.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_OWNER_NAME", + "message": "Name", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_OWNER_NAME_RECEIPT", + "message": "Owner {0} Name", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_PARTIAL_AMOUNT", + "message": "Partial Amount", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_PAYMENT_ABOUT", + "message": "About", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_PAYMENT_ACCESSANDPAY", + "message": "Assess & Pay", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_PAYMENT_ACCESS_AND_PAY", + "message": "Access & Pay", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_PAYMENT_ASSESS_AND_PAY", + "message": "Assess & Pay", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_PAYMENT_DETAILS", + "message": "Payment Details", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_PAYMENT_DRAFTS", + "message": "Drafts", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_PAYMENT_EXAMPLES", + "message": "Examples", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_PAYMENT_HOW_IT_WORKS", + "message": "How it works", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_PAYMENT_METHOD_BHIM_UPI", + "message": "BHIM UPI", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_PAYMENT_METHOD_CARD", + "message": "Credit /Debit Card", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_PAYMENT_METHOD_CARD_NUMBER", + "message": "Card Number", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_PAYMENT_METHOD_CARD_NUMBER_PLACEHOLDER", + "message": "Enter the card number", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_PAYMENT_METHOD_CASH", + "message": "Cash", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_PAYMENT_METHOD_CVV", + "message": "CVV", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_PAYMENT_METHOD_CVV_DESC", + "message": "Last 3 digits printed on the back of the card", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_PAYMENT_METHOD_EXPIRES_ON", + "message": "Expires on", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_PAYMENT_METHOD_MM", + "message": "MM", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_PAYMENT_METHOD_NAME_ON_CARD", + "message": "Name on Card", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_PAYMENT_METHOD_NAME_ON_CARD_PLACEHOLDER", + "message": "Enter the name on card", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_PAYMENT_METHOD_NET_BANKING", + "message": "Net Banking", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_PAYMENT_METHOD_PAYTM", + "message": "Paytm", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_PAYMENT_METHOD_YY", + "message": "YY", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_PAYMENT_MY_RECEIPTS", + "message": "My Receipts", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_PAYMENT_NEW_ASSEMENTS", + "message": "New Property Assessment", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_PAYMENT_PAID_ASSESSMENTS", + "message": "Paid Assessments", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_PAYMENT_PENDING_ASSESSMENTS", + "message": "Pending Assessments", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_PAYMENT_STEP_HEADER", + "message": "Property Tax", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_PAYMENT_STEP_HEADER1", + "message": "Property Tax", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_PAY_PROPERTY_TAX", + "message": "Pay Property Tax", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_PINCODE_ERROR_MESSAGE", + "message": "Pincode should be 6 digits", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_PLOT_SIZE_ERROR_MESSAGE", + "message": "Enter a valid Plot Size", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_POLICE_STATION_HEADER", + "message": "Police Stations", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_PROPERTY_ADDRESS_EXISTING_PID", + "message": "Existing Property ID", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_PROPERTY_ADDRESS_EXISTING_PID_PLACEHOLDER", + "message": "Enter existing property ID", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_PROPERTY_ADDRESS_OLDPID", + "message": "Old Property ID", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_PROPERTY_ADDRESS_OLDPID_ERRORMESSAGE", + "message": "Enter a valid property ID", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_PROPERTY_ADDRESS_OLDPID_PLACEHOLDER", + "message": "Enter old property ID", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_PROPERTY_ASSESSMENT_HEADER", + "message": "Property Assessment", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_PROPERTY_ASSESSMENT_HISTORY", + "message": "Assessment History", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_PROPERTY_ASSESSMENT_ID", + "message": "Property Tax Unique ID.:", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_PROPERTY_DETAILS_BUILDING_COLONY_NAME", + "message": "Building/Colony Name", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_PROPERTY_DETAILS_BUILDING_COLONY_NAME_PLACEHOLDER", + "message": "Enter buiding/colony name", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_PROPERTY_DETAILS_COLONY_NAME", + "message": "Building/Colony Name", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_PROPERTY_DETAILS_COLONY_NAME_ERRORMSG", + "message": "Enter building/colony name", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_PROPERTY_DETAILS_COLONY_NAME_PLACEHOLDER", + "message": "Enter building/colony name", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_PROPERTY_DETAILS_DOOR_NUMBER", + "message": "House/Shop No.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_PROPERTY_DETAILS_DOOR_NUMBER_ERRORMSG", + "message": "Enter a valid house no.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_PROPERTY_DETAILS_DOOR_NUMBER_PLACEHOLDER", + "message": "Enter house no.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_PROPERTY_DETAILS_FORM_HEADING", + "message": "Property Address", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_PROPERTY_DETAILS_MOHALLA", + "message": "Locality", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_PROPERTY_DETAILS_MOHALLA_ERRORMESSAGE", + "message": "Select a valid mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_PROPERTY_DETAILS_PINCODE", + "message": "Pincode", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_PROPERTY_DETAILS_PINCODE_ERRORMESSAGE", + "message": "Enter a valid area pincode", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_PROPERTY_DETAILS_PINCODE_ERRORMSG", + "message": "Existing property id should be less than 64 characters", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_PROPERTY_DETAILS_PINCODE_PLACEHOLDER", + "message": "Enter area pincode", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_PROPERTY_DETAILS_STREET", + "message": "Street Name", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_PROPERTY_DETAILS_STREET_ERRORMSG", + "message": "Enter a valid street name", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_PROPERTY_DETAILS_STREET_NAME", + "message": "Street Name", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_PROPERTY_DETAILS_STREET_NAME_PLACEHOLDER", + "message": "Enter Street Name", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_PROPERTY_DETAILS_STREET_PLACEHOLDER", + "message": "Enter street name", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_PROPERTY_DETAIL_FORM_HEADING", + "message": "Property Address", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_PROPERTY_INFORMATION", + "message": "Property Information", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_PROPERTY_TAX_WHICH_YEAR_QUESTION", + "message": "Which year’s taxes would you like to pay?", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_PROPERTY_TAX_WHICH_YEAR_QUESTIONS", + "message": "Which year’s taxes would you like to pay?", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_PROPERTY_VIEW_ALL_ASSESSMENTS", + "message": "VIEW ALL ASSESSMENTS", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_REASON_FOR_CHARGES", + "message": "Reason for Charges", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_REASON_FOR_REBATE", + "message": "Reason for rebate", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_RECEIPTS_SUCCESS_MESSAGE", + "message": "Payment has been made successfully!", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_RECEIPTS_SUCCESS_MESSAGE4", + "message": "Payment has recorded successfully", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_RECEIPTS_SUCCESS_MESSAGE5", + "message": "Please direct the citizen to collect his/her existing property", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_RECEIPT_FAILURE_MESSAGE", + "message": "Your transaction has failed!", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_RECEIPT_FAILURE_MESSAGE1", + "message": "Your payment of INR", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_RECEIPT_FAILURE_MESSAGE2", + "message": "has failed", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_RECEIPT_FAILURE_MESSAGE3", + "message": "Please try again!", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_RECEIPT_NUMBER_HINT_TEXT", + "message": "Enter receipt no.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_RECEIPT_SUCCESS_MESSAGE", + "message": "Payment has been made successfully!", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_RECEIPT_THANKYOU", + "message": "Thank you!", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_REVIEW_PAY_FORM_HEADING", + "message": "Review & Pay", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_SEARCH_BUTTON", + "message": "SEARCH", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_SEARCH_PROPERTY", + "message": "Search Property", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_SEARCH_PROPERTY_TABLE_HEADER", + "message": "Property Search Result", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_SEARCH_PROPERTY_TABLE_HEADERS", + "message": "Property Search Result", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_SELECT_ACTION", + "message": "Select action", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_SELECT_PAYMENT_MODE", + "message": "Select payment mode", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_SUPER_AREA_ERROR_MESSAGE", + "message": "Enter a valid super area size", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_TAX", + "message": "Property Tax", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_TIME_INTEREST", + "message": "Interest", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_TIME_PENALTY", + "message": "Penalty", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_TIME_REBATE", + "message": "Rebate", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_TOTAL_ANNUAL_RENT_TOOLTIP_MESSAGE", + "message": "Total Rent collected on the property over a year", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_TOTAL_AREA_TOOLTIP_MESSAGE", + "message": "Total Carpet Area + Total balcony area + Total thickness of outer walls + Total common area (lift, stairs, lobby etc.)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_TYPE_OF_BUILDING", + "message": "Type of Buiding", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_TYPE_OF_USAGE", + "message": "Type of usage", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_Tax", + "message": "Property Tax (PT)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_UNIQUE_ID", + "message": "Property Tax Unique ID", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_UNIQUE_ID_PLACEHOLDER", + "message": "Enter property tax unique ID", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_UNIT", + "message": "Unit", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_UNIT_USAGE_EXEMPTION", + "message": "Usage Exemption", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_USAGE_EXCEMPTION", + "message": "Usage Exemption Category (if applicable)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "PT_VALID_DETAILS", + "message": "Enter valid details", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "REASSIGN", + "message": "Re-assign", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "REASSIGN_SUCCESSFULLY", + "message": "Re-assigned Successfully", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "REJECT", + "message": "Reject", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "REJECT_SUCCESSFULLY", + "message": "Rejected Successfully", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "REOPEN", + "message": "Re-Open", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "REOPEN_SUCCESSFULLY", + "message": "Reopened Successfully", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "REPORTS_RESULT_HEADER_DATE_RANGE", + "message": "Showing data for", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "REPORTS_RESULT_HEADER_DATE_UPTO", + "message": "Showing data upto", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "REPORTS_SEARCHFORM_APPLY", + "message": "Showing data upto", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "REPORTS_SEARCHFORM_MODIFY_DATE_HEADER", + "message": "Modify report by date range", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "REPORT_SEARCHFORM_DATE_GREATER", + "message": "To Date is Lesser than From Date", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "REPORT_SEARCHFORM_DATE_LESSER", + "message": "From Date is Greater than To Date", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "RESOLVE", + "message": "Resolve", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "RESOLVE_SUCCESSFULLY", + "message": "Resolved Successfully", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.ANIMALS", + "message": "Animals", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.BADSTREETLIGHT", + "message": "Bad Streetlight", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.BADSUPPLY", + "message": "Bad Supply", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.BADTRAFFICLIGHT", + "message": "Bad Traffic Light", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.BINNOTEMPTY", + "message": "Bin Not Empty", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.BINS", + "message": "Bins", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.BLOCK/OVERFLOWINGSEWAGE", + "message": "Block / Overflowing sewage", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.BLOCKED", + "message": "Blocked", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.BLOCKEDDRAIN", + "message": "Blocked Drain", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.BLOCKOROVERFLOWINGSEWAGE", + "message": "Block/Overflowing sewage", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.BLOCKOROVERFLOWINGSEWAGE.DEPT_4", + "message": "Block / Overflowing sewage", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.BLOCKOVERFLOWINGSEWAGE", + "message": "Block/Overflowing sewage", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.BOUNDARYSTRUCTUREIDENTITY", + "message": "Boundary, Structure & Identity", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.BROKEN", + "message": "Broken", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.BROKENBIN", + "message": "Broken Bin", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.BROKENGARBAGEBIN", + "message": "Broken Garbage Bin", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.BROKENGUARD", + "message": "Broken Guard", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.BROKENHANDPUMP", + "message": "Broken Handpump", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.BROKENORDAMAGEDPIPE", + "message": "Broken Or Damaged Pipe", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.BROKENORLEAKINGSEWAGEPIPE", + "message": "Borken or Leaking Sewage pipe", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.BROKENPIPEORTAP", + "message": "Broken Pipe Or Tap", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.BROKENWATERPIPEORLEAKAGE", + "message": "Broken water pipe / Leakage", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.BROKENWATERPIPEORLEAKAGE.DEPT_4", + "message": "Broken water pipe / Leakage", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.BROKENWATERPIPEORTAP", + "message": "Broken Water Pipe or Tap", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.BURNING", + "message": "Burning", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.BURNINGOFGARBAGE", + "message": "Burning of garbage", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.BURNINGOFGARBAGE.DEPT_3", + "message": "Burning of garbage", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.COMPENSATION", + "message": "Compensation(Redevelopment & Damaged Property)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.CONSTRUCTIONMATERIALLYINGONTHEROAD", + "message": "Construction material lying on the road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.CONSTRUCTIONMATERIALLYINGONTHEROAD.DEPT_4", + "message": "Construction material lying on the road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.CUSTOMS", + "message": "Customs Duty", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.CUSTOMSDUTY", + "message": "Compensation(Redevelopment & Damaged Property)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.CUTTINGORTRIMMINGOFTREEREQUIRED", + "message": "Cutting/trimming of tree required", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.CUTTINGORTRIMMINGOFTREEREQUIRED.DEPT_5", + "message": "Cutting/trimming of tree required", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.DAMAGED", + "message": "Damaged", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.DAMAGED/BLOCKEDFOOTPATH", + "message": "Damaged/blocked footpath", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.DAMAGEDBLOCKEDFOOTPATH", + "message": "Damaged/blocked footpath", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.DAMAGEDDRAIN", + "message": "Damaged Drain", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.DAMAGEDFOOTPATH", + "message": "Damaged Footpath", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.DAMAGEDGARBAGEBIN", + "message": "Damaged garbage bin", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.DAMAGEDGARBAGEBIN.DEPT_3", + "message": "Damaged garbage bin", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.DAMAGEDORBLOCKEDFOOTPATH", + "message": "Damaged/blocked footpath", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.DAMAGEDORBLOCKEDFOOTPATH.DEPT_4", + "message": "Damaged/blocked footpath", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.DAMAGEDROAD", + "message": "Damaged road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.DAMAGEDROAD.DEPT_4", + "message": "Damaged road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.DAMAGEDSTREETLIGHT", + "message": "Damaged Streetlights", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.DEADANIMALS", + "message": "Dead animals", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.DEADANIMALS.DEPT_3", + "message": "Dead animals", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.DEADBODY", + "message": "Dead Body", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.DEBRISORSILT", + "message": "Debris Or Silt", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.DIRTYORSMELLY", + "message": "Dirty Or Smelly", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.DIRTYORSMELLYPUBLICTOILETS", + "message": "Dirty/smelly public toilet", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.DIRTYORSMELLYPUBLICTOILETS.DEPT_3", + "message": "Dirty/smelly public toilet", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.DIRTYWATERSUPPLY", + "message": "Dirty water supply", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.DIRTYWATERSUPPLY.DEPT_4", + "message": "Dirty water supply", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.DISPLACEMENT", + "message": "Displacement (Insecurity)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.DRAINS", + "message": "Drains", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.DUMPING", + "message": "Dumping", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.EMPLOYEEABSENT", + "message": "Employee Absent", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.ENCROACHMENT", + "message": "Encroachment", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.ENCROACHMENTONPUBLICPROPERTY", + "message": "Enroachment on Public Property", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.FINANCE", + "message": "Tax Rate", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.FOOTPATHS", + "message": "Footpaths", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.GARBAGE", + "message": "Garbage", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.GARBAGEBINNOTEMPTY", + "message": "Garbage Bin not empty", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.GARBAGEBINNOTTHERE", + "message": "Garbage Bin not there", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.GARBAGENEEDSTOBECLEANED", + "message": "Garbage needs to be cleaned", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.GARBAGENEEDSTOBECLEARED", + "message": "Garbage needs to be cleared", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.GARBAGENEEDSTOBECLEARED.DEPT_3", + "message": "Garbage needs to be cleared", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.GOODGOVERNANCE", + "message": "Good Governance", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.GOVERNANCE", + "message": "Good Governance", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.HOUSEDEBATE", + "message": "Displacement (Insecurity)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.HOUSING", + "message": "House Debate (Kebele House & Proclamation 47/67)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.ILLEGALCONSTRUCTION", + "message": "Illegal Construction", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.ILLEGALCONSTRUCTIONS", + "message": "Illegal constructions", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.ILLEGALCONSTRUCTIONS.DEPT_6", + "message": "Illegal constructions", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.ILLEGALCUTTING", + "message": "Illegal Cutting", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.ILLEGALCUTTINGOFTREES", + "message": "Illegal Cutting of trees", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.ILLEGALCUTTINGOFTREES.DEPT_5", + "message": "Illegal Cutting of trees", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.ILLEGALDISCHARGE", + "message": "Illegal discharge of sewage", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.ILLEGALDISCHARGEOFSEWAGE", + "message": "Ilegal Discharge of Sewage", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.ILLEGALDISCHARGEOFSEWAGE.DEPT_4", + "message": "Illegal discharge of sewage", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.ILLEGALFOOTPATHSHOP", + "message": "Illegal Footpath Shop", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.ILLEGALHOARDING", + "message": "Illegal Hoarding", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.ILLEGALPARKING", + "message": "Illegal parking", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.ILLEGALPARKING.DEPT_6", + "message": "Illegal parking", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.ILLEGALSHOPS", + "message": "Illegal Shops", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.ILLEGALSHOPSONFOOTPATH", + "message": "Illegal shops on footpath", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.ILLEGALSHOPSONFOOTPATH.DEPT_6", + "message": "Illegal shops on footpath", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.ILLEGALSHOPSONTHEFOOTPATH", + "message": "Illegal Shops on the Footpath", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.INFRASTRUCTURE", + "message": "Boundary, Structure & Identity", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.JUSTICE", + "message": "Justice", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.LABOR", + "message": "Labor Dispute", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.LABORDISPUTE", + "message": "Labor Dispute", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.LANDVIOLATION", + "message": "Land Violation", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.LANDVIOLATIONS", + "message": "Land Violations", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.LEGAL", + "message": "Justice", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.LIGHTS", + "message": "Lights", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.MANHOLECOVERMISSINGORDAMAGED", + "message": "Manhole cover is missing/damaged", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.MANHOLECOVERMISSINGORDAMAGED.DEPT_4", + "message": "Manhole cover is missing/damaged", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.MANHOLEISSUE", + "message": "Manhole Issue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.MISUSE", + "message": "Misuse", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.MOSQUITOES", + "message": "Mosquitoes", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.MOSQUITOS", + "message": "Mosquitoes", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.NONSWEEPINGOFROAD", + "message": "Road needs Sweeping", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.NONSWEEPINGOFROAD.DEPT_3", + "message": "Non sweeping of road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.NOSTREETLIGHT", + "message": "No streetlight", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.NOSTREETLIGHT.DEPT_1", + "message": "No streetlight", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.NOTFUNCTIONAL", + "message": "Not Functional", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.NOTWATERSUPPLY", + "message": "Not Water Supply", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.NOWATERORELECTRICITY", + "message": "No Water Or Electricity", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.NOWATERORELECTRICITYINPUBLICTOILET", + "message": "No water/electricity in public toilet", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.NOWATERORELECTRICITYINPUBLICTOILET.DEPT_3", + "message": "No water/electricity in public toilet", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.NOWATERSUPPLY", + "message": "No Water Supply", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.NOWATERSUPPLY.DEPT_4", + "message": "No water supply", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.NonSweepingOfRoad", + "message": "Non Sweeping Of Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.OPENDEFACATION", + "message": "Open Defecation", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.OPENDEFECATION", + "message": "Open Defecation", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.OPENDEFECATION.DEPT_3", + "message": "Open Defecation", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.OPENLAND", + "message": "Open Land", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.OTHERS", + "message": "Others", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.OTHERS.DEPT_10", + "message": "Others", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.OVERFLOWING", + "message": "Overflowing", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.OVERFLOWING/BLOCKEDDRAIN", + "message": "Overflowing/Blocked drain", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.OVERFLOWINGBLOCKEDDRAIN", + "message": "Overflowing/Blocked drain", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.OVERFLOWINGDRAIN", + "message": "Owerflowing Drain", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.OVERFLOWINGORBLOCKEDDRAIN", + "message": "Overflowing/Blocked drain", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.OVERFLOWINGORBLOCKEDDRAIN.DEPT_4", + "message": "Overflowing/Blocked drain", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.OVERFLOWINGSEWAGE", + "message": "Overflowing Sewage", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.PARKREQUIRESMAINTENANCE", + "message": "Park requires maintenance", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.PARKREQUIRESMAINTENANCE.DEPT_5", + "message": "Park requires maintenance", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.PARKS", + "message": "Parks", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.PENSIONS", + "message": "Retirement", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.POLEORLIGHTDAMAGE", + "message": "Pole Or Light Damage", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.POORSWEEPING", + "message": "Poor Sweeping", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.POSSESSIONDISPUTE", + "message": "Possession Dispute", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.POTHOLES", + "message": "Potholes", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.POTHOLESONTHEROAD", + "message": "Potholes on the Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.PROPERTY", + "message": "Possession Dispute", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.PROPOSAL", + "message": "Customs Duty", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.PROPOSALS", + "message": "Proposal", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.PUBLICTOILETISDAMAGED", + "message": "Public toilet damaged", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.PUBLICTOILETISDAMAGED.DEPT_3", + "message": "Public toilet damaged", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.PUBLICTOILETISNOTWORKINGPROPERLY", + "message": "Public Toilet is not working properly", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.PUBLICTOILETS", + "message": "Public Toilets", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.REMOVEGARBAGEORWATER", + "message": "Remove Garbage Or Water", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.REPLACE/PROVIDEGARBAGEBIN", + "message": "Replace/provide garbage bin", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.REPLACEORPROVIDEGARBAGEBIN", + "message": "Replace/provide garbage bin", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.REPLACEPROVIDEGARBAGEBIN", + "message": "Replace/provide garbage bin", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.REQUESTNEW", + "message": "Request New", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.REQUESTSMOKEOP", + "message": "Request Smoke Op", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.REQUESTSPRAYINGORFOGGINGOPERATION", + "message": "Request spraying/ fogging operations", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.REQUESTSPRAYINGORFOGGINGOPERATION.DEPT_3", + "message": "Request spraying/ fogging operations", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.REQUESTSPRAYOP", + "message": "Request Spray Op", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.REQUESTTANKER", + "message": "Request Tanker", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.REQUESTTRIMMING", + "message": "Request Trimming", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.RETIREMENT", + "message": "Retirement", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.ROADORFOOTPATH", + "message": "Road Or Footpath", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.ROADS", + "message": "Roads", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.ROADSANDFOOTPATHS", + "message": "Roads & footpaths", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.ROADSCODEE", + "message": "Roads codee", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.SERVICE", + "message": "Service", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.SERVICENAME.FEVERS_DENGUE_MALARIA", + "message": "Fevers - Dengue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.SERVICENAME.NON_RECEIPT_OF_PENSIONS_DISABLED_ELDERLY_ETC", + "message": "Non-Receipt of Pensions - Disabled", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.SERVICENAME.REPAIRS_TO_FLYOVERS_BRIDGES_CULVERTS", + "message": "Repairs to Flyovers", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.SERVICENAME.UNHYGIENIC_IMPROPER_TRANSFER_OF_MEAT_LIVESTOCK", + "message": "Unhygienic", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.SEWAGE", + "message": "Sewage", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.SEWAGEEFFLUENTS", + "message": "Sewage Effluents", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.SHORTAGEOFWATER", + "message": "Shortage of water", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.SHORTAGEOFWATER.DEPT_4", + "message": "Shortage of water", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.SHORTSUPPLY", + "message": "Short Supply", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.SLOWPROGRESS", + "message": "Slow Progress", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.STAGNANTWATER", + "message": "Stagnant Water", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.STORMWATERDRAIN", + "message": "Storm Water Drain", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.STRAYANIMALS", + "message": "Stray animals", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.STRAYANIMALS.DEPT_3", + "message": "Stray animals", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.STRAYCATTLE", + "message": "Stray Cattle", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.STRAYDOGS", + "message": "Stray Dogs", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.STRAYPIGS", + "message": "Stray Pigs", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.STREETLIGHTNOTWORKING", + "message": "Streetlight not working", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.STREETLIGHTNOTWORKING.DEPT_1", + "message": "Streetlight not working", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.STREETLIGHTS", + "message": "Streetlights", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.SUGGESTION", + "message": "Proposal", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.SUGGESTIONS", + "message": "Suggestion", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.SUPPORT", + "message": "Support / Help", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.SUPPORTHELP", + "message": "House Debate (Kebele House & Proclamation 47/67)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.TAXRATE", + "message": "Tax Rate", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.TOILETS", + "message": "Toilets", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.TREES", + "message": "Trees", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.TRUCKSPILLAGE", + "message": "Truck Spillage", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.VACANTLAND", + "message": "Vacant Land", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.WATER", + "message": "Water", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.WATERANDSEWAGE", + "message": "Water & Sewage", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.WATERBODY", + "message": "Water Body", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.WATERLOGGED", + "message": "Water Logged", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.WATERLOGGEDROAD", + "message": "Water logged road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.WATERLOGGEDROAD.DEPT_4", + "message": "Water logged road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.WATERPRESSUREISVERYLESS", + "message": "Water pressure is very less", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "SERVICEDEFS.WATERPRESSUREISVERYLESS.DEPT_4", + "message": "Water pressure is very less", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1", + "message": "Mohalla Rajan Wala (both sides) - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC10", + "message": "Mohalla Majoran - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC100", + "message": "Mohalla Angaria wala - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1000", + "message": "Maqsudan Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1001", + "message": "Nagra Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1002", + "message": "Jawala Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1003", + "message": "New Jawala Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1004", + "message": "Patel Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1005", + "message": "New Patel Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1006", + "message": "Guru Ravidass Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1007", + "message": "Bhupinder Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1008", + "message": "Ashok Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1009", + "message": "Nagra Pind", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC101", + "message": "Miya Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1010", + "message": "New Nagra", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1011", + "message": "Shital Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1012", + "message": "New Shital Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1013", + "message": "Jugian", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1014", + "message": "Sham Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1015", + "message": "Amar Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1016", + "message": "Babu Labh Singh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1017", + "message": "Rattan Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1018", + "message": "New Rattan Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1019", + "message": "Shaheed Babu Labh Singh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC102", + "message": "Shalimar Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1020", + "message": "New Shaheed Babu Labh Singh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1021", + "message": "Madhuban Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1022", + "message": "Gujrati Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1023", + "message": "Jagwali Kathi Near Canal", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1024", + "message": "Ragu Nath Mandir Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1025", + "message": "Kacha Kot", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1026", + "message": "Old Green Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1027", + "message": "Green Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1028", + "message": "Raja Garden", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1029", + "message": "Raja Garden Extension", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC103", + "message": "New Dashmesh Nagar Part", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1030", + "message": "V.I.P Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1031", + "message": "Butti Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1032", + "message": "Gagan Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1033", + "message": "Bhai Gurdass Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1034", + "message": "Baba Bachittar Ji Nagar Mithu Basti", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1035", + "message": "Tara Singh Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1036", + "message": "New Rasila Nagar Basti Danishmandan", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1037", + "message": "Dilbagh Nagar Ext.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1038", + "message": "Rasila Nagar Phase 2 Danishmandan", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1039", + "message": "Rasila Nagar Basti Danishmandan", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC104", + "message": "Kaki Pind", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1040", + "message": "Begampura Colony Danishmandan", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1041", + "message": "Baba Budha Ji Nagar Mithu Nagar Basti", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1042", + "message": "Ekta Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1043", + "message": "New Shastri Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1044", + "message": "Satnam Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1045", + "message": "Anoop Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1046", + "message": "Bal bro Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1047", + "message": "Badhri Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1048", + "message": "Badhri Colony Phase (2)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1049", + "message": "Ram Shernam Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC105", + "message": "New Joginder Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1050", + "message": "Peer Das Basti", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1051", + "message": "Kamar Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1052", + "message": "Panu Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1053", + "message": "Paras Estate", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1054", + "message": "Paras Estate 2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1055", + "message": "Maharaja Garden", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1056", + "message": "Harbanse Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1057", + "message": "5 Peer Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1058", + "message": "Anoop Nagar (2)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1059", + "message": "Sher Singh Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC106", + "message": "Part of Joginder Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1060", + "message": "Roshan Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1061", + "message": "Qilla Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1062", + "message": "Kathera Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1063", + "message": "Gautam Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1064", + "message": "New Gautam Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1065", + "message": "Kabir Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1066", + "message": "Guru Ram Dass Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1067", + "message": "Mata Sant Kaur Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1068", + "message": "City A Prime", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1069", + "message": "City A Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC107", + "message": "New Beant Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1070", + "message": "City A Kunj", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1071", + "message": "Rajan Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1072", + "message": "Kailash Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1073", + "message": "Balmik Mohalla Bawa Khel", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1074", + "message": "Akal Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1075", + "message": "Basti Bawa Khel (main)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1076", + "message": "Raj Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1077", + "message": "New Raj Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1078", + "message": "Kabir Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1079", + "message": "Bank Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC108", + "message": "Part of Beant Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1080", + "message": "Basti Bawa Khel", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1081", + "message": "Katehara Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1082", + "message": "New Rattan Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1083", + "message": "Guru Nanak Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1084", + "message": "New Guru Nanak Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1085", + "message": "Shiv Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1086", + "message": "Baba Kahandass Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1087", + "message": "Village Nagara", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1088", + "message": "Abinandan Park", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1089", + "message": "National Park", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC109", + "message": "Gulmarg Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1090", + "message": "Ashok Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1091", + "message": "Vivek Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1092", + "message": "Green Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1093", + "message": "Shanti Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1094", + "message": "Viveka Nand Park", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1095", + "message": "Subash Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1096", + "message": "Golden Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1097", + "message": "Navyug Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1098", + "message": "New Shiv Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1099", + "message": "Maqsudan Byepass", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC11", + "message": "Indra Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC110", + "message": "Mehtab Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1100", + "message": "Mahasha Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1101", + "message": "Anand Ngr", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1102", + "message": "New Anand Ngr", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1103", + "message": "Janta Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1104", + "message": "Navnirman Janta Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1105", + "message": "Issa Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1106", + "message": "Guru Nanak Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1107", + "message": "Aara Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1108", + "message": "Surat Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1109", + "message": "Master Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC111", + "message": "Professor Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1110", + "message": "Angad Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC1111", + "message": "Amandip Avenue.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC112", + "message": "Mohan Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC113", + "message": "Part of Ladhewali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC114", + "message": "Part of New Dashmesh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC115", + "message": "Dhilwan", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC116", + "message": "Dhanowali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC117", + "message": "Sanik Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC118", + "message": "Old Dashmesh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC119", + "message": "Ajeet Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC12", + "message": "Sant Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC120", + "message": "Guru Anged Dev Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC121", + "message": "Sunder Nagar Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC122", + "message": "Kohinoor Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC123", + "message": "Sunny Prime", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC124", + "message": "Arman Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC125", + "message": "Johan Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC126", + "message": "Ganesh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC127", + "message": "New Ganesh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC128", + "message": "Masi Mohalla Dakoha", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC129", + "message": "Tarun Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC13", + "message": "Kalia Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC130", + "message": "Kaki Pind", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC131", + "message": "Arman Nagar 2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC132", + "message": "Birring Pind-1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC133", + "message": "Birring Pind-2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC134", + "message": "Mohinder Singh Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC135", + "message": "Mehnga Singh Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC136", + "message": "Dada Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC137", + "message": "Peace Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC138", + "message": "Bunga Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC139", + "message": "Golden Colony (Phase 1)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC14", + "message": "Kalia Colony Ph-1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC140", + "message": "Golden Colony (Phase 2)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC141", + "message": "Golden Colony (Phase 3)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC142", + "message": "Model Estate", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC143", + "message": "Defence Colony (Phase 1)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC144", + "message": "New Defence Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC145", + "message": "Paragpura ( Old Phagwara Road)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC146", + "message": "Paragpura ( Pind )", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC147", + "message": "Paragpura ( Abadi Near Railway fatak )", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC148", + "message": "Ratti Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC149", + "message": "Thakur Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC15", + "message": "Kalia Colony PH-2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC150", + "message": "Ram Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC151", + "message": "Chotte Ram Bagh", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC152", + "message": "Panch Sheel Colony ( Half )", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC153", + "message": "Bhullar Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC154", + "message": "Modern State", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC155", + "message": "Yadav Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC156", + "message": "Baba Budha Ji Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC157", + "message": "Bhuda Ji Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC158", + "message": "Shaheed Gurvinder Singh Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC159", + "message": "National Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC16", + "message": "Kalia Colony PH-3", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC160", + "message": "Ravidass Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC161", + "message": "Guru Nanak Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC162", + "message": "Jagjit Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC163", + "message": "Old Kaki Pind", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC164", + "message": "Village Dakoha", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC165", + "message": "Baba Budha Singh Nagar Street No 1 to 9", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC166", + "message": "Ekta Nagar PH-1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC167", + "message": "Ekta Nagar PH-2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC168", + "message": "Joginder Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC169", + "message": "Panch Rattan Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC17", + "message": "Kalia Farm", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC170", + "message": "New Defence Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC171", + "message": "Beant Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC172", + "message": "Old Beant Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC173", + "message": "PSEB Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC174", + "message": "BB Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC175", + "message": "Half Rama Mandi Main Bazar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC176", + "message": "Khateek Market Ramamandi", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC177", + "message": "Valmik Mohalla Ramamandi", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC178", + "message": "Krishna Sweet Wali Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC179", + "message": "Palwon Wali Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC18", + "message": "Guru Amar Dass Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC180", + "message": "Fouji Wali Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC181", + "message": "Bhatra Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC182", + "message": "Aytar Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC183", + "message": "Guru Nanak Pura East", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC184", + "message": "Guru Nanak Pura West", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC185", + "message": "Chugitti", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC186", + "message": "Ekta Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC187", + "message": "P.A.P", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC188", + "message": "Railway Colony-3", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC189", + "message": "Rajinder Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC19", + "message": "Guru Amar Dass Nagar 2- Marla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC190", + "message": "Preet Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC191", + "message": "Sehgal Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC192", + "message": "Kirti Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC193", + "message": "Mohalla Ladowali Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC194", + "message": "Mohyal Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC195", + "message": "Link Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC196", + "message": "Hargobind Pura", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC197", + "message": "Ranjit Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC198", + "message": "New Rajinder Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC199", + "message": "Police Line", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC2", + "message": "Bank Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC20", + "message": "New Guru Amar Dass Nagar Ext.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC200", + "message": "Guru Nanak Pura (West) Street No. 1 to 8", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC201", + "message": "New Guru Nanak Pura (West)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC202", + "message": "Bhojowal Patti (Chugittee)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC203", + "message": "Bharat Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC204", + "message": "Satnam Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC205", + "message": "Chugittee", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC206", + "message": "Ved Ram Parkash Street", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC207", + "message": "Guru Gobind Singh Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC208", + "message": "Sureya Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC209", + "message": "Komal Vihar Old & New", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC21", + "message": "Guru Amar Dass Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC210", + "message": "Bashirpura", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC211", + "message": "Thakur Singh Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC212", + "message": "Royal Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC213", + "message": "Jhansi Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC214", + "message": "Gobind Garh", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC215", + "message": "Arjun Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC216", + "message": "40 Quarter", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC217", + "message": "Dashmesh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC218", + "message": "New Dashmesh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC219", + "message": "Sant Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC22", + "message": "Venus Valley", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC220", + "message": "Shanti Pura", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC221", + "message": "New Baradari", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC222", + "message": "Poultry Form Area", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC223", + "message": "Prem Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC224", + "message": "Mandi Fenton Garg", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC225", + "message": "Partap Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC226", + "message": "Rishi Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC227", + "message": "Brahm Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC228", + "message": "Mandi Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC229", + "message": "Railway Colony No. 1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC23", + "message": "Baba Mohan Dass Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC230", + "message": "Guard Colony No-2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC231", + "message": "Old Jawahar Nagar Single Lane", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC232", + "message": "Central Town", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC233", + "message": "Krishan Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC234", + "message": "Old Jawahar Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC235", + "message": "Master Tara Singh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC236", + "message": "P & T Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC237", + "message": "Riaz Pura", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC238", + "message": "Ramesh Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC239", + "message": "Shiva Ji Park", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC24", + "message": "Salempur Muslmana", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC240", + "message": "Netaji Park", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC241", + "message": "Civil Lines", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC242", + "message": "Mohalla Makhdumpura", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC243", + "message": "Mohalla Shastri Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC244", + "message": "Fauji Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC245", + "message": "Shivalik Apartments", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC246", + "message": "Venus Apartments", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC247", + "message": "B-Block Apartments", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC248", + "message": "Paradise Apartments", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC249", + "message": "Gurkirpa Apartments", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC25", + "message": "Swarn Park-1Swarn Prak- 2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC250", + "message": "Ganga Apartments", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC251", + "message": "Nakodar Road Market", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC252", + "message": "Lajpat Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC253", + "message": "Lajpat Nagar Market", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC254", + "message": "Abadpura", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC255", + "message": "Balmiki Colony Link Road Abadpura", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC256", + "message": "Major Bahadur Singh Nagar & Marg", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC257", + "message": "New Model Town Mall Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC258", + "message": "New Jawahar Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC259", + "message": "Guru Nanak Mission Chowk", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC26", + "message": "Sanjay Gandhi Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC260", + "message": "Badridass Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC261", + "message": "Purani Baradari", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC262", + "message": "Skylark Chowk", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC263", + "message": "Civil Lines", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC264", + "message": "Sehdev Market", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC265", + "message": "Namdev Chowk", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC266", + "message": "G.T Road Market", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC267", + "message": "Shastri Chowk", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC268", + "message": "Sanjay Gandhi Market", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC269", + "message": "New Courts Chowk", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC27", + "message": "Gadaipur", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC270", + "message": "Police Line Market", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC271", + "message": "BMC Chowk", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC272", + "message": "Market Opposite Bus Stand", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC273", + "message": "Link Road Model Town", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC274", + "message": "Valmiki Colony Major Bahadur Singh Marg", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC275", + "message": "Radio Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC276", + "message": "New Jawahar Nagar (Point)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC277", + "message": "Green Park", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC278", + "message": "Mota Singh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC279", + "message": "Modern Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC28", + "message": "Raja Garden", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC280", + "message": "Gurjaipal Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC281", + "message": "Wariam Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC282", + "message": "Gian Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC283", + "message": "New Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC284", + "message": "Defence Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC285", + "message": "Defence Colony Ext.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC286", + "message": "Chotti Baradari", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC287", + "message": "Jaswant Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC288", + "message": "Roop Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC289", + "message": "Atwal Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC29", + "message": "Ram Bagh Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC290", + "message": "Atwal House", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC291", + "message": "New Hardyal Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC292", + "message": "Hardyal Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC293", + "message": "Rubi Hospital", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC294", + "message": "BSF Camp", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC295", + "message": "New Green Park", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC296", + "message": "Railway Quarter ( Cool Road)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC297", + "message": "Garha/Shiv Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC298", + "message": "Dayanand chowk", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC299", + "message": "Rattan Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC3", + "message": "Sarabha Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC30", + "message": "Dada Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC300", + "message": "Sark Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC301", + "message": "Valmiki Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC302", + "message": "Ravi dass Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC303", + "message": "Makhan Ramwali Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC304", + "message": "School wali Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC305", + "message": "Jiwan Singh Chowk", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC306", + "message": "Tanki Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC307", + "message": "Phagu Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC308", + "message": "Sarpanch wali Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC309", + "message": "Main Bazar Rama Mandir", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC31", + "message": "Industrial Area", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC310", + "message": "Main Bazar Gurudwara Singh Sabha", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC311", + "message": "Garha Vehanda", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC312", + "message": "Phagu Mohalla Ram Mandir wali Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC313", + "message": "Phagwari Mohalla Near Janj Ghar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC314", + "message": "Phagwari Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC315", + "message": "Dr. Mana Wali Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC316", + "message": "Old Div. 7 Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC317", + "message": "Cantt. Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC318", + "message": "Cantt. Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC319", + "message": "New Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC32", + "message": "Focal Point", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC320", + "message": "Jaswant Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC321", + "message": "Jawant Nagar near Gurudwara", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC322", + "message": "Jaswant Nagar Gali No. 1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC323", + "message": "Jaswant Nagar Gali Thekewali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC324", + "message": "Jaswant Nagar Gali no. 100 3 to 5", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC325", + "message": "Jaswant Nagar Gali 2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC326", + "message": "Golden Aveune-1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC327", + "message": "Golden Avenue-2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC328", + "message": "Gurjeet Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC329", + "message": "Dashmesh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC33", + "message": "Transport Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC330", + "message": "Chanchal Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC331", + "message": "Chotti Baradari Part-2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC332", + "message": "Idgah Mohalla Garha", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC333", + "message": "Sarak Mohalla Garha", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC334", + "message": "Guru Diwan Nagar Garha", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC335", + "message": "Tara Chand Colony Garha", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC336", + "message": "Chintpurni Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC337", + "message": "Geeta Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC338", + "message": "Garha", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC339", + "message": "Labour Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC34", + "message": "Udyog Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC340", + "message": "Kunowali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC341", + "message": "Urban Estate Ph-1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC342", + "message": "M.I.G", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC343", + "message": "Urban Estate Phase Half", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC344", + "message": "Sabowal Old.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC345", + "message": "Isherpuri Colony (Some Part)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC346", + "message": "Urban Estate 2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC347", + "message": "Sabowal", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC348", + "message": "Lahor Nangal", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC349", + "message": "Isherpuri Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC35", + "message": "Parshuram Pur", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC350", + "message": "Ranjit Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC351", + "message": "Kalgidhar Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC352", + "message": "New Kalgidhar Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC353", + "message": "Ravinder Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC354", + "message": "Dashmesh Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC355", + "message": "Karol Bagh", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC356", + "message": "Vijay Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC357", + "message": "Guru Ram Dass Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC358", + "message": "Baba Makhan Shah Lubana", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC359", + "message": "Friends Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC36", + "message": "Vadda Saipur", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC360", + "message": "Officer Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC361", + "message": "D.C Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC362", + "message": "White Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC363", + "message": "Punjabi Bagh", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC364", + "message": "Lahor Nagar Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC365", + "message": "Happy Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC366", + "message": "New Isherpuri", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC367", + "message": "Universal Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC368", + "message": "Singh Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC369", + "message": "Engineer Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC37", + "message": "Reru", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC370", + "message": "Green Garden Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC371", + "message": "Ravinder Nagar Extension", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC372", + "message": "Punjabi Bagh Extension", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC373", + "message": "Model Town", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC374", + "message": "Parkash Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC375", + "message": "Guru Nanak Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC376", + "message": "Guru Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC377", + "message": "Rishi Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC378", + "message": "Jyoti Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC379", + "message": "Shankar Garden", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC38", + "message": "Hargobind Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC380", + "message": "Lal Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC381", + "message": "Satkartar Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC382", + "message": "Ravinder Nagar Extension", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC383", + "message": "Cheema Nagar Ext.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC384", + "message": "Vasant Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC385", + "message": "Vasant Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC386", + "message": "Vasant Vihar Ext.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC387", + "message": "Urban Estate Ph-2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC388", + "message": "Model Town", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC389", + "message": "New Jawahar Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC39", + "message": "Punjabi Bagh", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC390", + "message": "Lajpat Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC391", + "message": "Dada Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC392", + "message": "Green Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC393", + "message": "Green Model Town", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC394", + "message": "Kewal Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC395", + "message": "Indra Park", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC396", + "message": "Cheema Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC397", + "message": "Shiv Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC398", + "message": "Gurmeet Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC399", + "message": "Ramneek Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC4", + "message": "Paschim Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC40", + "message": "Bachint Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC400", + "message": "Bank Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC401", + "message": "Bank Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC402", + "message": "Raja Garden", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC403", + "message": "Keshev Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC404", + "message": "Ekta Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC405", + "message": "New Raja Garden", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC406", + "message": "New Raja Garden Extension", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC407", + "message": "Bhai Samund Singh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC408", + "message": "New Arora Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC409", + "message": "Mithapur", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC41", + "message": "Parsuram Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC410", + "message": "King Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC411", + "message": "Green Wood Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC412", + "message": "Ram Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC413", + "message": "Sewerage Board Quarter", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC414", + "message": "75 Garden Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC415", + "message": "Panch Sheel Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC416", + "message": "Mayor Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC417", + "message": "New Light Colony Phase -1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC418", + "message": "Bank Enclave Phase-2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC419", + "message": "Residence Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC42", + "message": "Kahanpur Abadi", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC420", + "message": "Sudhama Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC421", + "message": "New Sudhama Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC422", + "message": "Rocky Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC423", + "message": "New Light Colony Phase-2 (Sudhama Vihar)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC424", + "message": "VIP Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC425", + "message": "Sadhu Singh Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC426", + "message": "Red Face Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC427", + "message": "New Garden Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC428", + "message": "Bhai Banno Ji Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC429", + "message": "Gill Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC43", + "message": "Ramneek Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC430", + "message": "Parkash Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC431", + "message": "Khurla Kingra", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC432", + "message": "Tower Town Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC433", + "message": "Silver Residency", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC434", + "message": "Tower Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC435", + "message": "Guru Nanak Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC436", + "message": "Boota Mandi", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC437", + "message": "Boota Pind (Back Side Dr.B.R. Ambedkar Park", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC438", + "message": "Swami Lal JI Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC439", + "message": "New Green Park", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC44", + "message": "Baba Deep Singh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC440", + "message": "Khurla Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC441", + "message": "Professor Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC442", + "message": "Army Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC443", + "message": "Mann Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC444", + "message": "Chopra Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC445", + "message": "Khurla Kingra (Back Side Sai Mandir)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC446", + "message": "Door Darshan Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC447", + "message": "Bombay Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC448", + "message": "Friends Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC449", + "message": "SAS Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC45", + "message": "Nurpur Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC450", + "message": "SAS Nagar Extension", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC451", + "message": "New Green Model Town", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC452", + "message": "Palam Rajeet Apartments", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC453", + "message": "Bank Enclave Part 1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC454", + "message": "Kuki Dhab", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC455", + "message": "Green Woods Apartments", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC456", + "message": "Park View Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC457", + "message": "Housing Board Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC458", + "message": "Satnam Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC459", + "message": "Mann Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC46", + "message": "Sunder Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC460", + "message": "Punjabi Bagh Wadala Chowk", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC461", + "message": "Silver heights", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC462", + "message": "Partap Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC463", + "message": "Guru Gobind Singh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC464", + "message": "Guru Arjan dev Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC465", + "message": "G.T.B Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC466", + "message": "Garden Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC467", + "message": "G.T.B Nagar extension", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC468", + "message": "GTB Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC469", + "message": "F.C.I Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC47", + "message": "Hargobind Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC470", + "message": "Chanakya Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC471", + "message": "New GTB Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC472", + "message": "Vivek Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC473", + "message": "Green Model Town", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC474", + "message": "Boota Pind", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC475", + "message": "Wadala Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC476", + "message": "Main Road Abadpura", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC477", + "message": "Gali No. 2 To Gali No. 6 ", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC478", + "message": "Preet Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC479", + "message": "Rameshwar Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC48", + "message": "Gulmarg Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC480", + "message": "Sh. Guru Ravidass Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC481", + "message": "Tubewell wali Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC482", + "message": "Labour Court Gali Panj Peer", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC483", + "message": "Maharishi Valmiki Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC484", + "message": "Taneja New Abadpura", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC485", + "message": "Avtar Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC486", + "message": "New Avtar Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC487", + "message": "New Suraj Ganj", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC488", + "message": "Pishori Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC489", + "message": "Naqvi Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC49", + "message": "Bachint Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC490", + "message": "Dairy Kalu Ram-O Band Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC491", + "message": "Bhargo Camp-Add", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC492", + "message": "Pishori Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC493", + "message": "Link Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC494", + "message": "Abadpura Gali No.1 to 2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC495", + "message": "New Suraj Ganj –west", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC496", + "message": "Gali No-10-B-11-B", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC497", + "message": "Bhargo Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC498", + "message": "Bhargo Camp", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC499", + "message": "Ravidass Chowk", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC5", + "message": "Amrit Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC50", + "message": "Sarabha Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC500", + "message": "Channan Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC501", + "message": "Boota Mandi", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC502", + "message": "Silver Oak Apartments", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC503", + "message": "Nakodar Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC504", + "message": "Chappli Chowk", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC505", + "message": "Sant Pura", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC506", + "message": "Arya Samaj Mandir", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC507", + "message": "Valmiki Mandir", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC508", + "message": "Chapal Chowk", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC509", + "message": "Kabir Mandir", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC51", + "message": "Chack Hussiana", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC510", + "message": "Gain Giri Mandir", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC511", + "message": "Nirankari Bhawan Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC512", + "message": "Ravidass Dham", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC513", + "message": "Kanth Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC514", + "message": "State Bank Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC515", + "message": "Ravidass Mandir", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC516", + "message": "Sharif Pura", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC517", + "message": "Tokri Chowk Bhargo Camp", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC518", + "message": "Gali Mirasiya Wali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC519", + "message": "Gali Somnath Aara Wala", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC52", + "message": "Lamba Pind", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC520", + "message": "Prem Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC521", + "message": "Gali Ravi Karyana Store", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC522", + "message": "Gali Sharma Model School", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC523", + "message": "Chune Wali Gali Boota Mandi", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC524", + "message": "Gali Pawan Koushal", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC525", + "message": "Bhargo Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC526", + "message": "Nive Passe Bhargo Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC527", + "message": "Azad Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC528", + "message": "New Suraj Ganj", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC529", + "message": "New Suraj Ganj (West)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC53", + "message": "Chandigarh Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC530", + "message": "Model House Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC531", + "message": "Main Bazar Bhargo", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC532", + "message": "Mohalla Amar Saw Mill", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC533", + "message": "Bhargo Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC534", + "message": "Shamshan Ghat Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC535", + "message": "Mohalla Vari Vatt", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC536", + "message": "Bhargo Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC537", + "message": "Tej Mohan Nagar Gali No-5 to Gali No-11", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC538", + "message": "New Ashok Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC539", + "message": "Narayan Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC54", + "message": "Succhi Pind", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC540", + "message": "Ashok Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC541", + "message": "New Sant Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC542", + "message": "Sant Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC543", + "message": "Nijatam Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC544", + "message": "Chouhan Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC545", + "message": "Ganesh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC546", + "message": "Basti Nau", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC547", + "message": "Bank Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC548", + "message": "Chaar Marla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC549", + "message": "Block-A,B,C.D", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC55", + "message": "Hardial Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC550", + "message": "Bhagat Singh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC551", + "message": "Rajput Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC552", + "message": "Taranwali Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC553", + "message": "Mohalla Kot", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC554", + "message": "Uttam Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC555", + "message": "Mohalla Chaiaam", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC556", + "message": "Tej Mohan Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC557", + "message": "Sant Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC558", + "message": "Siddhartha Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC559", + "message": "New Abadi Jallowal", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC56", + "message": "New Hardial Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC560", + "message": "Kay Pee Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC561", + "message": "New Model House", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC562", + "message": "Model Gram Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC563", + "message": "Gahi Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC564", + "message": "Jaina Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC565", + "message": "New Ghai Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC566", + "message": "Chiragpura Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC567", + "message": "New Deol Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC568", + "message": "New Dashmesh Nagar Block-A", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC569", + "message": "New Dashmesh Nagar Block-C", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC57", + "message": "Hardip Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC570", + "message": "Tilak Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC571", + "message": "Kartar Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC572", + "message": "New Kartar Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC573", + "message": "Udye Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC574", + "message": "Deol Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC575", + "message": "New Deol Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC576", + "message": "Aman Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC577", + "message": "Major Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC578", + "message": "Pink City Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC579", + "message": "Kot Sadiq Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC58", + "message": "Judge Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC580", + "message": "Khara Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC581", + "message": "Kot Sadiq", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC582", + "message": "Mast Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC583", + "message": "Thind Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC584", + "message": "Sai Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC585", + "message": "BT Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC586", + "message": "Kanshi Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC587", + "message": "Green Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC588", + "message": "Geeta Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC589", + "message": "New Geeta Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC59", + "message": "Prem Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC590", + "message": "Ishwar Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC591", + "message": "New Dashmesh Nagar B Block", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC592", + "message": "Dordarshan Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC593", + "message": "Tower Enclave Phase 2nd", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC594", + "message": "Hamilton Tower", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC595", + "message": "Guru Ravidass Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC596", + "message": "New Ravidass Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC597", + "message": "Shiva Ji Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC598", + "message": "New Shiva Ji Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC599", + "message": "Lasuri Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC6", + "message": "Chak Jinda", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC60", + "message": "Gulmohar City", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC600", + "message": "New Lasuri Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC601", + "message": "Begampura Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC602", + "message": "Main Adda Basti Danishmandan", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC603", + "message": "Main Bazar Basti Danishmandan", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC604", + "message": "Valmiki Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC605", + "message": "Chandigarh Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC606", + "message": "New Chandigarh Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC607", + "message": "Chungi Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC608", + "message": "Chungi No-9", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC609", + "message": "Tagri Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC61", + "message": "Three Star Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC610", + "message": "Guru Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC611", + "message": "Surjit Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC612", + "message": "Basti Sheikh + Danishmandan", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC613", + "message": "Kattra Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC614", + "message": "Guru Sant Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC615", + "message": "Guru Nanak Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC616", + "message": "Lasuri Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC617", + "message": "Baldev Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC618", + "message": "Satkartar Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC619", + "message": "Ujala Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC62", + "message": "Soma Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC620", + "message": "Mohindra Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC621", + "message": "Valmiki Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC622", + "message": "Vada Bazar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC623", + "message": "Banian Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC624", + "message": "Satran Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC625", + "message": "Mochian Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC626", + "message": "Tarkhana Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC627", + "message": "Telian Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC628", + "message": "Road Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC629", + "message": "Manjit Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC63", + "message": "Mata Salani Mandir", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC630", + "message": "Chet Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC631", + "message": "Janak Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC632", + "message": "Chaian Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC633", + "message": "Kot Bazar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC634", + "message": "Gulabia Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC635", + "message": "Bara Bazar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC636", + "message": "Hargobind Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC637", + "message": "Gurditta Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC638", + "message": "Borah Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC639", + "message": "Sethia Wali Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC64", + "message": "Baba Gadila Sham colony (Succhi Pind)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC640", + "message": "Dhankian Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC641", + "message": "Jairath Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC642", + "message": "Bagh Ahluwalia", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC643", + "message": "Kamaliya Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC644", + "message": "Gobind Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC645", + "message": "New Gobind Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC646", + "message": "Dilbagh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC647", + "message": "120' Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC648", + "message": "Shastri Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC649", + "message": "Old Shastri Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC65", + "message": "Deep Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC650", + "message": "Old Dusshara Ground", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC651", + "message": "Surya Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC652", + "message": "Basti Gujan", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC653", + "message": "Ambedkar Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC654", + "message": "Shah Kuli Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC655", + "message": "Virdi Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC656", + "message": "Valmiki Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC657", + "message": "Vada Vehra", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC658", + "message": "Sunyara Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC659", + "message": "Jangra Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC66", + "message": "New Upkar Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC660", + "message": "Machi Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC661", + "message": "Harkrishan Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC662", + "message": "Manjit Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC663", + "message": "New Dilbagh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC664", + "message": "Dilbagh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC665", + "message": "Lahoria Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC666", + "message": "Kot Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC667", + "message": "Binda Chowk", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC668", + "message": "Doriya Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC669", + "message": "Board Wali Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC67", + "message": "Moh Kot Ram Dass ( Abadi )", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC670", + "message": "Main Bazar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC671", + "message": "Shibu Mandir Chowk", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC672", + "message": "New Adarsh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC673", + "message": "J.P.Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC674", + "message": "Adarsh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC675", + "message": "J.P. Nagar Extension", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC676", + "message": "Basti Nau", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC677", + "message": "Krishan Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC678", + "message": "Basti Mithu", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC679", + "message": "Patwar Khana", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC68", + "message": "Karol Bagh", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC680", + "message": "Conal Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC681", + "message": "Harbans Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC682", + "message": "New Harbans Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC683", + "message": "New Harbans Nagar Ext.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC684", + "message": "Adarsh Nagar up to Satyam Hospital Street", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC685", + "message": "New Vijay Nagar Left Side", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC686", + "message": "Tagore Nagar Right Side St.NO.7", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC687", + "message": "Dyal Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC688", + "message": "Gujral Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC689", + "message": "Shakti Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC69", + "message": "Rail Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC690", + "message": "Vijay Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC691", + "message": "S.U.S Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC692", + "message": "Ajit Singh Nagar up to Nakodar Chowk", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC693", + "message": "Niwan Suraj Gunj", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC694", + "message": "Islam Gunj", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC695", + "message": "Islamabad", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC696", + "message": "Mission Compound Left Side Batra Hospital", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC697", + "message": "Makhdoom Pura", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC698", + "message": "Dhobi Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC699", + "message": "Mohalla Pacca Bagh", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC7", + "message": "Toor Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC70", + "message": "Patel Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC700", + "message": "Ram Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC701", + "message": "Saidan Gate", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC702", + "message": "Chowk Kade Shah", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC703", + "message": "Batakh Wala Chowk", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC704", + "message": "Rainak Bazar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC705", + "message": "Naya Bazar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC706", + "message": "Shaheed Udham Singh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC707", + "message": "Flats", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC708", + "message": "Civil Hospital", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC709", + "message": "E.S.I Hospital", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC71", + "message": "Sangam Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC710", + "message": "E.S.I Hospital Flats", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC711", + "message": "Milap Chowk to G.P.O", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC712", + "message": "G.P.O to Shastri Chowk", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC713", + "message": "Shastri to Milap Chowk", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC714", + "message": "Milap to Sunrise Hotal", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC715", + "message": "Sunrise Hotal to Partap Bagh", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC716", + "message": "Partap Bagh to Phagwara Gate", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC717", + "message": "Naya Bazar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC718", + "message": "Saiden Gate", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC719", + "message": "Peer Bodla Bazar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC72", + "message": "Preet Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC720", + "message": "Khazuria Bazar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC721", + "message": "Guru Bazar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC722", + "message": "Neehya Band Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC723", + "message": "Jybal Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC724", + "message": "Neem Wali Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC725", + "message": "Tanki Wali Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC726", + "message": "Khodiya Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC727", + "message": "Kotpakshiya", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC728", + "message": "Hotel Raj Mahal back Side Gurudawara and Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC729", + "message": "Pakka Bagh", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC73", + "message": "Mann Singh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC730", + "message": "Chohal Bagh", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC731", + "message": "Hindsamachar Ground", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC732", + "message": "Mina Bazar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC733", + "message": "Tikki Bagh Chowk", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC734", + "message": "Ucha Suraj Gunj", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC735", + "message": "Jyoti chowk to preet Hotel", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC736", + "message": "Charanjit Pura", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC737", + "message": "Ajit Pura", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC738", + "message": "Jatt Pura", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC739", + "message": "Valmiki Gate", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC74", + "message": "Suchi Pind", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC740", + "message": "Malka Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC741", + "message": "Mohindru Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC742", + "message": "Mitha Bazar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC743", + "message": "Telwali Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC744", + "message": "Chota Ali Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC745", + "message": "Alli Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC746", + "message": "Bansa Wala Bazar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC747", + "message": "Chajju Ram Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC748", + "message": "Kotwali Bazar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC749", + "message": "Malora Muhalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC75", + "message": "Indian Oil Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC750", + "message": "Nauhrian Bazar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC751", + "message": "Kot Bahadur Khan", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC752", + "message": "Sheikhan Bazar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC753", + "message": "Sudan Chowk", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC754", + "message": "Deen Dayal Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC755", + "message": "Prem Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC756", + "message": "New Prem Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC757", + "message": "Sat Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC758", + "message": "Chandan Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC759", + "message": "Fateh Puri", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC76", + "message": "Green County", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC760", + "message": "Vikrampura", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC761", + "message": "Subash Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC762", + "message": "Partap Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC763", + "message": "Purani Kachehri", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC764", + "message": "Piplan Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC765", + "message": "Chadhian Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC766", + "message": "Lawan Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC767", + "message": "Charjian Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC768", + "message": "Mitha Bazar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC769", + "message": "Bhairon Bazar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC77", + "message": "Ladhewali Pind", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC770", + "message": "Quilla Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC771", + "message": "Qazi Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC772", + "message": "Khingran Gate", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC773", + "message": "Mughlan Dhiki", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC774", + "message": "Prem Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC775", + "message": "Purian Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC776", + "message": "Sehglan Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC777", + "message": "Modian Tod", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC778", + "message": "Thapra Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC779", + "message": "Mai Hiran Gate", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC78", + "message": "Chokan Kalan Pind", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC780", + "message": "Phagwara Gate", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC781", + "message": "Rasta Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC782", + "message": "Biliya Mandir", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC783", + "message": "Talhi Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC784", + "message": "Baghia Whra", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC785", + "message": "Quda Shah Chowk", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC786", + "message": "Phir Bodhla Bazar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC787", + "message": "Kalo Vani Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC788", + "message": "Atari Bazar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC789", + "message": "Nacha Badh Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC79", + "message": "Nagal Shama Pind", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC790", + "message": "Kanchia Bazar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC791", + "message": "Qazi Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC792", + "message": "Qilla Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC793", + "message": "Shivraz Garh", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC794", + "message": "Panj Peer Chowk", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC795", + "message": "Bhagat Singh Chowk", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC796", + "message": "Railway Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC797", + "message": "Rishi Nagar Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC798", + "message": "Partap Bagh", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC799", + "message": "Awa Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC8", + "message": "Navjot Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC80", + "message": "Datar Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC800", + "message": "Kot Kishan Chand", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC801", + "message": "Jagat Pura", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC802", + "message": "Dhan Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC803", + "message": "Rishi Nagar (5 Gali)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC804", + "message": "Kishanpura (5 Gali)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC805", + "message": "Inderparsth Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC806", + "message": "Arya Samaj Mandir", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC807", + "message": "Bheem Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC808", + "message": "Sansi Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC809", + "message": "Dolatpuri", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC81", + "message": "Khehra Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC810", + "message": "Kapoor Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC811", + "message": "Ajit Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC812", + "message": "Amrik Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC813", + "message": "New Ajit Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC814", + "message": "New Amrik Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC815", + "message": "Baba Math Shah", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC816", + "message": "Santoshi Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC817", + "message": "Madrasi Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC818", + "message": "Qazi Mandi", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC819", + "message": "Kishan Pura", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC82", + "message": "Kabir Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC820", + "message": "Hoshiarpur Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC821", + "message": "Old Hoshiarpur Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC822", + "message": "Baldev Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC823", + "message": "New Baldev Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC824", + "message": "Baba Balak Nath Market", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC825", + "message": "Madrasi Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC826", + "message": "Ravidass School Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC827", + "message": "Dhonka Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC828", + "message": "Prithvi Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC829", + "message": "New Prithvi Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC83", + "message": "Kabir Avenue Extension", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC830", + "message": "Lambapind Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC831", + "message": "Dutta Street", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC832", + "message": "Raman Shiv Mandir Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC833", + "message": "Ajit Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC834", + "message": "Balmiki Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC835", + "message": "Vivek Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC836", + "message": "New Vivek Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC837", + "message": "Arjun Singh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC838", + "message": "Jaimal Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC839", + "message": "Durga Mandir Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC84", + "message": "Punjab Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC840", + "message": "Vinay Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC841", + "message": "Akash Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC842", + "message": "Arjun Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC843", + "message": "Jaimal Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC844", + "message": "Upkar Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC845", + "message": "New Upkar Nargar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC846", + "message": "Ghandi Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC847", + "message": "New Ghandi Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC848", + "message": "Chakk Hussaina", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC849", + "message": "Hoshiarpur Road Lamba Pind(Left Side)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC85", + "message": "Punjab Avenue Extension", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC850", + "message": "Muslim Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC851", + "message": "New Vinay Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC852", + "message": "Hans Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC853", + "message": "New Santokhpura", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC854", + "message": "Durga Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC855", + "message": "Sarabha Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC856", + "message": "Guru Ram Dass Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC857", + "message": "Niwi Abadi", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC858", + "message": "Lakshmipura", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC859", + "message": "New Lakshmipura", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC86", + "message": "Dhaliwal Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC860", + "message": "Vij Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC861", + "message": "Sant Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC862", + "message": "Bhagatpura", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC863", + "message": "Jeet Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC864", + "message": "Vikaspuri", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC865", + "message": "New Vikaspuri", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC866", + "message": "Ambika Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC867", + "message": "B.D.Steel", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC868", + "message": "Santokhpura Nivi Abadi", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC869", + "message": "Basti Bhure Kha", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC87", + "message": "Himachal Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC870", + "message": "Shah Sikandar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC871", + "message": "Ram Gharia School", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC872", + "message": "Preet Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC873", + "message": "Basant Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC874", + "message": "New Basant Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC875", + "message": "Aman Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC876", + "message": "New Aman Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC877", + "message": "New colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC878", + "message": "Kamal Park", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC879", + "message": "Preet Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC88", + "message": "Green Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC880", + "message": "New Preet Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC881", + "message": "Sodal Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC882", + "message": "Sidh Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC883", + "message": "Ashok Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC884", + "message": "Ramco Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC885", + "message": "New Sodal Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC886", + "message": "Mathura Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC887", + "message": "Kot Baba Deep Singh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC888", + "message": "Tobari Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC889", + "message": "Tanda Road Hanuman Mandir Chowk to Tanda Road Railway Crossing", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC89", + "message": "Sunshine Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC890", + "message": "Shah Sikandar Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC891", + "message": "Kailash Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC892", + "message": "New Kailash Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC893", + "message": "New Kailash Nagar Ext.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC894", + "message": "Gobind Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC895", + "message": "New Gobind Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC896", + "message": "J.M.C Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC897", + "message": "Gujja Peer Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC898", + "message": "Amar Garden", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC899", + "message": "Saipur Kalan", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC9", + "message": "New Guru Amar Das Extension Paschim", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC90", + "message": "Silver Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC900", + "message": "Sanjay Gandhi", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC901", + "message": "Dada Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC902", + "message": "Saini Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC903", + "message": "Chotta Saipur", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC904", + "message": "Hari Singh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC905", + "message": "Shashi Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC906", + "message": "Lathi Mar Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC907", + "message": "Sodal Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC908", + "message": "Gujja Peer Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC909", + "message": "Sodal Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC91", + "message": "Randhawa Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC910", + "message": "Laxmi Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC911", + "message": "Kali Mata Mandir Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC912", + "message": "Bhagat Singh Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC913", + "message": "Baba Balak Nath Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC914", + "message": "Shiv Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC915", + "message": "Canal Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC916", + "message": "Industrial Area", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC917", + "message": "Dada Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC918", + "message": "Chota Saipur Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC919", + "message": "Shiv Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC92", + "message": "Lahora Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC920", + "message": "Brij Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC921", + "message": "Gajji Gulla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC922", + "message": "Parbhat Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC923", + "message": "Ram Nagar Railway", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC924", + "message": "Crossing to Gajji Gujja Chowk Left Side", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC925", + "message": "Industrial Area Ext.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC926", + "message": "Canal Industrial Complex", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC927", + "message": "Gandhi Camp", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC928", + "message": "Gurdev Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC929", + "message": "Gopal Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC93", + "message": "Nanak Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC930", + "message": "Satnam Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC931", + "message": "Sawan Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC932", + "message": "Valmiki Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC933", + "message": "New Grain Market", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC934", + "message": "Jain Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC935", + "message": "New Gopal Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC936", + "message": "Neela Mahal", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC937", + "message": "Mohalla Krar Khan", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC938", + "message": "Sangra Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC939", + "message": "Teacher Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC94", + "message": "Basant Hill", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC940", + "message": "Krishna Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC941", + "message": "Tobri Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC942", + "message": "Guru Nanak Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC943", + "message": "Harnamdasspura", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC944", + "message": "Kot Lakhpat Rai", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC945", + "message": "Banda Bahadur Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC946", + "message": "Kapurthala Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC947", + "message": "Bagh Baharia", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC948", + "message": "Gulab Devi Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC949", + "message": "Bulton Park Cricket Stadium", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC95", + "message": "University Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC950", + "message": "Durga Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC951", + "message": "B.S.F Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC952", + "message": "Gopal Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC953", + "message": "New Colony Gopal Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC954", + "message": "Main Road Old Sabzi Mandi to Burton Park", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC955", + "message": "Sangat Singh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC956", + "message": "Balwant Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC957", + "message": "Bandha Bhadur Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC958", + "message": "Sarswati Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC959", + "message": "PNT Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC96", + "message": "Moti Bagh", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC960", + "message": "Bagh Bharia", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC961", + "message": "Bhagwan Dass Pura", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC962", + "message": "Dhiman Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC963", + "message": "Adresh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC964", + "message": "Natha Bagechi", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC965", + "message": "Misson Compound", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC966", + "message": "Talab Bharia", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC967", + "message": "Jail Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC968", + "message": "Kabir Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC969", + "message": "Kachari Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC97", + "message": "Park Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC970", + "message": "Gandhi Camp 3 Lain", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC971", + "message": "Windsor Park", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC972", + "message": "Rose Park", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC973", + "message": "Jain Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC974", + "message": "Gupta Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC975", + "message": "Hardev Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC976", + "message": "Guru Nanak Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC977", + "message": "Guru Arjun Dev Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC978", + "message": "Sarswati Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC979", + "message": "Surjit Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC98", + "message": "Chopra Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC980", + "message": "Malak Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC981", + "message": "Kalyani Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC982", + "message": "Suriya Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC983", + "message": "Vivekananda Park", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC984", + "message": "Ariya Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC985", + "message": "Pingalwara", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC986", + "message": "Gujrati Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC987", + "message": "Shardha Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC988", + "message": "Sawarn Park", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC989", + "message": "Ram Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC99", + "message": "Dr. Ambedkar Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC990", + "message": "Chhota Gandhi Nagar Camp", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC991", + "message": "Friends Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC992", + "message": "Seth Hukam Chand Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC993", + "message": "Greater Kailash", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC994", + "message": "Moti Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC995", + "message": "New Moti Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC996", + "message": "Tagore Park/ Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC997", + "message": "Professor Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC998", + "message": "Maqsudan Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_ADMIN_JLC999", + "message": "Bohar Wala Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1", + "message": "Ashok Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC10", + "message": "Gurbachan Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC100", + "message": "Dera Preet Nagar Jhuggia", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1000", + "message": "Maqsudan Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1001", + "message": "Nagra Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1002", + "message": "Jawala Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1003", + "message": "New Jawala Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1004", + "message": "Patel Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1005", + "message": "New Patel Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1006", + "message": "Guru Ravidass Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1007", + "message": "Bhupinder Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1008", + "message": "Ashok Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1009", + "message": "Nagra Pind", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC101", + "message": "Miya Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1010", + "message": "New Nagra", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1011", + "message": "Shital Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1012", + "message": "New Shital Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1013", + "message": "Jugian", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1014", + "message": "Sham Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1015", + "message": "Amar Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1016", + "message": "Babu Labh Singh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1017", + "message": "Rattan Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1018", + "message": "New Rattan Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1019", + "message": "Shaheed Babu Labh Singh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC102", + "message": "Shalimar Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1020", + "message": "New Shaheed Babu Labh Singh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1021", + "message": "Madhuban Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1022", + "message": "Gujrati Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1023", + "message": "Jagwali Kathi Near Canal", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1024", + "message": "Ragu Nath Mandir Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1025", + "message": "Kacha Kot", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1026", + "message": "Old Green Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1027", + "message": "Green Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1028", + "message": "Raja Garden", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1029", + "message": "Raja Garden Extension", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC103", + "message": "New Dashmesh Nagar Part", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1030", + "message": "V.I.P Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1031", + "message": "Butti Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1032", + "message": "Gagan Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1033", + "message": "Bhai Gurdass Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1034", + "message": "Baba Bachittar Ji Nagar Mithu Basti", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1035", + "message": "Tara Singh Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1036", + "message": "New Rasila Nagar Basti Danishmandan", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1037", + "message": "Dilbagh Nagar Ext.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1038", + "message": "Rasila Nagar Phase 2 Danishmandan", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1039", + "message": "Rasila Nagar Basti Danishmandan", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC104", + "message": "Kaki Pind", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1040", + "message": "Begampura Colony Danishmandan", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1041", + "message": "Baba Budha Ji Nagar Mithu Nagar Basti", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1042", + "message": "Ekta Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1043", + "message": "New Shastri Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1044", + "message": "Satnam Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1045", + "message": "Anoop Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1046", + "message": "Bal bro Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1047", + "message": "Badhri Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1048", + "message": "Badhri Colony Phase (2)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1049", + "message": "Ram Shernam Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC105", + "message": "New Joginder Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1050", + "message": "Peer Das Basti", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1051", + "message": "Kamar Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1052", + "message": "Panu Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1053", + "message": "Paras Estate", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1054", + "message": "Paras Estate 2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1055", + "message": "Maharaja Garden", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1056", + "message": "Harbanse Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1057", + "message": "5 Peer Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1058", + "message": "Anoop Nagar (2)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1059", + "message": "Sher Singh Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC106", + "message": "Part of Joginder Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1060", + "message": "Roshan Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1061", + "message": "Qilla Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1062", + "message": "Kathera Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1063", + "message": "Gautam Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1064", + "message": "New Gautam Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1065", + "message": "Kabir Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1066", + "message": "Guru Ram Dass Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1067", + "message": "Mata Sant Kaur Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1068", + "message": "City A Prime", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1069", + "message": "City A Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC107", + "message": "New Beant Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1070", + "message": "City A Kunj", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1071", + "message": "Rajan Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1072", + "message": "Kailash Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1073", + "message": "Balmik Mohalla Bawa Khel", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1074", + "message": "Akal Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1075", + "message": "Basti Bawa Khel (main)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1076", + "message": "Raj Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1077", + "message": "New Raj Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1078", + "message": "Kabir Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1079", + "message": "Bank Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC108", + "message": "Part of Beant Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1080", + "message": "Basti Bawa Khel", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1081", + "message": "Katehara Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1082", + "message": "New Rattan Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1083", + "message": "Guru Nanak Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1084", + "message": "New Guru Nanak Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1085", + "message": "Shiv Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1086", + "message": "Baba Kahandass Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1087", + "message": "Village Nagara", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1088", + "message": "Abinandan Park", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1089", + "message": "National Park", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC109", + "message": "Gulmarg Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1090", + "message": "Ashok Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1091", + "message": "Vivek Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1092", + "message": "Green Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1093", + "message": "Shanti Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1094", + "message": "Viveka Nand Park", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1095", + "message": "Subash Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1096", + "message": "Golden Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1097", + "message": "Navyug Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1098", + "message": "New Shiv Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1099", + "message": "Maqsudan Byepass", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC11", + "message": "Indra Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC110", + "message": "Mehtab Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1100", + "message": "Mahasha Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1101", + "message": "Anand Ngr", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1102", + "message": "New Anand Ngr", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1103", + "message": "Janta Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1104", + "message": "Navnirman Janta Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1105", + "message": "Issa Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1106", + "message": "Guru Nanak Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1107", + "message": "Aara Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1108", + "message": "Surat Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1109", + "message": "Master Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC111", + "message": "Professor Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1110", + "message": "Angad Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC1111", + "message": "Amandip Avenue.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC112", + "message": "Mohan Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC113", + "message": "Part of Ladhewali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC114", + "message": "Part of New Dashmesh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC115", + "message": "Dhilwan", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC116", + "message": "Dhanowali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC117", + "message": "Sanik Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC118", + "message": "Old Dashmesh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC119", + "message": "Ajeet Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC12", + "message": "Sant Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC120", + "message": "Guru Anged Dev Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC121", + "message": "Sunder Nagar Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC122", + "message": "Kohinoor Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC123", + "message": "Sunny Prime", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC124", + "message": "Arman Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC125", + "message": "Johan Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC126", + "message": "Ganesh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC127", + "message": "New Ganesh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC128", + "message": "Masi Mohalla Dakoha", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC129", + "message": "Tarun Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC13", + "message": "Kalia Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC130", + "message": "Kaki Pind", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC131", + "message": "Arman Nagar 2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC132", + "message": "Birring Pind-1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC133", + "message": "Birring Pind-2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC134", + "message": "Mohinder Singh Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC135", + "message": "Mehnga Singh Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC136", + "message": "Dada Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC137", + "message": "Peace Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC138", + "message": "Bunga Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC139", + "message": "Golden Colony (Phase 1)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC14", + "message": "Kalia Colony Ph-1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC140", + "message": "Golden Colony (Phase 2)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC141", + "message": "Golden Colony (Phase 3)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC142", + "message": "Model Estate", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC143", + "message": "Defence Colony (Phase 1)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC144", + "message": "New Defence Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC145", + "message": "Paragpura ( Old Phagwara Road)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC146", + "message": "Paragpura ( Pind )", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC147", + "message": "Paragpura ( Abadi Near Railway fatak )", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC148", + "message": "Ratti Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC149", + "message": "Thakur Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC15", + "message": "Kalia Colony PH-2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC150", + "message": "Ram Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC151", + "message": "Chotte Ram Bagh", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC152", + "message": "Panch Sheel Colony ( Half )", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC153", + "message": "Bhullar Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC154", + "message": "Modern State", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC155", + "message": "Yadav Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC156", + "message": "Baba Budha Ji Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC157", + "message": "Bhuda Ji Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC158", + "message": "Shaheed Gurvinder Singh Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC159", + "message": "National Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC16", + "message": "Kalia Colony PH-3", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC160", + "message": "Ravidass Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC161", + "message": "Guru Nanak Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC162", + "message": "Jagjit Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC163", + "message": "Old Kaki Pind", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC164", + "message": "Village Dakoha", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC165", + "message": "Baba Budha Singh Nagar Street No 1 to 9", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC166", + "message": "Ekta Nagar PH-1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC167", + "message": "Ekta Nagar PH-2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC168", + "message": "Joginder Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC169", + "message": "Panch Rattan Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC17", + "message": "Kalia Farm", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC170", + "message": "New Defence Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC171", + "message": "Beant Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC172", + "message": "Old Beant Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC173", + "message": "PSEB Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC174", + "message": "BB Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC175", + "message": "Half Rama Mandi Main Bazar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC176", + "message": "Khateek Market Ramamandi", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC177", + "message": "Valmik Mohalla Ramamandi", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC178", + "message": "Krishna Sweet Wali Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC179", + "message": "Palwon Wali Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC18", + "message": "Guru Amar Dass Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC180", + "message": "Fouji Wali Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC181", + "message": "Bhatra Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC182", + "message": "Aytar Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC183", + "message": "Guru Nanak Pura East", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC184", + "message": "Guru Nanak Pura West", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC185", + "message": "Chugitti", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC186", + "message": "Ekta Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC187", + "message": "P.A.P", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC188", + "message": "Railway Colony-3", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC189", + "message": "Rajinder Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC19", + "message": "Guru Amar Dass Nagar 2- Marla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC190", + "message": "Preet Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC191", + "message": "Sehgal Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC192", + "message": "Kirti Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC193", + "message": "Mohalla Ladowali Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC194", + "message": "Mohyal Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC195", + "message": "Link Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC196", + "message": "Hargobind Pura", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC197", + "message": "Ranjit Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC198", + "message": "New Rajinder Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC199", + "message": "Police Line", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC2", + "message": "Bank Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC20", + "message": "New Guru Amar Dass Nagar Ext.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC200", + "message": "Guru Nanak Pura (West) Street No. 1 to 8", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC201", + "message": "New Guru Nanak Pura (West)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC202", + "message": "Bhojowal Patti (Chugittee)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC203", + "message": "Bharat Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC204", + "message": "Satnam Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC205", + "message": "Chugittee", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC206", + "message": "Ved Ram Parkash Street", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC207", + "message": "Guru Gobind Singh Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC208", + "message": "Sureya Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC209", + "message": "Komal Vihar Old & New", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC21", + "message": "Guru Amar Dass Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC210", + "message": "Bashirpura", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC211", + "message": "Thakur Singh Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC212", + "message": "Royal Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC213", + "message": "Jhansi Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC214", + "message": "Gobind Garh", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC215", + "message": "Arjun Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC216", + "message": "40 Quarter", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC217", + "message": "Dashmesh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC218", + "message": "New Dashmesh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC219", + "message": "Sant Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC22", + "message": "Venus Valley", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC220", + "message": "Shanti Pura", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC221", + "message": "New Baradari", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC222", + "message": "Poultry Form Area", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC223", + "message": "Prem Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC224", + "message": "Mandi Fenton Garg", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC225", + "message": "Partap Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC226", + "message": "Rishi Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC227", + "message": "Brahm Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC228", + "message": "Mandi Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC229", + "message": "Railway Colony No. 1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC23", + "message": "Baba Mohan Dass Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC230", + "message": "Guard Colony No-2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC231", + "message": "Old Jawahar Nagar Single Lane", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC232", + "message": "Central Town", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC233", + "message": "Krishan Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC234", + "message": "Old Jawahar Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC235", + "message": "Master Tara Singh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC236", + "message": "P & T Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC237", + "message": "Riaz Pura", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC238", + "message": "Ramesh Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC239", + "message": "Shiva Ji Park", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC24", + "message": "Salempur Muslmana", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC240", + "message": "Netaji Park", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC241", + "message": "Civil Lines", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC242", + "message": "Mohalla Makhdumpura", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC243", + "message": "Mohalla Shastri Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC244", + "message": "Fauji Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC245", + "message": "Shivalik Apartments", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC246", + "message": "Venus Apartments", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC247", + "message": "B-Block Apartments", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC248", + "message": "Paradise Apartments", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC249", + "message": "Gurkirpa Apartments", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC25", + "message": "Swarn Park-1Swarn Prak- 2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC250", + "message": "Ganga Apartments", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC251", + "message": "Nakodar Road Market", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC252", + "message": "Lajpat Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC253", + "message": "Lajpat Nagar Market", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC254", + "message": "Abadpura", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC255", + "message": "Balmiki Colony Link Road Abadpura", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC256", + "message": "Major Bahadur Singh Nagar & Marg", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC257", + "message": "New Model Town Mall Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC258", + "message": "New Jawahar Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC259", + "message": "Guru Nanak Mission Chowk", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC26", + "message": "Sanjay Gandhi Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC260", + "message": "Badridass Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC261", + "message": "Purani Baradari", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC262", + "message": "Skylark Chowk", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC263", + "message": "Civil Lines", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC264", + "message": "Sehdev Market", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC265", + "message": "Namdev Chowk", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC266", + "message": "G.T Road Market", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC267", + "message": "Shastri Chowk", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC268", + "message": "Sanjay Gandhi Market", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC269", + "message": "New Courts Chowk", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC27", + "message": "Gadaipur", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC270", + "message": "Police Line Market", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC271", + "message": "BMC Chowk", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC272", + "message": "Market Opposite Bus Stand", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC273", + "message": "Link Road Model Town", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC274", + "message": "Valmiki Colony Major Bahadur Singh Marg", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC275", + "message": "Radio Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC276", + "message": "New Jawahar Nagar (Point)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC277", + "message": "Green Park", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC278", + "message": "Mota Singh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC279", + "message": "Modern Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC28", + "message": "Raja Garden", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC280", + "message": "Gurjaipal Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC281", + "message": "Wariam Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC282", + "message": "Gian Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC283", + "message": "New Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC284", + "message": "Defence Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC285", + "message": "Defence Colony Ext.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC286", + "message": "Chotti Baradari", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC287", + "message": "Jaswant Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC288", + "message": "Roop Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC289", + "message": "Atwal Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC29", + "message": "Ram Bagh Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC290", + "message": "Atwal House", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC291", + "message": "New Hardyal Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC292", + "message": "Hardyal Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC293", + "message": "Rubi Hospital", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC294", + "message": "BSF Camp", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC295", + "message": "New Green Park", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC296", + "message": "Railway Quarter ( Cool Road)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC297", + "message": "Garha/Shiv Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC298", + "message": "Dayanand chowk", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC299", + "message": "Rattan Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC3", + "message": "Sarabha Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC30", + "message": "Dada Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC300", + "message": "Sark Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC301", + "message": "Valmiki Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC302", + "message": "Ravi dass Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC303", + "message": "Makhan Ramwali Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC304", + "message": "School wali Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC305", + "message": "Jiwan Singh Chowk", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC306", + "message": "Tanki Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC307", + "message": "Phagu Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC308", + "message": "Sarpanch wali Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC309", + "message": "Main Bazar Rama Mandir", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC31", + "message": "Industrial Area", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC310", + "message": "Main Bazar Gurudwara Singh Sabha", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC311", + "message": "Garha Vehanda", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC312", + "message": "Phagu Mohalla Ram Mandir wali Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC313", + "message": "Phagwari Mohalla Near Janj Ghar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC314", + "message": "Phagwari Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC315", + "message": "Dr. Mana Wali Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC316", + "message": "Old Div. 7 Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC317", + "message": "Cantt. Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC318", + "message": "Cantt. Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC319", + "message": "New Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC32", + "message": "Focal Point", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC320", + "message": "Jaswant Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC321", + "message": "Jawant Nagar near Gurudwara", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC322", + "message": "Jaswant Nagar Gali No. 1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC323", + "message": "Jaswant Nagar Gali Thekewali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC324", + "message": "Jaswant Nagar Gali no. 100 3 to 5", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC325", + "message": "Jaswant Nagar Gali 2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC326", + "message": "Golden Aveune-1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC327", + "message": "Golden Avenue-2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC328", + "message": "Gurjeet Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC329", + "message": "Dashmesh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC33", + "message": "Transport Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC330", + "message": "Chanchal Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC331", + "message": "Chotti Baradari Part-2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC332", + "message": "Idgah Mohalla Garha", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC333", + "message": "Sarak Mohalla Garha", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC334", + "message": "Guru Diwan Nagar Garha", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC335", + "message": "Tara Chand Colony Garha", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC336", + "message": "Chintpurni Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC337", + "message": "Geeta Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC338", + "message": "Garha", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC339", + "message": "Labour Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC34", + "message": "Udyog Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC340", + "message": "Kunowali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC341", + "message": "Urban Estate Ph-1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC342", + "message": "M.I.G", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC343", + "message": "Urban Estate Phase Half", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC344", + "message": "Sabowal Old.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC345", + "message": "Isherpuri Colony (Some Part)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC346", + "message": "Urban Estate 2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC347", + "message": "Sabowal", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC348", + "message": "Lahor Nangal", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC349", + "message": "Isherpuri Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC35", + "message": "Parshuram Pur", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC350", + "message": "Ranjit Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC351", + "message": "Kalgidhar Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC352", + "message": "New Kalgidhar Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC353", + "message": "Ravinder Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC354", + "message": "Dashmesh Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC355", + "message": "Karol Bagh", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC356", + "message": "Vijay Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC357", + "message": "Guru Ram Dass Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC358", + "message": "Baba Makhan Shah Lubana", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC359", + "message": "Friends Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC36", + "message": "Vadda Saipur", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC360", + "message": "Officer Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC361", + "message": "D.C Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC362", + "message": "White Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC363", + "message": "Punjabi Bagh", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC364", + "message": "Lahor Nagar Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC365", + "message": "Happy Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC366", + "message": "New Isherpuri", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC367", + "message": "Universal Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC368", + "message": "Singh Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC369", + "message": "Engineer Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC37", + "message": "Reru", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC370", + "message": "Green Garden Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC371", + "message": "Ravinder Nagar Extension", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC372", + "message": "Punjabi Bagh Extension", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC373", + "message": "Model Town", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC374", + "message": "Parkash Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC375", + "message": "Guru Nanak Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC376", + "message": "Guru Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC377", + "message": "Rishi Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC378", + "message": "Jyoti Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC379", + "message": "Shankar Garden", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC38", + "message": "Hargobind Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC380", + "message": "Lal Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC381", + "message": "Satkartar Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC382", + "message": "Ravinder Nagar Extension", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC383", + "message": "Cheema Nagar Ext.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC384", + "message": "Vasant Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC385", + "message": "Vasant Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC386", + "message": "Vasant Vihar Ext.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC387", + "message": "Urban Estate Ph-2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC388", + "message": "Model Town", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC389", + "message": "New Jawahar Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC39", + "message": "Punjabi Bagh", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC390", + "message": "Lajpat Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC391", + "message": "Dada Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC392", + "message": "Green Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC393", + "message": "Green Model Town", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC394", + "message": "Kewal Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC395", + "message": "Indra Park", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC396", + "message": "Cheema Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC397", + "message": "Shiv Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC398", + "message": "Gurmeet Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC399", + "message": "Ramneek Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC4", + "message": "Paschim Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC40", + "message": "Bachint Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC400", + "message": "Bank Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC401", + "message": "Bank Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC402", + "message": "Raja Garden", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC403", + "message": "Keshev Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC404", + "message": "Ekta Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC405", + "message": "New Raja Garden", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC406", + "message": "New Raja Garden Extension", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC407", + "message": "Bhai Samund Singh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC408", + "message": "New Arora Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC409", + "message": "Mithapur", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC41", + "message": "Parsuram Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC410", + "message": "King Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC411", + "message": "Green Wood Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC412", + "message": "Ram Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC413", + "message": "Sewerage Board Quarter", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC414", + "message": "75 Garden Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC415", + "message": "Panch Sheel Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC416", + "message": "Mayor Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC417", + "message": "New Light Colony Phase -1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC418", + "message": "Bank Enclave Phase-2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC419", + "message": "Residence Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC42", + "message": "Kahanpur Abadi", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC420", + "message": "Sudhama Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC421", + "message": "New Sudhama Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC422", + "message": "Rocky Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC423", + "message": "New Light Colony Phase-2 (Sudhama Vihar)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC424", + "message": "VIP Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC425", + "message": "Sadhu Singh Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC426", + "message": "Red Face Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC427", + "message": "New Garden Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC428", + "message": "Bhai Banno Ji Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC429", + "message": "Gill Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC43", + "message": "Ramneek Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC430", + "message": "Parkash Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC431", + "message": "Khurla Kingra", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC432", + "message": "Tower Town Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC433", + "message": "Silver Residency", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC434", + "message": "Tower Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC435", + "message": "Guru Nanak Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC436", + "message": "Boota Mandi", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC437", + "message": "Boota Pind (Back Side Dr.B.R. Ambedkar Park", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC438", + "message": "Swami Lal JI Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC439", + "message": "New Green Park", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC44", + "message": "Baba Deep Singh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC440", + "message": "Khurla Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC441", + "message": "Professor Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC442", + "message": "Army Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC443", + "message": "Mann Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC444", + "message": "Chopra Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC445", + "message": "Khurla Kingra (Back Side Sai Mandir)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC446", + "message": "Door Darshan Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC447", + "message": "Bombay Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC448", + "message": "Friends Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC449", + "message": "SAS Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC45", + "message": "Nurpur Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC450", + "message": "SAS Nagar Extension", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC451", + "message": "New Green Model Town", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC452", + "message": "Palam Rajeet Apartments", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC453", + "message": "Bank Enclave Part 1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC454", + "message": "Kuki Dhab", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC455", + "message": "Green Woods Apartments", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC456", + "message": "Park View Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC457", + "message": "Housing Board Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC458", + "message": "Satnam Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC459", + "message": "Mann Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC46", + "message": "Sunder Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC460", + "message": "Punjabi Bagh Wadala Chowk", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC461", + "message": "Silver heights", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC462", + "message": "Partap Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC463", + "message": "Guru Gobind Singh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC464", + "message": "Guru Arjan dev Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC465", + "message": "G.T.B Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC466", + "message": "Garden Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC467", + "message": "G.T.B Nagar extension", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC468", + "message": "GTB Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC469", + "message": "F.C.I Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC47", + "message": "Hargobind Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC470", + "message": "Chanakya Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC471", + "message": "New GTB Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC472", + "message": "Vivek Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC473", + "message": "Green Model Town", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC474", + "message": "Boota Pind", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC475", + "message": "Wadala Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC476", + "message": "Main Road Abadpura", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC477", + "message": "Gali No. 2 To Gali No. 6 ", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC478", + "message": "Preet Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC479", + "message": "Rameshwar Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC48", + "message": "Gulmarg Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC480", + "message": "Sh. Guru Ravidass Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC481", + "message": "Tubewell wali Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC482", + "message": "Labour Court Gali Panj Peer", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC483", + "message": "Maharishi Valmiki Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC484", + "message": "Taneja New Abadpura", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC485", + "message": "Avtar Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC486", + "message": "New Avtar Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC487", + "message": "New Suraj Ganj", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC488", + "message": "Pishori Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC489", + "message": "Naqvi Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC49", + "message": "Bachint Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC490", + "message": "Dairy Kalu Ram-O Band Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC491", + "message": "Bhargo Camp-Add", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC492", + "message": "Pishori Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC493", + "message": "Link Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC494", + "message": "Abadpura Gali No.1 to 2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC495", + "message": "New Suraj Ganj –west", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC496", + "message": "Gali No-10-B-11-B", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC497", + "message": "Bhargo Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC498", + "message": "Bhargo Camp", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC499", + "message": "Ravidass Chowk", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC5", + "message": "Amrit Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC50", + "message": "Sarabha Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC500", + "message": "Channan Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC501", + "message": "Boota Mandi", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC502", + "message": "Silver Oak Apartments", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC503", + "message": "Nakodar Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC504", + "message": "Chappli Chowk", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC505", + "message": "Sant Pura", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC506", + "message": "Arya Samaj Mandir", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC507", + "message": "Valmiki Mandir", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC508", + "message": "Chapal Chowk", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC509", + "message": "Kabir Mandir", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC51", + "message": "Chack Hussiana", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC510", + "message": "Gain Giri Mandir", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC511", + "message": "Nirankari Bhawan Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC512", + "message": "Ravidass Dham", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC513", + "message": "Kanth Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC514", + "message": "State Bank Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC515", + "message": "Ravidass Mandir", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC516", + "message": "Sharif Pura", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC517", + "message": "Tokri Chowk Bhargo Camp", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC518", + "message": "Gali Mirasiya Wali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC519", + "message": "Gali Somnath Aara Wala", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC52", + "message": "Lamba Pind", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC520", + "message": "Prem Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC521", + "message": "Gali Ravi Karyana Store", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC522", + "message": "Gali Sharma Model School", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC523", + "message": "Chune Wali Gali Boota Mandi", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC524", + "message": "Gali Pawan Koushal", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC525", + "message": "Bhargo Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC526", + "message": "Nive Passe Bhargo Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC527", + "message": "Azad Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC528", + "message": "New Suraj Ganj", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC529", + "message": "New Suraj Ganj (West)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC53", + "message": "Chandigarh Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC530", + "message": "Model House Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC531", + "message": "Main Bazar Bhargo", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC532", + "message": "Mohalla Amar Saw Mill", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC533", + "message": "Bhargo Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC534", + "message": "Shamshan Ghat Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC535", + "message": "Mohalla Vari Vatt", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC536", + "message": "Bhargo Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC537", + "message": "Tej Mohan Nagar Gali No-5 to Gali No-11", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC538", + "message": "New Ashok Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC539", + "message": "Narayan Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC54", + "message": "Succhi Pind", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC540", + "message": "Ashok Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC541", + "message": "New Sant Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC542", + "message": "Sant Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC543", + "message": "Nijatam Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC544", + "message": "Chouhan Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC545", + "message": "Ganesh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC546", + "message": "Basti Nau", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC547", + "message": "Bank Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC548", + "message": "Chaar Marla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC549", + "message": "Block-A,B,C,D", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC55", + "message": "Hardial Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC550", + "message": "Bhagat Singh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC551", + "message": "Rajput Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC552", + "message": "Taranwali Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC553", + "message": "Mohalla Kot", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC554", + "message": "Uttam Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC555", + "message": "Mohalla Chaiaam", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC556", + "message": "Tej Mohan Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC557", + "message": "Sant Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC558", + "message": "Siddhartha Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC559", + "message": "New Abadi Jallowal", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC56", + "message": "New Hardial Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC560", + "message": "Kay Pee Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC561", + "message": "New Model House", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC562", + "message": "Model Gram Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC563", + "message": "Gahi Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC564", + "message": "Jaina Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC565", + "message": "New Ghai Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC566", + "message": "Chiragpura Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC567", + "message": "New Deol Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC568", + "message": "New Dashmesh Nagar Block-A", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC569", + "message": "New Dashmesh Nagar Block-C", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC57", + "message": "Hardip Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC570", + "message": "Tilak Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC571", + "message": "Kartar Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC572", + "message": "New Kartar Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC573", + "message": "Udye Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC574", + "message": "Deol Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC575", + "message": "New Deol Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC576", + "message": "Aman Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC577", + "message": "Major Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC578", + "message": "Pink City Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC579", + "message": "Kot Sadiq Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC58", + "message": "Judge Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC580", + "message": "Khara Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC581", + "message": "Kot Sadiq", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC582", + "message": "Mast Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC583", + "message": "Thind Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC584", + "message": "Sai Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC585", + "message": "BT Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC586", + "message": "Kanshi Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC587", + "message": "Green Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC588", + "message": "Geeta Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC589", + "message": "New Geeta Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC59", + "message": "Prem Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC590", + "message": "Ishwar Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC591", + "message": "New Dashmesh Nagar B Block", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC592", + "message": "Dordarshan Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC593", + "message": "Tower Enclave Phase 2nd", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC594", + "message": "Hamilton Tower", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC595", + "message": "Guru Ravidass Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC596", + "message": "New Ravidass Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC597", + "message": "Shiva Ji Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC598", + "message": "New Shiva Ji Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC599", + "message": "Lasuri Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC6", + "message": "Chak Jinda", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC60", + "message": "Gulmohar City", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC600", + "message": "New Lasuri Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC601", + "message": "Begampura Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC602", + "message": "Main Adda Basti Danishmandan", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC603", + "message": "Main Bazar Basti Danishmandan", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC604", + "message": "Valmiki Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC605", + "message": "Chandigarh Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC606", + "message": "New Chandigarh Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC607", + "message": "Chungi Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC608", + "message": "Chungi No-9", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC609", + "message": "Tagri Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC61", + "message": "Three Star Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC610", + "message": "Guru Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC611", + "message": "Surjit Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC612", + "message": "Basti Sheikh + Danishmandan", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC613", + "message": "Kattra Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC614", + "message": "Guru Sant Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC615", + "message": "Guru Nanak Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC616", + "message": "Lasuri Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC617", + "message": "Baldev Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC618", + "message": "Satkartar Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC619", + "message": "Ujala Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC62", + "message": "Soma Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC620", + "message": "Mohindra Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC621", + "message": "Valmiki Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC622", + "message": "Vada Bazar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC623", + "message": "Banian Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC624", + "message": "Satran Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC625", + "message": "Mochian Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC626", + "message": "Tarkhana Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC627", + "message": "Telian Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC628", + "message": "Road Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC629", + "message": "Manjit Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC63", + "message": "Mata Salani Mandir", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC630", + "message": "Chet Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC631", + "message": "Janak Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC632", + "message": "Chaian Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC633", + "message": "Kot Bazar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC634", + "message": "Gulabia Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC635", + "message": "Bara Bazar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC636", + "message": "Hargobind Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC637", + "message": "Gurditta Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC638", + "message": "Borah Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC639", + "message": "Sethia Wali Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC64", + "message": "Baba Gadila Sham colony (Succhi Pind)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC640", + "message": "Dhankian Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC641", + "message": "Jairath Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC642", + "message": "Bagh Ahluwalia", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC643", + "message": "Kamaliya Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC644", + "message": "Gobind Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC645", + "message": "New Gobind Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC646", + "message": "Dilbagh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC647", + "message": "120' Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC648", + "message": "Shastri Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC649", + "message": "Old Shastri Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC65", + "message": "Deep Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC650", + "message": "Old Dusshara Ground", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC651", + "message": "Surya Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC652", + "message": "Basti Gujan", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC653", + "message": "Ambedkar Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC654", + "message": "Shah Kuli Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC655", + "message": "Virdi Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC656", + "message": "Valmiki Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC657", + "message": "Vada Vehra", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC658", + "message": "Sunyara Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC659", + "message": "Jangra Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC66", + "message": "New Upkar Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC660", + "message": "Machi Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC661", + "message": "Harkrishan Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC662", + "message": "Manjit Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC663", + "message": "New Dilbagh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC664", + "message": "Dilbagh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC665", + "message": "Lahoria Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC666", + "message": "Kot Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC667", + "message": "Binda Chowk", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC668", + "message": "Doriya Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC669", + "message": "Board Wali Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC67", + "message": "Moh Kot Ram Dass ( Abadi )", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC670", + "message": "Main Bazar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC671", + "message": "Shibu Mandir Chowk", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC672", + "message": "New Adarsh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC673", + "message": "J.P.Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC674", + "message": "Adarsh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC675", + "message": "J.P. Nagar Extension", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC676", + "message": "Basti Nau", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC677", + "message": "Krishan Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC678", + "message": "Basti Mithu", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC679", + "message": "Patwar Khana", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC68", + "message": "Karol Bagh", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC680", + "message": "Conal Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC681", + "message": "Harbans Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC682", + "message": "New Harbans Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC683", + "message": "New Harbans Nagar Ext.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC684", + "message": "Adarsh Nagar up to Satyam Hospital Street", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC685", + "message": "New Vijay Nagar Left Side", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC686", + "message": "Tagore Nagar Right Side St.NO.7", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC687", + "message": "Dyal Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC688", + "message": "Gujral Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC689", + "message": "Shakti Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC69", + "message": "Rail Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC690", + "message": "Vijay Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC691", + "message": "S.U.S Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC692", + "message": "Ajit Singh Nagar up to Nakodar Chowk", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC693", + "message": "Niwan Suraj Gunj", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC694", + "message": "Islam Gunj", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC695", + "message": "Islamabad", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC696", + "message": "Mission Compound Left Side Batra Hospital", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC697", + "message": "Makhdoom Pura", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC698", + "message": "Dhobi Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC699", + "message": "Mohalla Pacca Bagh", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC7", + "message": "Toor Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC70", + "message": "Patel Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC700", + "message": "Ram Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC701", + "message": "Saidan Gate", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC702", + "message": "Chowk Kade Shah", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC703", + "message": "Batakh Wala Chowk", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC704", + "message": "Rainak Bazar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC705", + "message": "Naya Bazar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC706", + "message": "Shaheed Udham Singh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC707", + "message": "Flats", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC708", + "message": "Civil Hospital", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC709", + "message": "E.S.I Hospital", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC71", + "message": "Sangam Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC710", + "message": "E.S.I Hospital Flats", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC711", + "message": "Milap Chowk to G.P.O", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC712", + "message": "G.P.O to Shastri Chowk", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC713", + "message": "Shastri to Milap Chowk", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC714", + "message": "Milap to Sunrise Hotal", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC715", + "message": "Sunrise Hotal to Partap Bagh", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC716", + "message": "Partap Bagh to Phagwara Gate", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC717", + "message": "Naya Bazar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC718", + "message": "Saiden Gate", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC719", + "message": "Peer Bodla Bazar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC72", + "message": "Preet Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC720", + "message": "Khazuria Bazar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC721", + "message": "Guru Bazar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC722", + "message": "Neehya Band Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC723", + "message": "Jybal Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC724", + "message": "Neem Wali Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC725", + "message": "Tanki Wali Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC726", + "message": "Khodiya Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC727", + "message": "Kotpakshiya", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC728", + "message": "Hotel Raj Mahal back Side Gurudawara and Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC729", + "message": "Pakka Bagh", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC73", + "message": "Mann Singh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC730", + "message": "Chohal Bagh", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC731", + "message": "Hindsamachar Ground", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC732", + "message": "Mina Bazar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC733", + "message": "Tikki Bagh Chowk", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC734", + "message": "Ucha Suraj Gunj", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC735", + "message": "Jyoti chowk to preet Hotel", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC736", + "message": "Charanjit Pura", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC737", + "message": "Ajit Pura", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC738", + "message": "Jatt Pura", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC739", + "message": "Valmiki Gate", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC74", + "message": "Suchi Pind", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC740", + "message": "Malka Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC741", + "message": "Mohindru Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC742", + "message": "Mitha Bazar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC743", + "message": "Telwali Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC744", + "message": "Chota Ali Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC745", + "message": "Alli Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC746", + "message": "Bansa Wala Bazar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC747", + "message": "Chajju Ram Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC748", + "message": "Kotwali Bazar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC749", + "message": "Malora Muhalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC75", + "message": "Indian Oil Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC750", + "message": "Nauhrian Bazar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC751", + "message": "Kot Bahadur Khan", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC752", + "message": "Sheikhan Bazar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC753", + "message": "Sudan Chowk", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC754", + "message": "Deen Dayal Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC755", + "message": "Prem Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC756", + "message": "New Prem Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC757", + "message": "Sat Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC758", + "message": "Chandan Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC759", + "message": "Fateh Puri", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC76", + "message": "Green County", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC760", + "message": "Vikrampura", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC761", + "message": "Subash Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC762", + "message": "Partap Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC763", + "message": "Purani Kachehri", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC764", + "message": "Piplan Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC765", + "message": "Chadhian Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC766", + "message": "Lawan Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC767", + "message": "Charjian Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC768", + "message": "Mitha Bazar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC769", + "message": "Bhairon Bazar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC77", + "message": "Ladhewali Pind", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC770", + "message": "Quilla Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC771", + "message": "Qazi Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC772", + "message": "Khingran Gate", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC773", + "message": "Mughlan Dhiki", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC774", + "message": "Prem Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC775", + "message": "Purian Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC776", + "message": "Sehglan Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC777", + "message": "Modian Tod", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC778", + "message": "Thapra Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC779", + "message": "Mai Hiran Gate", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC78", + "message": "Chokan Kalan Pind", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC780", + "message": "Phagwara Gate", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC781", + "message": "Rasta Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC782", + "message": "Biliya Mandir", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC783", + "message": "Talhi Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC784", + "message": "Baghia Whra", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC785", + "message": "Quda Shah Chowk", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC786", + "message": "Phir Bodhla Bazar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC787", + "message": "Kalo Vani Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC788", + "message": "Atari Bazar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC789", + "message": "Nacha Badh Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC79", + "message": "Nagal Shama Pind", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC790", + "message": "Kanchia Bazar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC791", + "message": "Qazi Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC792", + "message": "Qilla Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC793", + "message": "Shivraz Garh", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC794", + "message": "Panj Peer Chowk", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC795", + "message": "Bhagat Singh Chowk", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC796", + "message": "Railway Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC797", + "message": "Rishi Nagar Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC798", + "message": "Partap Bagh", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC799", + "message": "Awa Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC8", + "message": "Navjot Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC80", + "message": "Datar Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC800", + "message": "Kot Kishan Chand", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC801", + "message": "Jagat Pura", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC802", + "message": "Dhan Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC803", + "message": "Rishi Nagar (5 Gali)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC804", + "message": "Kishanpura (5 Gali)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC805", + "message": "Inderparsth Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC806", + "message": "Arya Samaj Mandir", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC807", + "message": "Bheem Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC808", + "message": "Sansi Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC809", + "message": "Dolatpuri", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC81", + "message": "Khehra Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC810", + "message": "Kapoor Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC811", + "message": "Ajit Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC812", + "message": "Amrik Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC813", + "message": "New Ajit Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC814", + "message": "New Amrik Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC815", + "message": "Baba Math Shah", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC816", + "message": "Santoshi Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC817", + "message": "Madrasi Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC818", + "message": "Qazi Mandi", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC819", + "message": "Kishan Pura", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC82", + "message": "Kabir Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC820", + "message": "Hoshiarpur Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC821", + "message": "Old Hoshiarpur Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC822", + "message": "Baldev Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC823", + "message": "New Baldev Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC824", + "message": "Baba Balak Nath Market", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC825", + "message": "Madrasi Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC826", + "message": "Ravidass School Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC827", + "message": "Dhonka Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC828", + "message": "Prithvi Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC829", + "message": "New Prithvi Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC83", + "message": "Kabir Avenue Extension", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC830", + "message": "Lambapind Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC831", + "message": "Dutta Street", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC832", + "message": "Raman Shiv Mandir Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC833", + "message": "Ajit Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC834", + "message": "Balmiki Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC835", + "message": "Vivek Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC836", + "message": "New Vivek Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC837", + "message": "Arjun Singh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC838", + "message": "Jaimal Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC839", + "message": "Durga Mandir Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC84", + "message": "Punjab Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC840", + "message": "Vinay Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC841", + "message": "Akash Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC842", + "message": "Arjun Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC843", + "message": "Jaimal Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC844", + "message": "Upkar Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC845", + "message": "New Upkar Nargar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC846", + "message": "Ghandi Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC847", + "message": "New Ghandi Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC848", + "message": "Chakk Hussaina", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC849", + "message": "Hoshiarpur Road Lamba Pind(Left Side)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC85", + "message": "Punjab Avenue Extension", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC850", + "message": "Muslim Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC851", + "message": "New Vinay Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC852", + "message": "Hans Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC853", + "message": "New Santokhpura", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC854", + "message": "Durga Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC855", + "message": "Sarabha Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC856", + "message": "Guru Ram Dass Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC857", + "message": "Niwi Abadi", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC858", + "message": "Lakshmipura", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC859", + "message": "New Lakshmipura", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC86", + "message": "Dhaliwal Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC860", + "message": "Vij Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC861", + "message": "Sant Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC862", + "message": "Bhagatpura", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC863", + "message": "Jeet Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC864", + "message": "Vikaspuri", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC865", + "message": "New Vikaspuri", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC866", + "message": "Ambika Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC867", + "message": "B.D.Steel", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC868", + "message": "Santokhpura Nivi Abadi", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC869", + "message": "Basti Bhure Kha", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC87", + "message": "Himachal Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC870", + "message": "Shah Sikandar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC871", + "message": "Ram Gharia School", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC872", + "message": "Preet Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC873", + "message": "Basant Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC874", + "message": "New Basant Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC875", + "message": "Aman Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC876", + "message": "New Aman Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC877", + "message": "New colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC878", + "message": "Kamal Park", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC879", + "message": "Preet Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC88", + "message": "Green Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC880", + "message": "New Preet Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC881", + "message": "Sodal Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC882", + "message": "Sidh Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC883", + "message": "Ashok Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC884", + "message": "Ramco Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC885", + "message": "New Sodal Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC886", + "message": "Mathura Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC887", + "message": "Kot Baba Deep Singh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC888", + "message": "Tobari Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC889", + "message": "Tanda Road Hanuman Mandir Chowk to Tanda Road Railway Crossing", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC89", + "message": "Sunshine Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC890", + "message": "Shah Sikandar Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC891", + "message": "Kailash Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC892", + "message": "New Kailash Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC893", + "message": "New Kailash Nagar Ext.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC894", + "message": "Gobind Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC895", + "message": "New Gobind Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC896", + "message": "J.M.C Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC897", + "message": "Gujja Peer Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC898", + "message": "Amar Garden", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC899", + "message": "Saipur Kalan", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC9", + "message": "New Guru Amar Das Extension Paschim", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC90", + "message": "Silver Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC900", + "message": "Sanjay Gandhi", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC901", + "message": "Dada Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC902", + "message": "Saini Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC903", + "message": "Chotta Saipur", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC904", + "message": "Hari Singh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC905", + "message": "Shashi Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC906", + "message": "Lathi Mar Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC907", + "message": "Sodal Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC908", + "message": "Gujja Peer Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC909", + "message": "Sodal Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC91", + "message": "Randhawa Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC910", + "message": "Laxmi Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC911", + "message": "Kali Mata Mandir Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC912", + "message": "Bhagat Singh Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC913", + "message": "Baba Balak Nath Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC914", + "message": "Shiv Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC915", + "message": "Canal Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC916", + "message": "Industrial Area", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC917", + "message": "Dada Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC918", + "message": "Chota Saipur Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC919", + "message": "Shiv Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC92", + "message": "Lahora Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC920", + "message": "Brij Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC921", + "message": "Gajji Gulla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC922", + "message": "Parbhat Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC923", + "message": "Ram Nagar Railway", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC924", + "message": "Crossing to Gajji Gujja Chowk Left Side", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC925", + "message": "Industrial Area Ext.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC926", + "message": "Canal Industrial Complex", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC927", + "message": "Gandhi Camp", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC928", + "message": "Gurdev Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC929", + "message": "Gopal Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC93", + "message": "Nanak Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC930", + "message": "Satnam Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC931", + "message": "Sawan Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC932", + "message": "Valmiki Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC933", + "message": "New Grain Market", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC934", + "message": "Jain Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC935", + "message": "New Gopal Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC936", + "message": "Neela Mahal", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC937", + "message": "Mohalla Krar Khan", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC938", + "message": "Sangra Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC939", + "message": "Teacher Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC94", + "message": "Basant Hill", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC940", + "message": "Krishna Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC941", + "message": "Tobri Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC942", + "message": "Guru Nanak Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC943", + "message": "Harnamdasspura", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC944", + "message": "Kot Lakhpat Rai", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC945", + "message": "Banda Bahadur Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC946", + "message": "Kapurthala Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC947", + "message": "Bagh Baharia", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC948", + "message": "Gulab Devi Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC949", + "message": "Bulton Park Cricket Stadium", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC95", + "message": "University Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC950", + "message": "Durga Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC951", + "message": "B.S.F Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC952", + "message": "Gopal Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC953", + "message": "New Colony Gopal Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC954", + "message": "Main Road Old Sabzi Mandi to Burton Park", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC955", + "message": "Sangat Singh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC956", + "message": "Balwant Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC957", + "message": "Bandha Bhadur Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC958", + "message": "Sarswati Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC959", + "message": "PNT Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC96", + "message": "Moti Bagh", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC960", + "message": "Bagh Bharia", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC961", + "message": "Bhagwan Dass Pura", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC962", + "message": "Dhiman Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC963", + "message": "Adresh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC964", + "message": "Natha Bagechi", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC965", + "message": "Misson Compound", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC966", + "message": "Talab Bharia", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC967", + "message": "Jail Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC968", + "message": "Kabir Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC969", + "message": "Kachari Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC97", + "message": "Park Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC970", + "message": "Gandhi Camp 3 Lain", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC971", + "message": "Windsor Park", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC972", + "message": "Rose Park", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC973", + "message": "Jain Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC974", + "message": "Gupta Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC975", + "message": "Hardev Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC976", + "message": "Guru Nanak Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC977", + "message": "Guru Arjun Dev Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC978", + "message": "Sarswati Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC979", + "message": "Surjit Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC98", + "message": "Chopra Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC980", + "message": "Malak Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC981", + "message": "Kalyani Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC982", + "message": "Suriya Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC983", + "message": "Vivekananda Park", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC984", + "message": "Ariya Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC985", + "message": "Pingalwara", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC986", + "message": "Gujrati Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC987", + "message": "Shardha Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC988", + "message": "Sawarn Park", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC989", + "message": "Ram Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC99", + "message": "Dr. Ambedkar Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC990", + "message": "Chhota Gandhi Nagar Camp", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC991", + "message": "Friends Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC992", + "message": "Seth Hukam Chand Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC993", + "message": "Greater Kailash", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC994", + "message": "Moti Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC995", + "message": "New Moti Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC996", + "message": "Tagore Park/ Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC997", + "message": "Professor Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC998", + "message": "Maqsudan Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYA_REVENUE_JLC999", + "message": "Bohar Wala Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_ADMIN_SU166", + "message": "Mohalla Majoran", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_ADMIN_SUN02", + "message": "Aggarsain Chowk to Mal Godown - Both Sides", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_ADMIN_SUN04", + "message": "Ajit Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_ADMIN_SUN08", + "message": "ATAR SINGH COLONY", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_ADMIN_SUN105", + "message": "Jaura Khoo to Saraffa Bazaar (Southern Side)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_ADMIN_SUN109", + "message": "Kailash Parbat", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_ADMIN_SUN11", + "message": "Back Side 33 KVA Grid Patiala Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_ADMIN_SUN12", + "message": "Back Side 66 KVA Grid Patiala Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_ADMIN_SUN13", + "message": "Back Side Civil Courts Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_ADMIN_SUN132", + "message": "Mohalla Akalgarh Gurudwara", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_ADMIN_SUN134", + "message": "Mohalla Bhadra Kali Mandir", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_ADMIN_SUN136", + "message": "Mohalla Bhatta Wala", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_ADMIN_SUN137", + "message": "Mohalla Bhawdeyan Wala", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_ADMIN_SUN138", + "message": "Mohalla Bhojeka (both sides)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_ADMIN_SUN144", + "message": "Mohalla Kohliyan", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_ADMIN_SUN150", + "message": "Mohalla Rajan Wala (both sides)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_ADMIN_SUN153", + "message": "Mohalla Singhkiyan (Nothern Side)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_ADMIN_SUN158", + "message": "Mohalla-Kashayian wala", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_ADMIN_SUN161", + "message": "Mohalla-Singhkiya wala", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_ADMIN_SUN167", + "message": "Mohalla Angaria wala", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_ADMIN_SUN169", + "message": "Mohalla Banda Patti", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_ADMIN_SUN170", + "message": "Mohalla Bhai Ka", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_ADMIN_SUN173", + "message": "Mohalla Ganj Sheeda", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_ADMIN_SUN176", + "message": "Mohalla Kango", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_ADMIN_SUN178", + "message": "Mohalla Singh kia", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_ADMIN_SUN18", + "message": "Back Side Naina Devi Mandir", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_ADMIN_SUN194", + "message": "NEAR GURUDWARA PEHALI PATSHAHI UDAM SINGH ROAD", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_ADMIN_SUN20", + "message": "Backside Brijbala Hospital", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_ADMIN_SUN23", + "message": "BACKSIDE OLD GRAIN MARKET", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_ADMIN_SUN25", + "message": "Bakhtaur Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_ADMIN_SUN31", + "message": "Bhai Mool Chand Sahib Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_ADMIN_SUN35", + "message": "Bigharwal Chowk to Railway Station", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_ADMIN_SUN40", + "message": "Chandar Colony Biggarwal Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_ADMIN_SUN41", + "message": "Charjan Wala Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_ADMIN_SUN45", + "message": "Cinema Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_ADMIN_SUN46", + "message": "Cinema Road to Ali Bazaar (Nothern Side)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_ADMIN_SUN49", + "message": "College Road (Southern side)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_ADMIN_SUN54", + "message": "Deedar Tailor to Mata Modi Park- West Side", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_ADMIN_SUN55", + "message": "Deep Rice Mill Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_ADMIN_SUN56", + "message": "Dental College", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_ADMIN_SUN62", + "message": "Ekta Colony (Southern Side)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_ADMIN_SUN75", + "message": "Gaushala", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_ADMIN_SUN80", + "message": "Gugga Maadi Road (east side)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_ADMIN_SUN84", + "message": "Gurudwara Niai Sahib Street 1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_REVENUE_SU166", + "message": "Mohalla Majoran - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_REVENUE_SUN02", + "message": "Aggarsain Chowk to Mal Godown - Both Sides - Area3", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_REVENUE_SUN04", + "message": "Ajit Nagar - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_REVENUE_SUN08", + "message": "ATAR SINGH COLONY - Area2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_REVENUE_SUN105", + "message": "Jaura Khoo to Saraffa Bazaar (Southern Side) - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_REVENUE_SUN109", + "message": "Kailash Parbat - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_REVENUE_SUN11", + "message": "Back Side 33 KVA Grid Patiala Road - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_REVENUE_SUN12", + "message": "Back Side 66 KVA Grid Patiala Road - Area2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_REVENUE_SUN13", + "message": "Back Side Civil Courts Colony - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_REVENUE_SUN132", + "message": "Mohalla Akalgarh Gurudwara - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_REVENUE_SUN134", + "message": "Mohalla Bhadra Kali Mandir - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_REVENUE_SUN136", + "message": "Mohalla Bhatta Wala - Area2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_REVENUE_SUN137", + "message": "Mohalla Bhawdeyan Wala - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_REVENUE_SUN138", + "message": "Mohalla Bhojeka (both sides) - Area2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_REVENUE_SUN144", + "message": "Mohalla Kohliyan - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_REVENUE_SUN150", + "message": "Mohalla Rajan Wala (both sides) - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_REVENUE_SUN153", + "message": "Mohalla Singhkiyan (Nothern Side) - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_REVENUE_SUN158", + "message": "Mohalla-Kashayian wala - Area2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_REVENUE_SUN161", + "message": "Mohalla-Singhkiya wala - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_REVENUE_SUN167", + "message": "Mohalla Angaria wala - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_REVENUE_SUN169", + "message": "Mohalla Banda Patti - Area2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_REVENUE_SUN170", + "message": "Mohalla Bhai Ka - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_REVENUE_SUN173", + "message": "Mohalla Ganj Sheeda - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_REVENUE_SUN176", + "message": "Mohalla Kango - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_REVENUE_SUN178", + "message": "Mohalla Singh kia - Area2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_REVENUE_SUN18", + "message": "Back Side Naina Devi Mandir - Area2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_REVENUE_SUN194", + "message": "NEAR GURUDWARA PEHALI PATSHAHI UDAM SINGH ROAD - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_REVENUE_SUN20", + "message": "Backside Brijbala Hospital - Area3", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_REVENUE_SUN23", + "message": "BACKSIDE OLD GRAIN MARKET - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_REVENUE_SUN25", + "message": "Bakhtaur Nagar - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_REVENUE_SUN31", + "message": "Bhai Mool Chand Sahib Colony - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_REVENUE_SUN35", + "message": "Bigharwal Chowk to Railway Station - Area2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_REVENUE_SUN40", + "message": "Chandar Colony Biggarwal Road - Area2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_REVENUE_SUN41", + "message": "Charjan Wala Mohalla - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_REVENUE_SUN45", + "message": "Cinema Road - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_REVENUE_SUN46", + "message": "Cinema Road to Ali Bazaar (Nothern Side) - Area2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_REVENUE_SUN49", + "message": "College Road (Southern side) - Area2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_REVENUE_SUN54", + "message": "Deedar Tailor to Mata Modi Park- West Side - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_REVENUE_SUN55", + "message": "Deep Rice Mill Road - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_REVENUE_SUN56", + "message": "Dental College - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_REVENUE_SUN62", + "message": "Ekta Colony (Southern Side) - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_REVENUE_SUN75", + "message": "Gaushala", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_REVENUE_SUN80", + "message": "Gugga Maadi Road (east side) - Area2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYB_REVENUE_SUN84", + "message": "Gurudwara Niai Sahib Street 1 - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_ADMIN_SU166", + "message": "Mohalla Majoran", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_ADMIN_SUN02", + "message": "Aggarsain Chowk to Mal Godown - Both Sides", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_ADMIN_SUN04", + "message": "Ajit Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_ADMIN_SUN08", + "message": "ATAR SINGH COLONY", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_ADMIN_SUN105", + "message": "Jaura Khoo to Saraffa Bazaar (Southern Side)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_ADMIN_SUN109", + "message": "Kailash Parbat", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_ADMIN_SUN11", + "message": "Back Side 33 KVA Grid Patiala Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_ADMIN_SUN12", + "message": "Back Side 66 KVA Grid Patiala Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_ADMIN_SUN13", + "message": "Back Side Civil Courts Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_ADMIN_SUN132", + "message": "Mohalla Akalgarh Gurudwara", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_ADMIN_SUN134", + "message": "Mohalla Bhadra Kali Mandir", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_ADMIN_SUN136", + "message": "Mohalla Bhatta Wala", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_ADMIN_SUN137", + "message": "Mohalla Bhawdeyan Wala", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_ADMIN_SUN138", + "message": "Mohalla Bhojeka (both sides)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_ADMIN_SUN144", + "message": "Mohalla Kohliyan", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_ADMIN_SUN150", + "message": "Mohalla Rajan Wala (both sides)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_ADMIN_SUN153", + "message": "Mohalla Singhkiyan (Nothern Side)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_ADMIN_SUN158", + "message": "Mohalla-Kashayian wala", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_ADMIN_SUN161", + "message": "Mohalla-Singhkiya wala", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_ADMIN_SUN167", + "message": "Mohalla Angaria wala", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_ADMIN_SUN169", + "message": "Mohalla Banda Patti", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_ADMIN_SUN170", + "message": "Mohalla Bhai Ka", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_ADMIN_SUN173", + "message": "Mohalla Ganj Sheeda", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_ADMIN_SUN176", + "message": "Mohalla Kango", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_ADMIN_SUN178", + "message": "Mohalla Singh kia", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_ADMIN_SUN18", + "message": "Back Side Naina Devi Mandir", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_ADMIN_SUN194", + "message": "NEAR GURUDWARA PEHALI PATSHAHI UDAM SINGH ROAD", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_ADMIN_SUN20", + "message": "Backside Brijbala Hospital", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_ADMIN_SUN23", + "message": "BACKSIDE OLD GRAIN MARKET", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_ADMIN_SUN25", + "message": "Bakhtaur Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_ADMIN_SUN31", + "message": "Bhai Mool Chand Sahib Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_ADMIN_SUN35", + "message": "Bigharwal Chowk to Railway Station", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_ADMIN_SUN40", + "message": "Chandar Colony Biggarwal Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_ADMIN_SUN41", + "message": "Charjan Wala Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_ADMIN_SUN45", + "message": "Cinema Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_ADMIN_SUN46", + "message": "Cinema Road to Ali Bazaar (Nothern Side)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_ADMIN_SUN49", + "message": "College Road (Southern side)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_ADMIN_SUN54", + "message": "Deedar Tailor to Mata Modi Park- West Side", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_ADMIN_SUN55", + "message": "Deep Rice Mill Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_ADMIN_SUN56", + "message": "Dental College", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_ADMIN_SUN62", + "message": "Ekta Colony (Southern Side)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_ADMIN_SUN75", + "message": "Gaushala", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_ADMIN_SUN80", + "message": "Gugga Maadi Road (east side)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_ADMIN_SUN84", + "message": "Gurudwara Niai Sahib Street 1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_REVENUE_SU166", + "message": "Mohalla Majoran - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_REVENUE_SUN02", + "message": "Aggarsain Chowk to Mal Godown - Both Sides - Area3", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_REVENUE_SUN04", + "message": "Ajit Nagar - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_REVENUE_SUN08", + "message": "ATAR SINGH COLONY - Area2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_REVENUE_SUN105", + "message": "Jaura Khoo to Saraffa Bazaar (Southern Side) - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_REVENUE_SUN109", + "message": "Kailash Parbat - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_REVENUE_SUN11", + "message": "Back Side 33 KVA Grid Patiala Road - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_REVENUE_SUN12", + "message": "Back Side 66 KVA Grid Patiala Road - Area2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_REVENUE_SUN13", + "message": "Back Side Civil Courts Colony - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_REVENUE_SUN132", + "message": "Mohalla Akalgarh Gurudwara - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_REVENUE_SUN134", + "message": "Mohalla Bhadra Kali Mandir - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_REVENUE_SUN136", + "message": "Mohalla Bhatta Wala - Area2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_REVENUE_SUN137", + "message": "Mohalla Bhawdeyan Wala - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_REVENUE_SUN138", + "message": "Mohalla Bhojeka (both sides) - Area2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_REVENUE_SUN144", + "message": "Mohalla Kohliyan - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_REVENUE_SUN150", + "message": "Mohalla Rajan Wala (both sides) - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_REVENUE_SUN153", + "message": "Mohalla Singhkiyan (Nothern Side) - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_REVENUE_SUN158", + "message": "Mohalla-Kashayian wala - Area2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_REVENUE_SUN161", + "message": "Mohalla-Singhkiya wala - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_REVENUE_SUN167", + "message": "Mohalla Angaria wala - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_REVENUE_SUN169", + "message": "Mohalla Banda Patti - Area2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_REVENUE_SUN170", + "message": "Mohalla Bhai Ka - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_REVENUE_SUN173", + "message": "Mohalla Ganj Sheeda - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_REVENUE_SUN176", + "message": "Mohalla Kango - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_REVENUE_SUN178", + "message": "Mohalla Singh kia - Area2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_REVENUE_SUN18", + "message": "Back Side Naina Devi Mandir - Area2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_REVENUE_SUN194", + "message": "NEAR GURUDWARA PEHALI PATSHAHI UDAM SINGH ROAD - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_REVENUE_SUN20", + "message": "Backside Brijbala Hospital - Area3", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_REVENUE_SUN23", + "message": "BACKSIDE OLD GRAIN MARKET - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_REVENUE_SUN25", + "message": "Bakhtaur Nagar - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_REVENUE_SUN31", + "message": "Bhai Mool Chand Sahib Colony - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_REVENUE_SUN35", + "message": "Bigharwal Chowk to Railway Station - Area2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_REVENUE_SUN40", + "message": "Chandar Colony Biggarwal Road - Area2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_REVENUE_SUN41", + "message": "Charjan Wala Mohalla - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_REVENUE_SUN45", + "message": "Cinema Road - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_REVENUE_SUN46", + "message": "Cinema Road to Ali Bazaar (Nothern Side) - Area2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_REVENUE_SUN49", + "message": "College Road (Southern side) - Area2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_REVENUE_SUN54", + "message": "Deedar Tailor to Mata Modi Park- West Side - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_REVENUE_SUN55", + "message": "Deep Rice Mill Road - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_REVENUE_SUN56", + "message": "Dental College - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_REVENUE_SUN62", + "message": "Ekta Colony (Southern Side) - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_REVENUE_SUN75", + "message": "Gaushala", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_REVENUE_SUN80", + "message": "Gugga Maadi Road (east side) - Area2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYC_REVENUE_SUN84", + "message": "Gurudwara Niai Sahib Street 1 - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_ADMIN_SU166", + "message": "Mohalla Majoran", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_ADMIN_SUN02", + "message": "Aggarsain Chowk to Mal Godown - Both Sides", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_ADMIN_SUN04", + "message": "Ajit Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_ADMIN_SUN08", + "message": "ATAR SINGH COLONY", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_ADMIN_SUN105", + "message": "Jaura Khoo to Saraffa Bazaar (Southern Side)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_ADMIN_SUN109", + "message": "Kailash Parbat", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_ADMIN_SUN11", + "message": "Back Side 33 KVA Grid Patiala Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_ADMIN_SUN12", + "message": "Back Side 66 KVA Grid Patiala Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_ADMIN_SUN13", + "message": "Back Side Civil Courts Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_ADMIN_SUN132", + "message": "Mohalla Akalgarh Gurudwara", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_ADMIN_SUN134", + "message": "Mohalla Bhadra Kali Mandir", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_ADMIN_SUN136", + "message": "Mohalla Bhatta Wala", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_ADMIN_SUN137", + "message": "Mohalla Bhawdeyan Wala", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_ADMIN_SUN138", + "message": "Mohalla Bhojeka (both sides)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_ADMIN_SUN144", + "message": "Mohalla Kohliyan", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_ADMIN_SUN150", + "message": "Mohalla Rajan Wala (both sides)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_ADMIN_SUN153", + "message": "Mohalla Singhkiyan (Nothern Side)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_ADMIN_SUN158", + "message": "Mohalla-Kashayian wala", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_ADMIN_SUN161", + "message": "Mohalla-Singhkiya wala", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_ADMIN_SUN167", + "message": "Mohalla Angaria wala", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_ADMIN_SUN169", + "message": "Mohalla Banda Patti", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_ADMIN_SUN170", + "message": "Mohalla Bhai Ka", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_ADMIN_SUN173", + "message": "Mohalla Ganj Sheeda", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_ADMIN_SUN176", + "message": "Mohalla Kango", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_ADMIN_SUN178", + "message": "Mohalla Singh kia", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_ADMIN_SUN18", + "message": "Back Side Naina Devi Mandir", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_ADMIN_SUN194", + "message": "NEAR GURUDWARA PEHALI PATSHAHI UDAM SINGH ROAD", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_ADMIN_SUN20", + "message": "Backside Brijbala Hospital", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_ADMIN_SUN23", + "message": "BACKSIDE OLD GRAIN MARKET", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_ADMIN_SUN25", + "message": "Bakhtaur Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_ADMIN_SUN31", + "message": "Bhai Mool Chand Sahib Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_ADMIN_SUN35", + "message": "Bigharwal Chowk to Railway Station", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_ADMIN_SUN40", + "message": "Chandar Colony Biggarwal Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_ADMIN_SUN41", + "message": "Charjan Wala Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_ADMIN_SUN45", + "message": "Cinema Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_ADMIN_SUN46", + "message": "Cinema Road to Ali Bazaar (Nothern Side)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_ADMIN_SUN49", + "message": "College Road (Southern side)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_ADMIN_SUN54", + "message": "Deedar Tailor to Mata Modi Park- West Side", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_ADMIN_SUN55", + "message": "Deep Rice Mill Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_ADMIN_SUN56", + "message": "Dental College", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_ADMIN_SUN62", + "message": "Ekta Colony (Southern Side)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_ADMIN_SUN75", + "message": "Gaushala", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_ADMIN_SUN80", + "message": "Gugga Maadi Road (east side)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_ADMIN_SUN84", + "message": "Gurudwara Niai Sahib Street 1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_REVENUE_SU166", + "message": "Mohalla Majoran - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_REVENUE_SUN02", + "message": "Aggarsain Chowk to Mal Godown - Both Sides - Area3", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_REVENUE_SUN04", + "message": "Ajit Nagar - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_REVENUE_SUN08", + "message": "ATAR SINGH COLONY - Area2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_REVENUE_SUN105", + "message": "Jaura Khoo to Saraffa Bazaar (Southern Side) - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_REVENUE_SUN109", + "message": "Kailash Parbat - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_REVENUE_SUN11", + "message": "Back Side 33 KVA Grid Patiala Road - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_REVENUE_SUN12", + "message": "Back Side 66 KVA Grid Patiala Road - Area2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_REVENUE_SUN13", + "message": "Back Side Civil Courts Colony - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_REVENUE_SUN132", + "message": "Mohalla Akalgarh Gurudwara - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_REVENUE_SUN134", + "message": "Mohalla Bhadra Kali Mandir - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_REVENUE_SUN136", + "message": "Mohalla Bhatta Wala - Area2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_REVENUE_SUN137", + "message": "Mohalla Bhawdeyan Wala - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_REVENUE_SUN138", + "message": "Mohalla Bhojeka (both sides) - Area2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_REVENUE_SUN144", + "message": "Mohalla Kohliyan - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_REVENUE_SUN150", + "message": "Mohalla Rajan Wala (both sides) - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_REVENUE_SUN153", + "message": "Mohalla Singhkiyan (Nothern Side) - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_REVENUE_SUN158", + "message": "Mohalla-Kashayian wala - Area2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_REVENUE_SUN161", + "message": "Mohalla-Singhkiya wala - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_REVENUE_SUN167", + "message": "Mohalla Angaria wala - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_REVENUE_SUN169", + "message": "Mohalla Banda Patti - Area2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_REVENUE_SUN170", + "message": "Mohalla Bhai Ka - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_REVENUE_SUN173", + "message": "Mohalla Ganj Sheeda - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_REVENUE_SUN176", + "message": "Mohalla Kango - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_REVENUE_SUN178", + "message": "Mohalla Singh kia - Area2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_REVENUE_SUN18", + "message": "Back Side Naina Devi Mandir - Area2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_REVENUE_SUN194", + "message": "NEAR GURUDWARA PEHALI PATSHAHI UDAM SINGH ROAD - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_REVENUE_SUN20", + "message": "Backside Brijbala Hospital - Area3", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_REVENUE_SUN23", + "message": "BACKSIDE OLD GRAIN MARKET - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_REVENUE_SUN25", + "message": "Bakhtaur Nagar - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_REVENUE_SUN31", + "message": "Bhai Mool Chand Sahib Colony - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_REVENUE_SUN35", + "message": "Bigharwal Chowk to Railway Station - Area2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_REVENUE_SUN40", + "message": "Chandar Colony Biggarwal Road - Area2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_REVENUE_SUN41", + "message": "Charjan Wala Mohalla - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_REVENUE_SUN45", + "message": "Cinema Road - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_REVENUE_SUN46", + "message": "Cinema Road to Ali Bazaar (Nothern Side) - Area2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_REVENUE_SUN49", + "message": "College Road (Southern side) - Area2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_REVENUE_SUN54", + "message": "Deedar Tailor to Mata Modi Park- West Side - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_REVENUE_SUN55", + "message": "Deep Rice Mill Road - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_REVENUE_SUN56", + "message": "Dental College - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_REVENUE_SUN62", + "message": "Ekta Colony (Southern Side) - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_REVENUE_SUN75", + "message": "Gaushala", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_REVENUE_SUN80", + "message": "Gugga Maadi Road (east side) - Area2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYD_REVENUE_SUN84", + "message": "Gurudwara Niai Sahib Street 1 - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_ADMIN_SU166", + "message": "Mohalla Majoran", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_ADMIN_SUN02", + "message": "Aggarsain Chowk to Mal Godown - Both Sides", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_ADMIN_SUN04", + "message": "Ajit Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_ADMIN_SUN08", + "message": "ATAR SINGH COLONY", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_ADMIN_SUN105", + "message": "Jaura Khoo to Saraffa Bazaar (Southern Side)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_ADMIN_SUN109", + "message": "Kailash Parbat", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_ADMIN_SUN11", + "message": "Back Side 33 KVA Grid Patiala Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_ADMIN_SUN12", + "message": "Back Side 66 KVA Grid Patiala Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_ADMIN_SUN13", + "message": "Back Side Civil Courts Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_ADMIN_SUN132", + "message": "Mohalla Akalgarh Gurudwara", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_ADMIN_SUN134", + "message": "Mohalla Bhadra Kali Mandir", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_ADMIN_SUN136", + "message": "Mohalla Bhatta Wala", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_ADMIN_SUN137", + "message": "Mohalla Bhawdeyan Wala", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_ADMIN_SUN138", + "message": "Mohalla Bhojeka (both sides)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_ADMIN_SUN144", + "message": "Mohalla Kohliyan", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_ADMIN_SUN150", + "message": "Mohalla Rajan Wala (both sides)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_ADMIN_SUN153", + "message": "Mohalla Singhkiyan (Nothern Side)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_ADMIN_SUN158", + "message": "Mohalla-Kashayian wala", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_ADMIN_SUN161", + "message": "Mohalla-Singhkiya wala", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_ADMIN_SUN167", + "message": "Mohalla Angaria wala", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_ADMIN_SUN169", + "message": "Mohalla Banda Patti", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_ADMIN_SUN170", + "message": "Mohalla Bhai Ka", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_ADMIN_SUN173", + "message": "Mohalla Ganj Sheeda", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_ADMIN_SUN176", + "message": "Mohalla Kango", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_ADMIN_SUN178", + "message": "Mohalla Singh kia", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_ADMIN_SUN18", + "message": "Back Side Naina Devi Mandir", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_ADMIN_SUN194", + "message": "NEAR GURUDWARA PEHALI PATSHAHI UDAM SINGH ROAD", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_ADMIN_SUN20", + "message": "Backside Brijbala Hospital", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_ADMIN_SUN23", + "message": "BACKSIDE OLD GRAIN MARKET", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_ADMIN_SUN25", + "message": "Bakhtaur Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_ADMIN_SUN31", + "message": "Bhai Mool Chand Sahib Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_ADMIN_SUN35", + "message": "Bigharwal Chowk to Railway Station", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_ADMIN_SUN40", + "message": "Chandar Colony Biggarwal Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_ADMIN_SUN41", + "message": "Charjan Wala Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_ADMIN_SUN45", + "message": "Cinema Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_ADMIN_SUN46", + "message": "Cinema Road to Ali Bazaar (Nothern Side)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_ADMIN_SUN49", + "message": "College Road (Southern side)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_ADMIN_SUN54", + "message": "Deedar Tailor to Mata Modi Park- West Side", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_ADMIN_SUN55", + "message": "Deep Rice Mill Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_ADMIN_SUN56", + "message": "Dental College", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_ADMIN_SUN62", + "message": "Ekta Colony (Southern Side)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_ADMIN_SUN75", + "message": "Gaushala", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_ADMIN_SUN80", + "message": "Gugga Maadi Road (east side)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_ADMIN_SUN84", + "message": "Gurudwara Niai Sahib Street 1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_REVENUE_SU166", + "message": "Mohalla Majoran - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_REVENUE_SUN02", + "message": "Aggarsain Chowk to Mal Godown - Both Sides - Area3", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_REVENUE_SUN04", + "message": "Ajit Nagar - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_REVENUE_SUN08", + "message": "ATAR SINGH COLONY - Area2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_REVENUE_SUN105", + "message": "Jaura Khoo to Saraffa Bazaar (Southern Side) - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_REVENUE_SUN109", + "message": "Kailash Parbat - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_REVENUE_SUN11", + "message": "Back Side 33 KVA Grid Patiala Road - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_REVENUE_SUN12", + "message": "Back Side 66 KVA Grid Patiala Road - Area2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_REVENUE_SUN13", + "message": "Back Side Civil Courts Colony - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_REVENUE_SUN132", + "message": "Mohalla Akalgarh Gurudwara - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_REVENUE_SUN134", + "message": "Mohalla Bhadra Kali Mandir - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_REVENUE_SUN136", + "message": "Mohalla Bhatta Wala - Area2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_REVENUE_SUN137", + "message": "Mohalla Bhawdeyan Wala - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_REVENUE_SUN138", + "message": "Mohalla Bhojeka (both sides) - Area2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_REVENUE_SUN144", + "message": "Mohalla Kohliyan - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_REVENUE_SUN150", + "message": "Mohalla Rajan Wala (both sides) - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_REVENUE_SUN153", + "message": "Mohalla Singhkiyan (Nothern Side) - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_REVENUE_SUN158", + "message": "Mohalla-Kashayian wala - Area2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_REVENUE_SUN161", + "message": "Mohalla-Singhkiya wala - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_REVENUE_SUN167", + "message": "Mohalla Angaria wala - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_REVENUE_SUN169", + "message": "Mohalla Banda Patti - Area2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_REVENUE_SUN170", + "message": "Mohalla Bhai Ka - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_REVENUE_SUN173", + "message": "Mohalla Ganj Sheeda - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_REVENUE_SUN176", + "message": "Mohalla Kango - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_REVENUE_SUN178", + "message": "Mohalla Singh kia - Area2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_REVENUE_SUN18", + "message": "Back Side Naina Devi Mandir - Area2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_REVENUE_SUN194", + "message": "NEAR GURUDWARA PEHALI PATSHAHI UDAM SINGH ROAD - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_REVENUE_SUN20", + "message": "Backside Brijbala Hospital - Area3", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_REVENUE_SUN23", + "message": "BACKSIDE OLD GRAIN MARKET - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_REVENUE_SUN25", + "message": "Bakhtaur Nagar - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_REVENUE_SUN31", + "message": "Bhai Mool Chand Sahib Colony - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_REVENUE_SUN35", + "message": "Bigharwal Chowk to Railway Station - Area2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_REVENUE_SUN40", + "message": "Chandar Colony Biggarwal Road - Area2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_REVENUE_SUN41", + "message": "Charjan Wala Mohalla - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_REVENUE_SUN45", + "message": "Cinema Road - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_REVENUE_SUN46", + "message": "Cinema Road to Ali Bazaar (Nothern Side) - Area2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_REVENUE_SUN49", + "message": "College Road (Southern side) - Area2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_REVENUE_SUN54", + "message": "Deedar Tailor to Mata Modi Park- West Side - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_REVENUE_SUN55", + "message": "Deep Rice Mill Road - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_REVENUE_SUN56", + "message": "Dental College - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_REVENUE_SUN62", + "message": "Ekta Colony (Southern Side) - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_REVENUE_SUN75", + "message": "Gaushala", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_REVENUE_SUN80", + "message": "Gugga Maadi Road (east side) - Area2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "STATEA_CITYE_REVENUE_SUN84", + "message": "Gurudwara Niai Sahib Street 1 - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1", + "message": "Ashok Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC10", + "message": "Gurbachan Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC100", + "message": "Dera Preet Nagar Jhuggia", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1000", + "message": "Maqsudan Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1001", + "message": "Nagra Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1002", + "message": "Jawala Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1003", + "message": "New Jawala Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1004", + "message": "Patel Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1005", + "message": "New Patel Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1006", + "message": "Guru Ravidass Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1007", + "message": "Bhupinder Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1008", + "message": "Ashok Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1009", + "message": "Nagra Pind", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC101", + "message": "Miya Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1010", + "message": "New Nagra", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1011", + "message": "Shital Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1012", + "message": "New Shital Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1013", + "message": "Jugian", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1014", + "message": "Sham Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1015", + "message": "Amar Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1016", + "message": "Babu Labh Singh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1017", + "message": "Rattan Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1018", + "message": "New Rattan Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1019", + "message": "Shaheed Babu Labh Singh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC102", + "message": "Shalimar Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1020", + "message": "New Shaheed Babu Labh Singh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1021", + "message": "Madhuban Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1022", + "message": "Gujrati Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1023", + "message": "Jagwali Kathi Near Canal", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1024", + "message": "Ragu Nath Mandir Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1025", + "message": "Kacha Kot", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1026", + "message": "Old Green Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1027", + "message": "Green Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1028", + "message": "Raja Garden", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1029", + "message": "Raja Garden Extension", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC103", + "message": "New Dashmesh Nagar Part", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1030", + "message": "V.I.P Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1031", + "message": "Butti Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1032", + "message": "Gagan Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1033", + "message": "Bhai Gurdass Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1034", + "message": "Baba Bachittar Ji Nagar Mithu Basti", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1035", + "message": "Tara Singh Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1036", + "message": "New Rasila Nagar Basti Danishmandan", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1037", + "message": "Dilbagh Nagar Ext.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1038", + "message": "Rasila Nagar Phase 2 Danishmandan", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1039", + "message": "Rasila Nagar Basti Danishmandan", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC104", + "message": "Kaki Pind", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1040", + "message": "Begampura Colony Danishmandan", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1041", + "message": "Baba Budha Ji Nagar Mithu Nagar Basti", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1042", + "message": "Ekta Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1043", + "message": "New Shastri Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1044", + "message": "Satnam Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1045", + "message": "Anoop Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1046", + "message": "Bal bro Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1047", + "message": "Badhri Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1048", + "message": "Badhri Colony Phase (2)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1049", + "message": "Ram Shernam Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC105", + "message": "New Joginder Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1050", + "message": "Peer Das Basti", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1051", + "message": "Kamar Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1052", + "message": "Panu Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1053", + "message": "Paras Estate", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1054", + "message": "Paras Estate 2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1055", + "message": "Maharaja Garden", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1056", + "message": "Harbanse Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1057", + "message": "5 Peer Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1058", + "message": "Anoop Nagar (2)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1059", + "message": "Sher Singh Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC106", + "message": "Part of Joginder Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1060", + "message": "Roshan Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1061", + "message": "Qilla Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1062", + "message": "Kathera Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1063", + "message": "Gautam Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1064", + "message": "New Gautam Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1065", + "message": "Kabir Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1066", + "message": "Guru Ram Dass Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1067", + "message": "Mata Sant Kaur Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1068", + "message": "City A Prime", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1069", + "message": "City A Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC107", + "message": "New Beant Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1070", + "message": "City A Kunj", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1071", + "message": "Rajan Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1072", + "message": "Kailash Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1073", + "message": "Balmik Mohalla Bawa Khel", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1074", + "message": "Akal Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1075", + "message": "Basti Bawa Khel (main)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1076", + "message": "Raj Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1077", + "message": "New Raj Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1078", + "message": "Kabir Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1079", + "message": "Bank Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC108", + "message": "Part of Beant Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1080", + "message": "Basti Bawa Khel", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1081", + "message": "Katehara Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1082", + "message": "New Rattan Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1083", + "message": "Guru Nanak Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1084", + "message": "New Guru Nanak Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1085", + "message": "Shiv Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1086", + "message": "Baba Kahandass Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1087", + "message": "Village Nagara", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1088", + "message": "Abinandan Park", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1089", + "message": "National Park", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC109", + "message": "Gulmarg Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1090", + "message": "Ashok Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1091", + "message": "Vivek Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1092", + "message": "Green Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1093", + "message": "Shanti Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1094", + "message": "Viveka Nand Park", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1095", + "message": "Subash Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1096", + "message": "Golden Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1097", + "message": "Navyug Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1098", + "message": "New Shiv Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1099", + "message": "Maqsudan Byepass", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC11", + "message": "Indra Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC110", + "message": "Mehtab Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1100", + "message": "Mahasha Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1101", + "message": "Anand Ngr", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1102", + "message": "New Anand Ngr", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1103", + "message": "Janta Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1104", + "message": "Navnirman Janta Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1105", + "message": "Issa Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1106", + "message": "Guru Nanak Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1107", + "message": "Aara Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1108", + "message": "Surat Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1109", + "message": "Master Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC111", + "message": "Professor Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1110", + "message": "Angad Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC1111", + "message": "Amandip Avenue.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC112", + "message": "Mohan Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC113", + "message": "Part of Ladhewali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC114", + "message": "Part of New Dashmesh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC115", + "message": "Dhilwan", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC116", + "message": "Dhanowali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC117", + "message": "Sanik Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC118", + "message": "Old Dashmesh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC119", + "message": "Ajeet Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC12", + "message": "Sant Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC120", + "message": "Guru Anged Dev Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC121", + "message": "Sunder Nagar Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC122", + "message": "Kohinoor Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC123", + "message": "Sunny Prime", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC124", + "message": "Arman Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC125", + "message": "Johan Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC126", + "message": "Ganesh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC127", + "message": "New Ganesh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC128", + "message": "Masi Mohalla Dakoha", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC129", + "message": "Tarun Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC13", + "message": "Kalia Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC130", + "message": "Kaki Pind", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC131", + "message": "Arman Nagar 2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC132", + "message": "Birring Pind-1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC133", + "message": "Birring Pind-2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC134", + "message": "Mohinder Singh Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC135", + "message": "Mehnga Singh Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC136", + "message": "Dada Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC137", + "message": "Peace Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC138", + "message": "Bunga Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC139", + "message": "Golden Colony (Phase 1)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC14", + "message": "Kalia Colony Ph-1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC140", + "message": "Golden Colony (Phase 2)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC141", + "message": "Golden Colony (Phase 3)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC142", + "message": "Model Estate", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC143", + "message": "Defence Colony (Phase 1)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC144", + "message": "New Defence Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC145", + "message": "Paragpura ( Old Phagwara Road)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC146", + "message": "Paragpura ( Pind )", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC147", + "message": "Paragpura ( Abadi Near Railway fatak )", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC148", + "message": "Ratti Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC149", + "message": "Thakur Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC15", + "message": "Kalia Colony PH-2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC150", + "message": "Ram Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC151", + "message": "Chotte Ram Bagh", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC152", + "message": "Panch Sheel Colony ( Half )", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC153", + "message": "Bhullar Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC154", + "message": "Modern State", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC155", + "message": "Yadav Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC156", + "message": "Baba Budha Ji Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC157", + "message": "Bhuda Ji Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC158", + "message": "Shaheed Gurvinder Singh Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC159", + "message": "National Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC16", + "message": "Kalia Colony PH-3", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC160", + "message": "Ravidass Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC161", + "message": "Guru Nanak Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC162", + "message": "Jagjit Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC163", + "message": "Old Kaki Pind", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC164", + "message": "Village Dakoha", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC165", + "message": "Baba Budha Singh Nagar Street No 1 to 9", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC166", + "message": "Ekta Nagar PH-1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC167", + "message": "Ekta Nagar PH-2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC168", + "message": "Joginder Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC169", + "message": "Panch Rattan Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC17", + "message": "Kalia Farm", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC170", + "message": "New Defence Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC171", + "message": "Beant Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC172", + "message": "Old Beant Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC173", + "message": "PSEB Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC174", + "message": "BB Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC175", + "message": "Half Rama Mandi Main Bazar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC176", + "message": "Khateek Market Ramamandi", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC177", + "message": "Valmik Mohalla Ramamandi", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC178", + "message": "Krishna Sweet Wali Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC179", + "message": "Palwon Wali Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC18", + "message": "Guru Amar Dass Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC180", + "message": "Fouji Wali Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC181", + "message": "Bhatra Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC182", + "message": "Aytar Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC183", + "message": "Guru Nanak Pura East", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC184", + "message": "Guru Nanak Pura West", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC185", + "message": "Chugitti", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC186", + "message": "Ekta Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC187", + "message": "P.A.P", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC188", + "message": "Railway Colony-3", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC189", + "message": "Rajinder Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC19", + "message": "Guru Amar Dass Nagar 2- Marla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC190", + "message": "Preet Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC191", + "message": "Sehgal Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC192", + "message": "Kirti Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC193", + "message": "Mohalla Ladowali Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC194", + "message": "Mohyal Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC195", + "message": "Link Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC196", + "message": "Hargobind Pura", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC197", + "message": "Ranjit Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC198", + "message": "New Rajinder Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC199", + "message": "Police Line", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC2", + "message": "Bank Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC20", + "message": "New Guru Amar Dass Nagar Ext.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC200", + "message": "Guru Nanak Pura (West) Street No. 1 to 8", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC201", + "message": "New Guru Nanak Pura (West)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC202", + "message": "Bhojowal Patti (Chugittee)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC203", + "message": "Bharat Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC204", + "message": "Satnam Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC205", + "message": "Chugittee", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC206", + "message": "Ved Ram Parkash Street", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC207", + "message": "Guru Gobind Singh Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC208", + "message": "Sureya Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC209", + "message": "Komal Vihar Old & New", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC21", + "message": "Guru Amar Dass Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC210", + "message": "Bashirpura", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC211", + "message": "Thakur Singh Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC212", + "message": "Royal Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC213", + "message": "Jhansi Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC214", + "message": "Gobind Garh", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC215", + "message": "Arjun Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC216", + "message": "40 Quarter", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC217", + "message": "Dashmesh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC218", + "message": "New Dashmesh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC219", + "message": "Sant Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC22", + "message": "Venus Valley", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC220", + "message": "Shanti Pura", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC221", + "message": "New Baradari", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC222", + "message": "Poultry Form Area", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC223", + "message": "Prem Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC224", + "message": "Mandi Fenton Garg", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC225", + "message": "Partap Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC226", + "message": "Rishi Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC227", + "message": "Brahm Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC228", + "message": "Mandi Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC229", + "message": "Railway Colony No. 1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC23", + "message": "Baba Mohan Dass Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC230", + "message": "Guard Colony No-2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC231", + "message": "Old Jawahar Nagar Single Lane", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC232", + "message": "Central Town", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC233", + "message": "Krishan Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC234", + "message": "Old Jawahar Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC235", + "message": "Master Tara Singh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC236", + "message": "P & T Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC237", + "message": "Riaz Pura", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC238", + "message": "Ramesh Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC239", + "message": "Shiva Ji Park", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC24", + "message": "Salempur Muslmana", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC240", + "message": "Netaji Park", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC241", + "message": "Civil Lines", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC242", + "message": "Mohalla Makhdumpura", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC243", + "message": "Mohalla Shastri Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC244", + "message": "Fauji Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC245", + "message": "Shivalik Apartments", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC246", + "message": "Venus Apartments", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC247", + "message": "B-Block Apartments", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC248", + "message": "Paradise Apartments", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC249", + "message": "Gurkirpa Apartments", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC25", + "message": "Swarn Park-1Swarn Prak- 2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC250", + "message": "Ganga Apartments", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC251", + "message": "Nakodar Road Market", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC252", + "message": "Lajpat Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC253", + "message": "Lajpat Nagar Market", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC254", + "message": "Abadpura", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC255", + "message": "Balmiki Colony Link Road Abadpura", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC256", + "message": "Major Bahadur Singh Nagar & Marg", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC257", + "message": "New Model Town Mall Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC258", + "message": "New Jawahar Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC259", + "message": "Guru Nanak Mission Chowk", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC26", + "message": "Sanjay Gandhi Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC260", + "message": "Badridass Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC261", + "message": "Purani Baradari", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC262", + "message": "Skylark Chowk", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC263", + "message": "Civil Lines", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC264", + "message": "Sehdev Market", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC265", + "message": "Namdev Chowk", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC266", + "message": "G.T Road Market", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC267", + "message": "Shastri Chowk", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC268", + "message": "Sanjay Gandhi Market", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC269", + "message": "New Courts Chowk", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC27", + "message": "Gadaipur", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC270", + "message": "Police Line Market", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC271", + "message": "BMC Chowk", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC272", + "message": "Market Opposite Bus Stand", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC273", + "message": "Link Road Model Town", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC274", + "message": "Valmiki Colony Major Bahadur Singh Marg", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC275", + "message": "Radio Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC276", + "message": "New Jawahar Nagar (Point)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC277", + "message": "Green Park", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC278", + "message": "Mota Singh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC279", + "message": "Modern Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC28", + "message": "Raja Garden", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC280", + "message": "Gurjaipal Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC281", + "message": "Wariam Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC282", + "message": "Gian Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC283", + "message": "New Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC284", + "message": "Defence Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC285", + "message": "Defence Colony Ext.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC286", + "message": "Chotti Baradari", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC287", + "message": "Jaswant Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC288", + "message": "Roop Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC289", + "message": "Atwal Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC29", + "message": "Ram Bagh Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC290", + "message": "Atwal House", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC291", + "message": "New Hardyal Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC292", + "message": "Hardyal Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC293", + "message": "Rubi Hospital", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC294", + "message": "BSF Camp", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC295", + "message": "New Green Park", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC296", + "message": "Railway Quarter ( Cool Road)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC297", + "message": "Garha/Shiv Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC298", + "message": "Dayanand chowk", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC299", + "message": "Rattan Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC3", + "message": "Sarabha Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC30", + "message": "Dada Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC300", + "message": "Sark Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC301", + "message": "Valmiki Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC302", + "message": "Ravi dass Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC303", + "message": "Makhan Ramwali Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC304", + "message": "School wali Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC305", + "message": "Jiwan Singh Chowk", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC306", + "message": "Tanki Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC307", + "message": "Phagu Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC308", + "message": "Sarpanch wali Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC309", + "message": "Main Bazar Rama Mandir", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC31", + "message": "Industrial Area", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC310", + "message": "Main Bazar Gurudwara Singh Sabha", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC311", + "message": "Garha Vehanda", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC312", + "message": "Phagu Mohalla Ram Mandir wali Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC313", + "message": "Phagwari Mohalla Near Janj Ghar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC314", + "message": "Phagwari Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC315", + "message": "Dr. Mana Wali Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC316", + "message": "Old Div. 7 Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC317", + "message": "Cantt. Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC318", + "message": "Cantt. Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC319", + "message": "New Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC32", + "message": "Focal Point", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC320", + "message": "Jaswant Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC321", + "message": "Jawant Nagar near Gurudwara", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC322", + "message": "Jaswant Nagar Gali No. 1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC323", + "message": "Jaswant Nagar Gali Thekewali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC324", + "message": "Jaswant Nagar Gali no. 100 3 to 5", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC325", + "message": "Jaswant Nagar Gali 2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC326", + "message": "Golden Aveune-1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC327", + "message": "Golden Avenue-2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC328", + "message": "Gurjeet Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC329", + "message": "Dashmesh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC33", + "message": "Transport Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC330", + "message": "Chanchal Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC331", + "message": "Chotti Baradari Part-2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC332", + "message": "Idgah Mohalla Garha", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC333", + "message": "Sarak Mohalla Garha", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC334", + "message": "Guru Diwan Nagar Garha", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC335", + "message": "Tara Chand Colony Garha", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC336", + "message": "Chintpurni Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC337", + "message": "Geeta Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC338", + "message": "Garha", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC339", + "message": "Labour Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC34", + "message": "Udyog Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC340", + "message": "Kunowali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC341", + "message": "Urban Estate Ph-1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC342", + "message": "M.I.G", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC343", + "message": "Urban Estate Phase Half", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC344", + "message": "Sabowal Old.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC345", + "message": "Isherpuri Colony (Some Part)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC346", + "message": "Urban Estate 2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC347", + "message": "Sabowal", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC348", + "message": "Lahor Nangal", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC349", + "message": "Isherpuri Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC35", + "message": "Parshuram Pur", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC350", + "message": "Ranjit Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC351", + "message": "Kalgidhar Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC352", + "message": "New Kalgidhar Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC353", + "message": "Ravinder Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC354", + "message": "Dashmesh Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC355", + "message": "Karol Bagh", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC356", + "message": "Vijay Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC357", + "message": "Guru Ram Dass Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC358", + "message": "Baba Makhan Shah Lubana", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC359", + "message": "Friends Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC36", + "message": "Vadda Saipur", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC360", + "message": "Officer Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC361", + "message": "D.C Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC362", + "message": "White Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC363", + "message": "Punjabi Bagh", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC364", + "message": "Lahor Nagar Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC365", + "message": "Happy Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC366", + "message": "New Isherpuri", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC367", + "message": "Universal Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC368", + "message": "Singh Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC369", + "message": "Engineer Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC37", + "message": "Reru", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC370", + "message": "Green Garden Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC371", + "message": "Ravinder Nagar Extension", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC372", + "message": "Punjabi Bagh Extension", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC373", + "message": "Model Town", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC374", + "message": "Parkash Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC375", + "message": "Guru Nanak Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC376", + "message": "Guru Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC377", + "message": "Rishi Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC378", + "message": "Jyoti Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC379", + "message": "Shankar Garden", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC38", + "message": "Hargobind Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC380", + "message": "Lal Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC381", + "message": "Satkartar Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC382", + "message": "Ravinder Nagar Extension", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC383", + "message": "Cheema Nagar Ext.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC384", + "message": "Vasant Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC385", + "message": "Vasant Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC386", + "message": "Vasant Vihar Ext.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC387", + "message": "Urban Estate Ph-2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC388", + "message": "Model Town", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC389", + "message": "New Jawahar Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC39", + "message": "Punjabi Bagh", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC390", + "message": "Lajpat Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC391", + "message": "Dada Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC392", + "message": "Green Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC393", + "message": "Green Model Town", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC394", + "message": "Kewal Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC395", + "message": "Indra Park", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC396", + "message": "Cheema Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC397", + "message": "Shiv Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC398", + "message": "Gurmeet Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC399", + "message": "Ramneek Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC4", + "message": "Paschim Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC40", + "message": "Bachint Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC400", + "message": "Bank Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC401", + "message": "Bank Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC402", + "message": "Raja Garden", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC403", + "message": "Keshev Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC404", + "message": "Ekta Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC405", + "message": "New Raja Garden", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC406", + "message": "New Raja Garden Extension", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC407", + "message": "Bhai Samund Singh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC408", + "message": "New Arora Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC409", + "message": "Mithapur", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC41", + "message": "Parsuram Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC410", + "message": "King Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC411", + "message": "Green Wood Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC412", + "message": "Ram Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC413", + "message": "Sewerage Board Quarter", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC414", + "message": "75 Garden Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC415", + "message": "Panch Sheel Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC416", + "message": "Mayor Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC417", + "message": "New Light Colony Phase -1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC418", + "message": "Bank Enclave Phase-2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC419", + "message": "Residence Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC42", + "message": "Kahanpur Abadi", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC420", + "message": "Sudhama Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC421", + "message": "New Sudhama Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC422", + "message": "Rocky Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC423", + "message": "New Light Colony Phase-2 (Sudhama Vihar)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC424", + "message": "VIP Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC425", + "message": "Sadhu Singh Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC426", + "message": "Red Face Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC427", + "message": "New Garden Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC428", + "message": "Bhai Banno Ji Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC429", + "message": "Gill Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC43", + "message": "Ramneek Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC430", + "message": "Parkash Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC431", + "message": "Khurla Kingra", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC432", + "message": "Tower Town Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC433", + "message": "Silver Residency", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC434", + "message": "Tower Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC435", + "message": "Guru Nanak Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC436", + "message": "Boota Mandi", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC437", + "message": "Boota Pind (Back Side Dr.B.R. Ambedkar Park", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC438", + "message": "Swami Lal JI Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC439", + "message": "New Green Park", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC44", + "message": "Baba Deep Singh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC440", + "message": "Khurla Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC441", + "message": "Professor Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC442", + "message": "Army Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC443", + "message": "Mann Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC444", + "message": "Chopra Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC445", + "message": "Khurla Kingra (Back Side Sai Mandir)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC446", + "message": "Door Darshan Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC447", + "message": "Bombay Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC448", + "message": "Friends Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC449", + "message": "SAS Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC45", + "message": "Nurpur Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC450", + "message": "SAS Nagar Extension", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC451", + "message": "New Green Model Town", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC452", + "message": "Palam Rajeet Apartments", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC453", + "message": "Bank Enclave Part 1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC454", + "message": "Kuki Dhab", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC455", + "message": "Green Woods Apartments", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC456", + "message": "Park View Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC457", + "message": "Housing Board Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC458", + "message": "Satnam Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC459", + "message": "Mann Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC46", + "message": "Sunder Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC460", + "message": "Punjabi Bagh Wadala Chowk", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC461", + "message": "Silver heights", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC462", + "message": "Partap Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC463", + "message": "Guru Gobind Singh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC464", + "message": "Guru Arjan dev Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC465", + "message": "G.T.B Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC466", + "message": "Garden Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC467", + "message": "G.T.B Nagar extension", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC468", + "message": "GTB Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC469", + "message": "F.C.I Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC47", + "message": "Hargobind Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC470", + "message": "Chanakya Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC471", + "message": "New GTB Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC472", + "message": "Vivek Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC473", + "message": "Green Model Town", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC474", + "message": "Boota Pind", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC475", + "message": "Wadala Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC48", + "message": "Gulmarg Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC49", + "message": "Bachint Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC5", + "message": "Amrit Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC50", + "message": "Sarabha Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC51", + "message": "Chack Hussiana", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC52", + "message": "Lamba Pind", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC53", + "message": "Chandigarh Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC54", + "message": "Succhi Pind", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC55", + "message": "Hardial Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC56", + "message": "New Hardial Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC57", + "message": "Hardip Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC58", + "message": "Judge Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC59", + "message": "Prem Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC6", + "message": "Chak Jinda", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC60", + "message": "Gulmohar City", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC61", + "message": "Three Star Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC614", + "message": "Guru Sant Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC615", + "message": "Guru Nanak Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC616", + "message": "Lasuri Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC617", + "message": "Baldev Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC618", + "message": "Satkartar Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC619", + "message": "Ujala Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC62", + "message": "Soma Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC620", + "message": "Mohindra Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC621", + "message": "Valmiki Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC622", + "message": "Vada Bazar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC623", + "message": "Banian Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC624", + "message": "Satran Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC625", + "message": "Mochian Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC626", + "message": "Tarkhana Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC627", + "message": "Telian Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC628", + "message": "Road Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC629", + "message": "Manjit Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC63", + "message": "Mata Salani Mandir", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC630", + "message": "Chet Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC631", + "message": "Janak Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC632", + "message": "Chaian Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC633", + "message": "Kot Bazar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC634", + "message": "Gulabia Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC635", + "message": "Bara Bazar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC636", + "message": "Hargobind Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC637", + "message": "Gurditta Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC638", + "message": "Borah Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC639", + "message": "Sethia Wali Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC64", + "message": "Baba Gadila Sham colony (Succhi Pind)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC640", + "message": "Dhankian Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC641", + "message": "Jairath Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC642", + "message": "Bagh Ahluwalia", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC643", + "message": "Kamaliya Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC644", + "message": "Gobind Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC645", + "message": "New Gobind Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC646", + "message": "Dilbagh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC647", + "message": "120' Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC648", + "message": "Shastri Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC649", + "message": "Old Shastri Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC65", + "message": "Deep Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC650", + "message": "Old Dusshara Ground", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC651", + "message": "Surya Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC652", + "message": "Basti Gujan", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC653", + "message": "Ambedkar Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC654", + "message": "Shah Kuli Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC655", + "message": "Virdi Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC656", + "message": "Valmiki Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC657", + "message": "Vada Vehra", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC658", + "message": "Sunyara Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC659", + "message": "Jangra Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC66", + "message": "New Upkar Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC660", + "message": "Machi Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC661", + "message": "Harkrishan Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC662", + "message": "Manjit Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC663", + "message": "New Dilbagh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC664", + "message": "Dilbagh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC665", + "message": "Lahoria Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC666", + "message": "Kot Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC667", + "message": "Binda Chowk", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC668", + "message": "Doriya Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC669", + "message": "Board Wali Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC67", + "message": "Moh Kot Ram Dass ( Abadi )", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC670", + "message": "Main Bazar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC671", + "message": "Shibu Mandir Chowk", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC672", + "message": "New Adarsh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC673", + "message": "J.P.Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC674", + "message": "Adarsh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC675", + "message": "J.P. Nagar Extension", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC676", + "message": "Basti Nau", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC677", + "message": "Krishan Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC678", + "message": "Basti Mithu", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC679", + "message": "Patwar Khana", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC68", + "message": "Karol Bagh", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC680", + "message": "Conal Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC681", + "message": "Harbans Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC682", + "message": "New Harbans Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC683", + "message": "New Harbans Nagar Ext.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC684", + "message": "Adarsh Nagar up to Satyam Hospital Street", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC685", + "message": "New Vijay Nagar Left Side", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC686", + "message": "Tagore Nagar Right Side St.NO.7", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC687", + "message": "Dyal Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC688", + "message": "Gujral Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC689", + "message": "Shakti Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC69", + "message": "Rail Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC690", + "message": "Vijay Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC691", + "message": "S.U.S Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC692", + "message": "Ajit Singh Nagar up to Nakodar Chowk", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC693", + "message": "Niwan Suraj Gunj", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC694", + "message": "Islam Gunj", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC695", + "message": "Islamabad", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC696", + "message": "Mission Compound Left Side Batra Hospital", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC697", + "message": "Makhdoom Pura", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC698", + "message": "Dhobi Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC699", + "message": "Mohalla Pacca Bagh", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC7", + "message": "Toor Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC70", + "message": "Patel Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC700", + "message": "Ram Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC701", + "message": "Saidan Gate", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC702", + "message": "Chowk Kade Shah", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC703", + "message": "Batakh Wala Chowk", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC704", + "message": "Rainak Bazar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC705", + "message": "Naya Bazar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC706", + "message": "Shaheed Udham Singh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC707", + "message": "Flats", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC708", + "message": "Civil Hospital", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC709", + "message": "E.S.I Hospital", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC71", + "message": "Sangam Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC710", + "message": "E.S.I Hospital Flats", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC711", + "message": "Milap Chowk to G.P.O", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC712", + "message": "G.P.O to Shastri Chowk", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC713", + "message": "Shastri to Milap Chowk", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC714", + "message": "Milap to Sunrise Hotal", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC715", + "message": "Sunrise Hotal to Partap Bagh", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC716", + "message": "Partap Bagh to Phagwara Gate", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC717", + "message": "Naya Bazar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC718", + "message": "Saiden Gate", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC719", + "message": "Peer Bodla Bazar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC72", + "message": "Preet Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC720", + "message": "Khazuria Bazar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC721", + "message": "Guru Bazar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC722", + "message": "Neehya Band Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC723", + "message": "Jybal Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC724", + "message": "Neem Wali Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC725", + "message": "Tanki Wali Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC726", + "message": "Khodiya Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC727", + "message": "Kotpakshiya", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC728", + "message": "Hotel Raj Mahal back Side Gurudawara and Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC729", + "message": "Pakka Bagh", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC73", + "message": "Mann Singh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC730", + "message": "Chohal Bagh", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC731", + "message": "Hindsamachar Ground", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC732", + "message": "Mina Bazar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC733", + "message": "Tikki Bagh Chowk", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC734", + "message": "Ucha Suraj Gunj", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC735", + "message": "Jyoti chowk to preet Hotel", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC736", + "message": "Charanjit Pura", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC737", + "message": "Ajit Pura", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC738", + "message": "Jatt Pura", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC739", + "message": "Valmiki Gate", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC74", + "message": "Suchi Pind", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC740", + "message": "Malka Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC741", + "message": "Mohindru Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC742", + "message": "Mitha Bazar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC743", + "message": "Telwali Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC744", + "message": "Chota Ali Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC745", + "message": "Alli Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC746", + "message": "Bansa Wala Bazar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC747", + "message": "Chajju Ram Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC748", + "message": "Kotwali Bazar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC749", + "message": "Malora Muhalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC75", + "message": "Indian Oil Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC750", + "message": "Nauhrian Bazar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC751", + "message": "Kot Bahadur Khan", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC752", + "message": "Sheikhan Bazar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC753", + "message": "Sudan Chowk", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC754", + "message": "Deen Dayal Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC755", + "message": "Prem Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC756", + "message": "New Prem Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC757", + "message": "Sat Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC758", + "message": "Chandan Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC759", + "message": "Fateh Puri", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC76", + "message": "Green County", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC760", + "message": "Vikrampura", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC761", + "message": "Subash Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC762", + "message": "Partap Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC763", + "message": "Purani Kachehri", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC764", + "message": "Piplan Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC765", + "message": "Chadhian Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC766", + "message": "Lawan Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC767", + "message": "Charjian Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC768", + "message": "Mitha Bazar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC769", + "message": "Bhairon Bazar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC77", + "message": "Ladhewali Pind", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC770", + "message": "Quilla Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC771", + "message": "Qazi Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC772", + "message": "Khingran Gate", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC773", + "message": "Mughlan Dhiki", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC774", + "message": "Prem Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC775", + "message": "Purian Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC776", + "message": "Sehglan Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC777", + "message": "Modian Tod", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC778", + "message": "Thapra Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC779", + "message": "Mai Hiran Gate", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC78", + "message": "Chokan Kalan Pind", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC780", + "message": "Phagwara Gate", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC781", + "message": "Rasta Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC782", + "message": "Biliya Mandir", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC783", + "message": "Talhi Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC784", + "message": "Baghia Whra", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC785", + "message": "Quda Shah Chowk", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC786", + "message": "Phir Bodhla Bazar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC787", + "message": "Kalo Vani Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC788", + "message": "Atari Bazar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC789", + "message": "Nacha Badh Gali", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC79", + "message": "Nagal Shama Pind", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC790", + "message": "Kanchia Bazar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC791", + "message": "Qazi Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC792", + "message": "Qilla Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC793", + "message": "Shivraz Garh", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC794", + "message": "Panj Peer Chowk", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC795", + "message": "Bhagat Singh Chowk", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC796", + "message": "Railway Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC797", + "message": "Rishi Nagar Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC798", + "message": "Partap Bagh", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC799", + "message": "Awa Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC8", + "message": "Navjot Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC80", + "message": "Datar Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC800", + "message": "Kot Kishan Chand", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC801", + "message": "Jagat Pura", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC802", + "message": "Dhan Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC803", + "message": "Rishi Nagar (5 Gali)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC804", + "message": "Kishanpura (5 Gali)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC805", + "message": "Inderparsth Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC806", + "message": "Arya Samaj Mandir", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC807", + "message": "Bheem Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC808", + "message": "Sansi Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC809", + "message": "Dolatpuri", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC81", + "message": "Khehra Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC810", + "message": "Kapoor Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC811", + "message": "Ajit Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC812", + "message": "Amrik Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC813", + "message": "New Ajit Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC814", + "message": "New Amrik Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC815", + "message": "Baba Math Shah", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC816", + "message": "Santoshi Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC817", + "message": "Madrasi Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC818", + "message": "Qazi Mandi", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC819", + "message": "Kishan Pura", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC82", + "message": "Kabir Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC820", + "message": "Hoshiarpur Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC821", + "message": "Old Hoshiarpur Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC822", + "message": "Baldev Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC823", + "message": "New Baldev Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC824", + "message": "Baba Balak Nath Market", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC825", + "message": "Madrasi Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC826", + "message": "Ravidass School Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC827", + "message": "Dhonka Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC828", + "message": "Prithvi Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC829", + "message": "New Prithvi Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC83", + "message": "Kabir Avenue Extension", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC830", + "message": "Lambapind Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC831", + "message": "Dutta Street", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC832", + "message": "Raman Shiv Mandir Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC833", + "message": "Ajit Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC834", + "message": "Balmiki Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC835", + "message": "Vivek Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC836", + "message": "New Vivek Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC837", + "message": "Arjun Singh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC838", + "message": "Jaimal Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC839", + "message": "Durga Mandir Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC84", + "message": "Punjab Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC840", + "message": "Vinay Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC841", + "message": "Akash Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC842", + "message": "Arjun Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC843", + "message": "Jaimal Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC844", + "message": "Upkar Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC845", + "message": "New Upkar Nargar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC846", + "message": "Ghandi Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC847", + "message": "New Ghandi Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC848", + "message": "Chakk Hussaina", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC849", + "message": "Hoshiarpur Road Lamba Pind(Left Side)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC85", + "message": "Punjab Avenue Extension", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC850", + "message": "Muslim Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC851", + "message": "New Vinay Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC852", + "message": "Hans Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC853", + "message": "New Santokhpura", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC854", + "message": "Durga Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC855", + "message": "Sarabha Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC856", + "message": "Guru Ram Dass Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC857", + "message": "Niwi Abadi", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC858", + "message": "Lakshmipura", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC859", + "message": "New Lakshmipura", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC86", + "message": "Dhaliwal Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC860", + "message": "Vij Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC861", + "message": "Sant Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC862", + "message": "Bhagatpura", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC863", + "message": "Jeet Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC864", + "message": "Vikaspuri", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC865", + "message": "New Vikaspuri", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC866", + "message": "Ambika Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC867", + "message": "B.D.Steel", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC868", + "message": "Santokhpura Nivi Abadi", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC869", + "message": "Basti Bhure Kha", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC87", + "message": "Himachal Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC870", + "message": "Shah Sikandar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC871", + "message": "Ram Gharia School", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC872", + "message": "Preet Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC873", + "message": "Basant Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC874", + "message": "New Basant Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC875", + "message": "Aman Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC876", + "message": "New Aman Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC877", + "message": "New colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC878", + "message": "Kamal Park", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC879", + "message": "Preet Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC88", + "message": "Green Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC880", + "message": "New Preet Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC881", + "message": "Sodal Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC882", + "message": "Sidh Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC883", + "message": "Ashok Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC884", + "message": "Ramco Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC885", + "message": "New Sodal Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC886", + "message": "Mathura Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC887", + "message": "Kot Baba Deep Singh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC888", + "message": "Tobari Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC889", + "message": "Tanda Road Hanuman Mandir Chowk to Tanda Road Railway Crossing", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC89", + "message": "Sunshine Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC890", + "message": "Shah Sikandar Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC891", + "message": "Kailash Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC892", + "message": "New Kailash Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC893", + "message": "New Kailash Nagar Ext.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC894", + "message": "Gobind Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC895", + "message": "New Gobind Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC896", + "message": "J.M.C Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC897", + "message": "Gujja Peer Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC898", + "message": "Amar Garden", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC899", + "message": "Saipur Kalan", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC9", + "message": "New Guru Amar Das Extension Paschim", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC90", + "message": "Silver Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC900", + "message": "Sanjay Gandhi", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC901", + "message": "Dada Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC902", + "message": "Saini Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC903", + "message": "Chotta Saipur", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC904", + "message": "Hari Singh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC905", + "message": "Shashi Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC906", + "message": "Lathi Mar Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC907", + "message": "Sodal Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC908", + "message": "Gujja Peer Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC909", + "message": "Sodal Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC91", + "message": "Randhawa Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC910", + "message": "Laxmi Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC911", + "message": "Kali Mata Mandir Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC912", + "message": "Bhagat Singh Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC913", + "message": "Baba Balak Nath Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC914", + "message": "Shiv Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC915", + "message": "Canal Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC916", + "message": "Industrial Area", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC917", + "message": "Dada Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC918", + "message": "Chota Saipur Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC919", + "message": "Shiv Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC92", + "message": "Lahora Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC920", + "message": "Brij Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC921", + "message": "Gajji Gulla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC922", + "message": "Parbhat Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC923", + "message": "Ram Nagar Railway", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC924", + "message": "Crossing to Gajji Gujja Chowk Left Side", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC925", + "message": "Industrial Area Ext.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC926", + "message": "Canal Industrial Complex", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC927", + "message": "Gandhi Camp", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC928", + "message": "Gurdev Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC929", + "message": "Gopal Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC93", + "message": "Nanak Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC930", + "message": "Satnam Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC931", + "message": "Sawan Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC932", + "message": "Valmiki Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC933", + "message": "New Grain Market", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC934", + "message": "Jain Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC935", + "message": "New Gopal Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC936", + "message": "Neela Mahal", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC937", + "message": "Mohalla Krar Khan", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC938", + "message": "Sangra Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC939", + "message": "Teacher Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC94", + "message": "Basant Hill", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC940", + "message": "Krishna Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC941", + "message": "Tobri Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC942", + "message": "Guru Nanak Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC943", + "message": "Harnamdasspura", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC944", + "message": "Kot Lakhpat Rai", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC945", + "message": "Banda Bahadur Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC946", + "message": "Kapurthala Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC947", + "message": "Bagh Baharia", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC948", + "message": "Gulab Devi Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC949", + "message": "Bulton Park Cricket Stadium", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC95", + "message": "University Enclave", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC950", + "message": "Durga Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC951", + "message": "B.S.F Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC952", + "message": "Gopal Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC953", + "message": "New Colony Gopal Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC954", + "message": "Main Road Old Sabzi Mandi to Burton Park", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC955", + "message": "Sangat Singh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC956", + "message": "Balwant Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC957", + "message": "Bandha Bhadur Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC958", + "message": "Sarswati Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC959", + "message": "PNT Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC96", + "message": "Moti Bagh", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC960", + "message": "Bagh Bharia", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC961", + "message": "Bhagwan Dass Pura", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC962", + "message": "Dhiman Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC963", + "message": "Adresh Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC964", + "message": "Natha Bagechi", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC965", + "message": "Misson Compound", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC966", + "message": "Talab Bharia", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC967", + "message": "Jail Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC968", + "message": "Kabir Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC969", + "message": "Kachari Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC97", + "message": "Park Avenue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC970", + "message": "Gandhi Camp 3 Lain", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC971", + "message": "Windsor Park", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC972", + "message": "Rose Park", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC973", + "message": "Jain Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC974", + "message": "Gupta Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC975", + "message": "Hardev Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC976", + "message": "Guru Nanak Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC977", + "message": "Guru Arjun Dev Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC978", + "message": "Sarswati Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC979", + "message": "Surjit Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC98", + "message": "Chopra Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC980", + "message": "Malak Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC981", + "message": "Kalyani Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC982", + "message": "Suriya Vihar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC983", + "message": "Vivekananda Park", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC984", + "message": "Ariya Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC985", + "message": "Pingalwara", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC986", + "message": "Gujrati Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC987", + "message": "Shardha Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC988", + "message": "Sawarn Park", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC989", + "message": "Ram Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC99", + "message": "Dr. Ambedkar Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC990", + "message": "Chhota Gandhi Nagar Camp", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC991", + "message": "Friends Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC992", + "message": "Seth Hukam Chand Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC993", + "message": "Greater Kailash", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC994", + "message": "Moti Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC995", + "message": "New Moti Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC996", + "message": "Tagore Park/ Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC997", + "message": "Professor Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC998", + "message": "Maqsudan Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_JLC999", + "message": "Bohar Wala Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_STATEA_STATE", + "message": "State A", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TL_ACKNOWLEDGEMENT_FAILURE_BODY", + "message": "A notification regarding payment failure has been sent to the trade owner and applicant.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TL_ACKNOWLEDGEMENT_FAILURE_HEADER", + "message": "Payment has failed!", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TL_BUTTON_UPLOAD FILE", + "message": "UPLOAD FILE", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TL_DOB_ERROR_MESSAGE", + "message": "Please enter valid Date of Birth!", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TL_OLD_LICENSE_NO", + "message": "Old Application Number", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TL_SUMMARY_HEADER", + "message": "Application Summary", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "TL_VIEWBREAKUPCONTAINER_ACCESSORY_UNIT", + "message": "Accessory Unit", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "WF_PGR_APPLY", + "message": "Applied", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "WF_PGR_ASSIGN", + "message": "Assigned", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "WF_PGR_RATE", + "message": "Closed after rating", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "WF_PGR_REASSIGN", + "message": "Re-Assigned", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "WF_PGR_REJECT", + "message": "Rejected", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "WF_PGR_REOPEN", + "message": "Reopened", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "WF_PGR_RESOLVE", + "message": "Resolved", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "admin.locality.SU166", + "message": "Mohalla Majoran - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "admin.locality.SUN02", + "message": "Aggarsain Chowk to Mal Godown - Both Sides - Area3", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "admin.locality.SUN04", + "message": "Ajit Nagar - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "admin.locality.SUN08", + "message": "ATAR SINGH COLONY - Area2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "admin.locality.SUN105", + "message": "Jaura Khoo to Saraffa Bazaar (Southern Side) - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "admin.locality.SUN109", + "message": "Kailash Parbat - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "admin.locality.SUN11", + "message": "Back Side 33 KVA Grid Patiala Road - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "admin.locality.SUN12", + "message": "Back Side 66 KVA Grid Patiala Road - Area2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "admin.locality.SUN13", + "message": "Back Side Civil Courts Colony - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "admin.locality.SUN132", + "message": "Mohalla Akalgarh Gurudwara - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "admin.locality.SUN134", + "message": "Mohalla Bhadra Kali Mandir - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "admin.locality.SUN136", + "message": "Mohalla Bhatta Wala - Area2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "admin.locality.SUN137", + "message": "Mohalla Bhawdeyan Wala - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "admin.locality.SUN138", + "message": "Mohalla Bhojeka (both sides) - Area2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "admin.locality.SUN144", + "message": "Mohalla Kohliyan - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "admin.locality.SUN150", + "message": "Mohalla Rajan Wala (both sides) - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "admin.locality.SUN153", + "message": "Mohalla Singhkiyan (Nothern Side) - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "admin.locality.SUN158", + "message": "Mohalla-Kashayian wala - Area2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "admin.locality.SUN161", + "message": "Mohalla-Singhkiya wala - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "admin.locality.SUN167", + "message": "Mohalla Angaria wala - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "admin.locality.SUN169", + "message": "Mohalla Banda Patti - Area2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "admin.locality.SUN170", + "message": "Mohalla Bhai Ka - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "admin.locality.SUN173", + "message": "Mohalla Ganj Sheeda - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "admin.locality.SUN176", + "message": "Mohalla Kango - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "admin.locality.SUN178", + "message": "Mohalla Singh kia - Area2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "admin.locality.SUN18", + "message": "Back Side Naina Devi Mandir - Area2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "admin.locality.SUN194", + "message": "NEAR GURUDWARA PEHALI PATSHAHI UDAM SINGH ROAD - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "admin.locality.SUN20", + "message": "Backside Brijbala Hospital - Area3", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "admin.locality.SUN23", + "message": "BACKSIDE OLD GRAIN MARKET - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "admin.locality.SUN25", + "message": "Bakhtaur Nagar - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "admin.locality.SUN31", + "message": "Bhai Mool Chand Sahib Colony - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "admin.locality.SUN35", + "message": "Bigharwal Chowk to Railway Station - Area2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "admin.locality.SUN40", + "message": "Chandar Colony Biggarwal Road - Area2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "admin.locality.SUN41", + "message": "Charjan Wala Mohalla - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "admin.locality.SUN45", + "message": "Cinema Road - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "admin.locality.SUN46", + "message": "Cinema Road to Ali Bazaar (Nothern Side) - Area2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "admin.locality.SUN49", + "message": "College Road (Southern side) - Area2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "admin.locality.SUN54", + "message": "Deedar Tailor to Mata Modi Park- West Side - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "admin.locality.SUN55", + "message": "Deep Rice Mill Road - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "admin.locality.SUN56", + "message": "Dental College - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "admin.locality.SUN62", + "message": "Ekta Colony (Southern Side) - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "admin.locality.SUN75", + "message": "Gaushala, Arora Colony - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "admin.locality.SUN80", + "message": "Gugga Maadi Road (east side) - Area2", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "admin.locality.SUN84", + "message": "Gurudwara Niai Sahib Street 1 - Area1", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "chatbot.pgr.assigned", + "message": "Assigned", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "chatbot.pgr.closed", + "message": "Closed", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "chatbot.pgr.open", + "message": "Filed", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "chatbot.pgr.reassignrequested", + "message": "Being Re-assigned", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "chatbot.pgr.rejected", + "message": "Rejected", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "chatbot.pgr.resolved", + "message": "Resolved", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Assignment.fields.department", + "message": "Department", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Assignment.fields.designation", + "message": "Designation", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Assignment.fields.documents", + "message": "Documents", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Assignment.fields.fromDate", + "message": "From Date", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Assignment.fields.function", + "message": "Function", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Assignment.fields.functionary", + "message": "Functionary", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Assignment.fields.fund", + "message": "Fund", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Assignment.fields.govtOrderNumber", + "message": "Govt Order Number", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Assignment.fields.grade", + "message": "Grade", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Assignment.fields.hod", + "message": "If Hod", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Assignment.fields.position", + "message": "Position", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Assignment.fields.primary", + "message": "Is Primary", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Assignment.fields.toDate", + "message": "To Date", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Assignment.title", + "message": "ASSIGNMENT DETAILS", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.DepartmentalTest.fields.test", + "message": "Test", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.DepartmentalTest.title", + "message": "Departmental Test Details", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.EducationalQualification.fields.documents", + "message": "Doc Documents", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.EducationalQualification.fields.majorSubject", + "message": "Major Subject", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.EducationalQualification.fields.qualification", + "message": "Qualification", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.EducationalQualification.fields.university", + "message": "University/Board", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.EducationalQualification.title", + "message": "Educational Qualification", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Employee.fields.EmployeePhoto", + "message": "Employee Photo", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Employee.fields.EmployeeSignature", + "message": "Employee Signature", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Employee.fields.OtherAttachments", + "message": "Other Attachment", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Employee.fields.User.aadhaarNumber", + "message": "Aadhaar Number", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Employee.fields.User.birth", + "message": "Native/Birth Place", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Employee.fields.User.bloodGroup", + "message": "Blood Group", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Employee.fields.User.gender", + "message": "Gender", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Employee.fields.User.mobileNumber", + "message": "Phone Number", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Employee.fields.User.name", + "message": "Employee Name", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Employee.fields.User.userName", + "message": "User Name", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Employee.fields.bank", + "message": "Bank", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Employee.fields.bankAccount", + "message": "Account Number", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Employee.fields.bankBranch", + "message": "Bank Branch", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Employee.fields.category", + "message": "Category", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Employee.fields.city", + "message": "City", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Employee.fields.code", + "message": "Code", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Employee.fields.community", + "message": "Community", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Employee.fields.correspondenceAddress", + "message": "Correspondence Address", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Employee.fields.correspondencePinNumber", + "message": "Correspondence Pin Number", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Employee.fields.dateOfAppointment", + "message": "Date of Appointment", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Employee.fields.dateOfBirth", + "message": "Date of Birth", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Employee.fields.dateOfJoining", + "message": "Date of Joining/Deputation", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Employee.fields.dateOfResignation", + "message": "Date of Resignation", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Employee.fields.dateOfRetirement", + "message": "Date of Retirement", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Employee.fields.dateOfTermination", + "message": "Date of Termination", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Employee.fields.email", + "message": "Email Id", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Employee.fields.employeeStatus", + "message": "Employee Status", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Employee.fields.employeeType", + "message": "Employee Type", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Employee.fields.fatherSpouseName", + "message": "Father's/Spouse Name", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Employee.fields.gpfNo", + "message": "Gpf No/CPS Number", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Employee.fields.group", + "message": "Employee Group", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Employee.fields.identification", + "message": "Identification Mark", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Employee.fields.languagesKnown", + "message": "Languages Known", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Employee.fields.maritalStatus", + "message": "Marital Status", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Employee.fields.medicalReportProduced", + "message": "Medical Report Produced?", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Employee.fields.motherTongue", + "message": "Mother Tongue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Employee.fields.pan", + "message": "PAN", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Employee.fields.parmanentPinNumber", + "message": "Permanent Pin Number", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Employee.fields.passportNo", + "message": "Passport No", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Employee.fields.permanentAddress", + "message": "Permanent Address", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Employee.fields.physicallyDisabled", + "message": "Is Physically Disabled?", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Employee.fields.recruitmentMode", + "message": "Recruitment Mode", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Employee.fields.recruitmentQuota", + "message": "Recruitment Quota", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Employee.fields.recruitmentType", + "message": "Recruitment Type/Service Type", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Employee.fields.religion", + "message": "Religion", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Employee.fields.retirementAge", + "message": "Retirement Age", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Employee.title", + "message": "EMPLOYEE DETAILS", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Jurisdictions.title", + "message": "JURISDICTION LIST", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Probation.fields.declaredOn", + "message": "Declared On", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Probation.fields.documents", + "message": "Documents", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Probation.fields.orderDate", + "message": "Order Date", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Probation.fields.orderNo", + "message": "Order No", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Probation.fields.remarks", + "message": "Remarks", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Probation.title", + "message": "Probation", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Regularisation.fields.declaredOn", + "message": "Declared On Date", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.Regularisation.title", + "message": "Regularisation", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.ServiceHistory.fields.ServiceEntryDescription", + "message": "Service Entry Description", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.ServiceHistory.fields.date", + "message": "Date", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.ServiceHistory.fields.documents", + "message": "Documents", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.ServiceHistory.fields.orderNo", + "message": "Order No", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.ServiceHistory.fields.remarks", + "message": "Remarks/Comments", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.ServiceHistory.title", + "message": "Service History", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.TechnicalQualification.fields.grade", + "message": "Grade", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.TechnicalQualification.fields.remarks", + "message": "Remarks", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.TechnicalQualification.fields.skill", + "message": "Skills", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.TechnicalQualification.fields.yearOfPassing", + "message": "Year Of Completion", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.TechnicalQualification.title", + "message": "Technical Qualification", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.createPosition.groups.fields.outsourcepost.value1", + "message": "Yes", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.createPosition.groups.fields.outsourcepost.value2", + "message": "No", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.fields.isUserActive", + "message": "Is User Active?", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.jurisdiction.fields.boundary", + "message": "Boundary", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.jurisdiction.fields.boundaryType", + "message": "Boundary Type", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.other.title", + "message": "OTHER DETAILS", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "employee.service.title", + "message": "SERVICE SECTION", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.ANIMALS", + "message": "Animals", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.BADSTREETLIGHT", + "message": "Bad Streetlight", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.BADSUPPLY", + "message": "Bad Supply", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.BADTRAFFICLIGHT", + "message": "Bad Traffic Light", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.BINNOTEMPTY", + "message": "Bin Not Empty", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.BINS", + "message": "Bins", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.BLOCK/OVERFLOWINGSEWAGE", + "message": "Block / Overflowing sewage", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.BLOCKED", + "message": "Blocked", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.BLOCKEDDRAIN", + "message": "Blocked Drain", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.BLOCKOROVERFLOWINGSEWAGE", + "message": "Block/Overflowing sewage", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.BLOCKOVERFLOWINGSEWAGE", + "message": "Block/Overflowing sewage", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.BOUNDARYSTRUCTUREIDENTITY", + "message": "Boundary, Structure & Identity", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.BROKEN", + "message": "Broken", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.BROKENBIN", + "message": "Broken Bin", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.BROKENGARBAGEBIN", + "message": "Broken Garbage Bin", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.BROKENGUARD", + "message": "Broken Guard", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.BROKENHANDPUMP", + "message": "Broken Handpump", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.BROKENORDAMAGEDPIPE", + "message": "Broken Or Damaged Pipe", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.BROKENORLEAKINGSEWAGEPIPE", + "message": "Borken or Leaking Sewage pipe", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.BROKENPIPEORTAP", + "message": "Broken Pipe Or Tap", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.BROKENWATERPIPEORLEAKAGE", + "message": "Broken water pipe / Leakage", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.BROKENWATERPIPEORTAP", + "message": "Broken Water Pipe or Tap", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.BURNING", + "message": "Burning", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.BURNINGOFGARBAGE", + "message": "Burning of garbage", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.BlockOrOverflowingSewage", + "message": "Block/Overflowing sewage", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.BoundaryStructureIdentity", + "message": "Boundary, Structure & Identity", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.BrokenWaterPipeOrLeakage", + "message": "Broken water pipe / Leakage", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.BurningOfGarbage", + "message": "Burning of garbage", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.COMPENSATION", + "message": "Compensation(Redevelopment & Damaged Property)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.CONSTRUCTIONMATERIALLYINGONTHEROAD", + "message": "Construction material lying on the road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.CUSTOMS", + "message": "Customs Duty", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.CUSTOMSDUTY", + "message": "Customs Duty", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.CUTTINGORTRIMMINGOFTREEREQUIRED", + "message": "Cutting/trimming of tree required", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.Compensation", + "message": "Compensation(Redevelopment & Damaged Property)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.ConstructionMaterialLyingOntheRoad", + "message": "Construction material lying on the road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.CustomsDuty", + "message": "Customs Duty", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.CuttingOrTrimmingOfTreeRequired", + "message": "Cutting/trimming of tree required", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.DAMAGED", + "message": "Damaged", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.DAMAGED/BLOCKEDFOOTPATH", + "message": "Damaged/blocked footpath", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.DAMAGEDBLOCKEDFOOTPATH", + "message": "Damaged/blocked footpath", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.DAMAGEDDRAIN", + "message": "Damaged Drain", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.DAMAGEDFOOTPATH", + "message": "Damaged Footpath", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.DAMAGEDGARBAGEBIN", + "message": "Damaged garbage bin", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.DAMAGEDORBLOCKEDFOOTPATH", + "message": "Damaged/blocked footpath", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.DAMAGEDROAD", + "message": "Damaged road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.DAMAGEDSTREETLIGHT", + "message": "Damaged Streetlights", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.DEADANIMALS", + "message": "Dead animals", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.DEADBODY", + "message": "Dead Body", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.DEBRISORSILT", + "message": "Debris Or Silt", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.DIRTYORSMELLY", + "message": "Dirty Or Smelly", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.DIRTYORSMELLYPUBLICTOILETS", + "message": "Dirty/smelly public toilet", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.DIRTYWATERSUPPLY", + "message": "Dirty water supply", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.DISPLACEMENT", + "message": "Displacement (Insecurity)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.DRAINS", + "message": "Drains", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.DUMPING", + "message": "Dumping", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.DamagedGarbageBin", + "message": "Damaged garbage bin", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.DamagedOrBlockedFootpath", + "message": "Damaged/blocked footpath", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.DamagedRoad", + "message": "Damaged road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.DeadAnimals", + "message": "Dead animals", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.DirtyOrSmellyPublicToilets", + "message": "Dirty/smelly public toilet", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.DirtyWaterSupply", + "message": "Dirty water supply", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.Displacement", + "message": "Displacement (Insecurity)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.EMPLOYEEABSENT", + "message": "Employee Absent", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.ENCROACHMENT", + "message": "Encroachment", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.ENCROACHMENTONPUBLICPROPERTY", + "message": "Enroachment on Public Property", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.FINANCE", + "message": "Tax Rate", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.FOOTPATHS", + "message": "Footpaths", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.GARBAGE", + "message": "Garbage", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.GARBAGEBINNOTEMPTY", + "message": "Garbage Bin not empty", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.GARBAGEBINNOTTHERE", + "message": "Garbage Bin not there", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.GARBAGENEEDSTOBECLEANED", + "message": "Garbage needs to be cleaned", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.GARBAGENEEDSTOBECLEARED", + "message": "Garbage needs to be cleared", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.GOODGOVERNANCE", + "message": "Good Governance", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.GOVERNANCE", + "message": "Good Governance", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.GarbageNeedsTobeCleared", + "message": "Garbage needs to be cleared", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.GoodGovernance", + "message": "Good Governance", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.HOUSEDEBATE", + "message": "House Debate (Kebele House & Proclamation 47/67)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.HOUSING", + "message": "House Debate (Kebele House & Proclamation 47/67)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.HouseDebate", + "message": "House Debate (Kebele House & Proclamation 47/67)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.ILLEGALCONSTRUCTION", + "message": "Illegal Construction", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.ILLEGALCONSTRUCTIONS", + "message": "Illegal constructions", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.ILLEGALCUTTING", + "message": "Illegal Cutting", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.ILLEGALCUTTINGOFTREES", + "message": "Illegal Cutting of trees", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.ILLEGALDISCHARGE", + "message": "Illegal discharge of sewage", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.ILLEGALDISCHARGEOFSEWAGE", + "message": "Ilegal Discharge of Sewage", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.ILLEGALFOOTPATHSHOP", + "message": "Illegal Footpath Shop", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.ILLEGALHOARDING", + "message": "Illegal Hoarding", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.ILLEGALPARKING", + "message": "Illegal parking", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.ILLEGALSHOPS", + "message": "Illegal Shops", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.ILLEGALSHOPSONFOOTPATH", + "message": "Illegal shops on footpath", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.ILLEGALSHOPSONTHEFOOTPATH", + "message": "Illegal Shops on the Footpath", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.INFRASTRUCTURE", + "message": "Boundary, Structure & Identity", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.IllegalConstructions", + "message": "Illegal constructions", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.IllegalCuttingOfTrees", + "message": "Illegal Cutting of trees", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.IllegalParking", + "message": "Illegal parking", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.IllegalShopsOnFootPath", + "message": "Illegal shops on footpath", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.JUSTICE", + "message": "Justice", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.Justice", + "message": "Justice", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.LABOR", + "message": "Labor Dispute", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.LABORDISPUTE", + "message": "Labor Dispute", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.LANDVIOLATION", + "message": "Land Violation", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.LANDVIOLATIONS", + "message": "Land Violations", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.LEGAL", + "message": "Justice", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.LIGHTS", + "message": "Lights", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.LaborDispute", + "message": "Labor Dispute", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.MANHOLECOVERMISSINGORDAMAGED", + "message": "Manhole cover is missing/damaged", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.MANHOLEISSUE", + "message": "Manhole Issue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.MISUSE", + "message": "Misuse", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.MOSQUITOES", + "message": "Mosquitoes", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.MOSQUITOS", + "message": "Mosquitoes", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.ManholeCoverMissingOrDamaged", + "message": "Manhole cover is missing/damaged", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.NONSWEEPINGOFROAD", + "message": "Non sweeping of road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.NOSTREETLIGHT", + "message": "No streetlight", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.NOTFUNCTIONAL", + "message": "Not Functional", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.NOTWATERSUPPLY", + "message": "Not Water Supply", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.NOWATERORELECTRICITY", + "message": "No Water Or Electricity", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.NOWATERORELECTRICITYINPUBLICTOILET", + "message": "No water/electricity in public toilet", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.NOWATERSUPPLY", + "message": "No Water Supply", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.NoStreetlight", + "message": "No streetlight", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.NoWaterOrElectricityinPublicToilet", + "message": "No water/electricity in public toilet", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.NoWaterSupply", + "message": "No Water Supply", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.NonSweepingOfRoad", + "message": "Non Sweeping Of Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.OPENDEFACATION", + "message": "Open Defecation", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.OPENDEFECATION", + "message": "Open Defecation", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.OPENLAND", + "message": "Open Land", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.OTHERS", + "message": "Others", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.OVERFLOWING", + "message": "Overflowing", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.OVERFLOWING/BLOCKEDDRAIN", + "message": "Overflowing/Blocked drain", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.OVERFLOWINGBLOCKEDDRAIN", + "message": "Overflowing/Blocked drain", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.OVERFLOWINGDRAIN", + "message": "Owerflowing Drain", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.OVERFLOWINGORBLOCKEDDRAIN", + "message": "Overflowing/Blocked drain", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.OVERFLOWINGSEWAGE", + "message": "Overflowing Sewage", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.OpenDefecation", + "message": "Open Defecation", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.Others", + "message": "Others", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.OverflowingOrBlockedDrain", + "message": "Overflowing/Blocked drain", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.PARKREQUIRESMAINTENANCE", + "message": "Park requires maintenance", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.PARKS", + "message": "Parks", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.PENSIONS", + "message": "Retirement", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.POLEORLIGHTDAMAGE", + "message": "Pole Or Light Damage", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.POORSWEEPING", + "message": "Poor Sweeping", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.POSSESSIONDISPUTE", + "message": "Possession Dispute", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.POTHOLES", + "message": "Potholes", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.POTHOLESONTHEROAD", + "message": "Potholes on the Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.PROPERTY", + "message": "Possession Dispute", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.PROPOSAL", + "message": "Proposal", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.PROPOSALS", + "message": "Proposal", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.PUBLICTOILETISDAMAGED", + "message": "Public toilet damaged", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.PUBLICTOILETISNOTWORKINGPROPERLY", + "message": "Public Toilet is not working properly", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.PUBLICTOILETS", + "message": "Public Toilets", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.ParkRequiresMaintenance", + "message": "Park requires maintenance", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.Parks", + "message": "Park requires maintenance", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.PossessionDispute", + "message": "Possession Dispute", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.Proposal", + "message": "Proposal", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.PublicToiletIsDamaged", + "message": "Public toilet damaged", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.REMOVEGARBAGEORWATER", + "message": "Remove Garbage Or Water", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.REPLACE/PROVIDEGARBAGEBIN", + "message": "Replace/provide garbage bin", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.REPLACEORPROVIDEGARBAGEBIN", + "message": "Replace/provide garbage bin", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.REPLACEPROVIDEGARBAGEBIN", + "message": "Replace/provide garbage bin", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.REQUESTNEW", + "message": "Request New", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.REQUESTSMOKEOP", + "message": "Request Smoke Op", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.REQUESTSPRAYINGORFOGGINGOPERATION", + "message": "Request spraying/ fogging operations", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.REQUESTSPRAYOP", + "message": "Request Spray Op", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.REQUESTTANKER", + "message": "Request Tanker", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.REQUESTTRIMMING", + "message": "Request Trimming", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.RETIREMENT", + "message": "Retirement", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.ROADORFOOTPATH", + "message": "Road Or Footpath", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.ROADS", + "message": "Roads", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.ROADSANDFOOTPATHS", + "message": "Roads & footpaths", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.ROADSCODEE", + "message": "Roads codee", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.ReplaceOrProvideGarbageBin", + "message": "Replace or provide garbage bin ", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.RequestSprayingOrFoggingOperation", + "message": "Request spraying/ fogging operations", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.Retirement", + "message": "Retirement", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.SERVICE", + "message": "Service", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.SERVICENAME.FEVERS_DENGUE_MALARIA", + "message": "Fevers - Dengue", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.SERVICENAME.NON_RECEIPT_OF_PENSIONS_DISABLED_ELDERLY_ETC", + "message": "Non-Receipt of Pensions - Disabled", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.SERVICENAME.REPAIRS_TO_FLYOVERS_BRIDGES_CULVERTS", + "message": "Repairs to Flyovers", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.SERVICENAME.UNHYGIENIC_IMPROPER_TRANSFER_OF_MEAT_LIVESTOCK", + "message": "Unhygienic", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.SEWAGE", + "message": "Sewage", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.SEWAGEEFFLUENTS", + "message": "Sewage Effluents", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.SHORTAGEOFWATER", + "message": "Shortage of water", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.SHORTSUPPLY", + "message": "Short Supply", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.SLOWPROGRESS", + "message": "Slow Progress", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.STAGNANTWATER", + "message": "Stagnant Water", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.STORMWATERDRAIN", + "message": "Storm Water Drain", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.STRAYANIMALS", + "message": "Stray animals", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.STRAYCATTLE", + "message": "Stray Cattle", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.STRAYDOGS", + "message": "Stray Dogs", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.STRAYPIGS", + "message": "Stray Pigs", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.STREETLIGHTNOTWORKING", + "message": "Streetlight not working", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.STREETLIGHTS", + "message": "Streetlights", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.SUGGESTION", + "message": "Suggestion", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.SUGGESTIONS", + "message": "Suggestion", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.SUPPORT", + "message": "Support / Help", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.SUPPORTHELP", + "message": "Support / Help", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.ShortageOfWater", + "message": "Shortage of water", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.StrayAnimals", + "message": "Stray animals", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.StreetLightNotWorking", + "message": "Streetlight not working", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.Suggestion", + "message": "Suggestion", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.SupportHelp", + "message": "Support / Help", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.TAXRATE", + "message": "Tax Rate", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.TOILETS", + "message": "Toilets", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.TREES", + "message": "Trees", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.TRUCKSPILLAGE", + "message": "Truck Spillage", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.TaxRate", + "message": "Tax Rate", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.VACANTLAND", + "message": "Vacant Land", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.WATER", + "message": "Water", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.WATERANDSEWAGE", + "message": "Water & Sewage", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.WATERBODY", + "message": "Water Body", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.WATERLOGGED", + "message": "Water Logged", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.WATERLOGGEDROAD", + "message": "Water logged road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.WATERPRESSUREISVERYLESS", + "message": "Water pressure is very less", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.WaterLoggedRoad", + "message": "Water logged road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.WaterPressureisVeryLess", + "message": "Water pressure is very less", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.complaint.category.illegalDischargeOfSewage", + "message": "Ilegal Discharge of Sewage", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.sms.notification.assign", + "message": "Your complaint for {complaint_type} has been assigned to {emp_name}, {emp_designation}, {emp_department}\n\nEGOVS", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.sms.notification.assign.citizen", + "message": "Dear Citizen, Your complaint for with ID submitted on has been assigned to , , . You can track your complaint status and connect with our officials on the on the web portal.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.sms.notification.assign.employee", + "message": "Shri , Complaint for '' with ID has been assigned to you. Please take appropriate action. - ", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.sms.notification.close.employee", + "message": "Shri , Complaint for with ID has received /5 feedback from the citizen. Thank you for your service.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.sms.notification.comment", + "message": " has commented on your complaint for with complaint ID . Comment - .", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.sms.notification.comment.default", + "message": "You have received a comment on your complaint. You can track your complaint status on the mSeva app or your local government web portal.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.sms.notification.default", + "message": "Your complaint has been . You can track your complaint status on the mSeva app or your local government web portal", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.sms.notification.reassign", + "message": "Your complaint for {complaint_type} has been re-assigned to {emp_name}, {emp_designation}, {emp_department}.\n\nEGOVS", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.sms.notification.reassign.citizen", + "message": "Dear Citizen, Your complaint for with ID submitted on has been re-assigned to , , . You can track your complaint status and connect with our officials on the on the web portal.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.sms.notification.reassign.employee", + "message": "Shri , Complaint for '' with ID has been re-assigned as per your request. - ", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.sms.notification.reject", + "message": "Your complaint for {complaint_type} has been rejected on {date}. Reason for Rejection: {reason} Additional Comments: {additional_comments}.\n\nEGOVS", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.sms.notification.reject.citizen", + "message": "Dear Citizen, Your complaint for with ID submitted on has been rejected. Reason for Rejection: , Additional Comments: If you wish to re-open the complaint, you can visit the web portal.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.sms.notification.reopen", + "message": "Your complaint for {complaint_type} has been re-opened on {date}.\n\nEGOVS", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.sms.notification.reopen.citizen", + "message": "Dear Citizen, Your complaint for with ID submitted on has been RE-OPEN as per your request. You can track your complaint status and connect with our officials on the web portal.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.sms.notification.reopen.employee", + "message": "Shri , Complaint for with ID has been re-opened by the citizen. It is being reviewed by Assigning officer - .", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.sms.notification.resolve", + "message": "Your complaint for {complaint_type} has been resolved on {date}. Please give us your feedback on the mSeva app, your local government web portal or at this link {app_link}.\n\nEGOVS", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.sms.notification.resolve.citizen", + "message": "Dear Citizen, Your complaint for with ID submitted on has been resolved by . If you are not satisfied with service you can RE-OPEN complaint through web portal or by calling our CSR.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.sms.notification.submit", + "message": "Your complaint for {complaint_type} has been submitted with ID {id} on {date}. You can track your complaint status on the mSeva app or your local government web portal.\n\nEGOVS", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "pgr.sms.notification.submit.citizen", + "message": "Dear Citizen, Your complaint for has been submitted with ID on . You can track your complaint status on the web portal.", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.common.action", + "message": "Action", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.pgr.address", + "message": "Citizen detailed Address", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.pgr.assigned", + "message": "Complaint Assigned", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.pgr.complaintId", + "message": "Complaint ID", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.pgr.complaintid", + "message": "Complaint ID", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.pgr.complainttype", + "message": "Complaint Type", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.pgr.dateofassignment", + "message": "Date of Assignment", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.pgr.dateofcomplaint", + "message": "Date of Complaint", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.pgr.department", + "message": "Department", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.pgr.description", + "message": "Additional Complaint Details", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.pgr.designation", + "message": "Designation", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.pgr.employee", + "message": "Employee Name", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.pgr.landmark", + "message": "Landmark", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.pgr.lastassignedto", + "message": "Complaint last assigned to", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.pgr.name", + "message": "Citizen Name", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.pgr.open", + "message": "No of open complaints", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.pgr.opencomplaintsoutsidesla", + "message": "Open Complaints outside SLA", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.pgr.opencomplaintswithinsla", + "message": "Open Complaints within SLA", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.pgr.phone", + "message": "Citizen Mobile Number", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.pgr.rating", + "message": "Rating", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.pgr.received", + "message": "Complaint Received", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.pgr.reopen", + "message": "No of complaints re-opened", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.pgr.resolvedoutsidesla", + "message": "Complaint Resolved outside SLA", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.pgr.resolvedwithinsla", + "message": "Complaint Resolved within SLA", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.pgr.slahours", + "message": "SLA", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.pgr.tenantid", + "message": "ULB Name", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.pgr.ward", + "message": "Complaint Ward/Block", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.pt.amount", + "message": "Amount", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.pt.assessmentAmount", + "message": "Assessment amount", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.pt.assessmentNo", + "message": "Assessment No", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.pt.assessments", + "message": "Assessments", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.pt.bankName", + "message": "Bank Name", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.pt.cancerCess", + "message": "Cancer Cess", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.pt.collectedAmount", + "message": "Collected amount", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.pt.day", + "message": "Date", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.pt.ddChequeTransactionNo", + "message": "DD/Cheque Transanction Number", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.pt.documentType", + "message": "Document Type", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.pt.documentUid", + "message": "Document ID", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.pt.exemptionAmount", + "message": "Exemption amount", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.pt.exemptionGiven", + "message": "Exemption given", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.pt.exemptionRate", + "message": "Exemption rate", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.pt.financialYear", + "message": "Financial Year", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.pt.fireCess", + "message": "Fire Cess", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.pt.fireCessCollected", + "message": "Fire cess collected", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.pt.fromDate", + "message": "From Date", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.pt.interestCollected", + "message": "Interest collected", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.pt.month", + "message": "Month", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.pt.name", + "message": "Employee name", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.pt.ownerType", + "message": "Owner type", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.pt.paymentDues", + "message": "Payment dues", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.pt.paymentMode", + "message": "Payment Mode", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.pt.penaltiesCollected", + "message": "Penalties collected", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.pt.propertyTax", + "message": "Property Tax", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.pt.ptCollected", + "message": "PT collected", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.pt.reason", + "message": "Reason", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.pt.rebateGiven", + "message": "Rebate given", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.pt.receiptDate", + "message": "Receipt Date", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.pt.receiptNo", + "message": "Receipt Number", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.pt.subUsageType", + "message": "Sub-usage type", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.pt.toDate", + "message": "To Date", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.pt.totalAssessmentAmount", + "message": "Total assessment amount", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.pt.totalAssessments", + "message": "Total no. of assessments", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.pt.totalCollectedAmount", + "message": "Total collected amount", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.pt.totalamountdue", + "message": "Total Amount Due", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.pt.totalamountpaid", + "message": "Total Amount Paid", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.pt.totalassessments", + "message": "Total Assessments", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.pt.ulb", + "message": "ULB Name", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.pt.ulbName", + "message": "ULB Name", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.rainmaker-pgr.Complaints Received", + "message": "Complaints Received", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.rainmaker-pgr.Source", + "message": "Source", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.rainmaker-pgr.address", + "message": "Address", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.rainmaker-pgr.ao name", + "message": "Assigning Officer Name", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.rainmaker-pgr.assigned", + "message": "Assigned", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.rainmaker-pgr.avg citizen rating", + "message": "Citizen’s Avg. Rating", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.rainmaker-pgr.complaint type", + "message": "Complaint Type", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.rainmaker-pgr.complaintNo", + "message": "Complaint No", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.rainmaker-pgr.complaints assigned", + "message": "Complaints Assigned", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.rainmaker-pgr.complaints rejected", + "message": "Complaints Rejected", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.rainmaker-pgr.complaints unassigned", + "message": "Complaints Unassigned", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.rainmaker-pgr.complainttype", + "message": "Complaint Type", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.rainmaker-pgr.date", + "message": "Date", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.rainmaker-pgr.datefrom", + "message": "From Date", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.rainmaker-pgr.dateto", + "message": "To Date", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.rainmaker-pgr.department", + "message": "Department", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.rainmaker-pgr.department name", + "message": "Department Name", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.rainmaker-pgr.description", + "message": "Complaint details", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.rainmaker-pgr.employee", + "message": "Employee Name", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.rainmaker-pgr.employee name", + "message": "Employee Name", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.rainmaker-pgr.landmark", + "message": "Additional address", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.rainmaker-pgr.lastassignedto", + "message": "Last Assigned To", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.rainmaker-pgr.locality", + "message": "Locality", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.rainmaker-pgr.name", + "message": "Citizen name", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.rainmaker-pgr.open", + "message": "Open", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.rainmaker-pgr.outside sla", + "message": "Total Complaints Outside SLA", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.rainmaker-pgr.outsidesla", + "message": "Open/Assigned outside SLA", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.rainmaker-pgr.phone", + "message": "Citizen contact", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.rainmaker-pgr.rejected", + "message": "Rejected", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.rainmaker-pgr.resolved", + "message": "Resolved", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.rainmaker-pgr.resolvedoutsidesla", + "message": "Resolved outside SLA", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.rainmaker-pgr.servicecode", + "message": "Type", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.rainmaker-pgr.slahours", + "message": "SLA", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.rainmaker-pgr.source.ivr", + "message": "CSR", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.rainmaker-pgr.source.mobileapp", + "message": "Mobile", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.rainmaker-pgr.source.unknown", + "message": "Unknown", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.rainmaker-pgr.source.web", + "message": "Web", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.rainmaker-pgr.status", + "message": "Status", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.rainmaker-pgr.status.assigned", + "message": "Assigned Complaints", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.rainmaker-pgr.status.closed", + "message": "Closed Complaints", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.rainmaker-pgr.status.open", + "message": "Open Complaints", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.rainmaker-pgr.status.reassignrequested", + "message": "Reassign Requested Complaints", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.rainmaker-pgr.status.rejected", + "message": "Rejected Complaints", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.rainmaker-pgr.tenantId", + "message": "tenantId", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.rainmaker-pgr.tenantid", + "message": "ULB Name", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.rainmaker-pgr.total", + "message": "Total Complaints", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.rainmaker-pgr.total closed complaints", + "message": "Total Closed Complaints", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.rainmaker-pgr.total complaints", + "message": "Total Complaints", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.rainmaker-pgr.total complaints received", + "message": "Total Complaints Received", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.rainmaker-pgr.total open complaints", + "message": "Total Open Complaints", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "reports.rainmaker-pgr.within sla", + "message": "Within SLA", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "revenue.locality.SU166", + "message": "Mohalla Majoran", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "revenue.locality.SUN02", + "message": "Aggarsain Chowk to Mal Godown - Both Sides", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "revenue.locality.SUN04", + "message": "Ajit Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "revenue.locality.SUN08", + "message": "ATAR SINGH COLONY", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "revenue.locality.SUN105", + "message": "Jaura Khoo to Saraffa Bazaar (Southern Side)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "revenue.locality.SUN109", + "message": "Kailash Parbat", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "revenue.locality.SUN11", + "message": "Back Side 33 KVA Grid Patiala Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "revenue.locality.SUN12", + "message": "Back Side 66 KVA Grid Patiala Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "revenue.locality.SUN13", + "message": "Back Side Civil Courts Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "revenue.locality.SUN132", + "message": "Mohalla Akalgarh Gurudwara", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "revenue.locality.SUN134", + "message": "Mohalla Bhadra Kali Mandir", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "revenue.locality.SUN136", + "message": "Mohalla Bhatta Wala", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "revenue.locality.SUN137", + "message": "Mohalla Bhawdeyan Wala", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "revenue.locality.SUN138", + "message": "Mohalla Bhojeka (both sides)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "revenue.locality.SUN144", + "message": "Mohalla Kohliyan", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "revenue.locality.SUN150", + "message": "Mohalla Rajan Wala (both sides)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "revenue.locality.SUN153", + "message": "Mohalla Singhkiyan (Nothern Side)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "revenue.locality.SUN158", + "message": "Mohalla-Kashayian wala", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "revenue.locality.SUN161", + "message": "Mohalla-Singhkiya wala", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "revenue.locality.SUN167", + "message": "Mohalla Angaria wala", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "revenue.locality.SUN169", + "message": "Mohalla Banda Patti", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "revenue.locality.SUN170", + "message": "Mohalla Bhai Ka", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "revenue.locality.SUN173", + "message": "Mohalla Ganj Sheeda", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "revenue.locality.SUN176", + "message": "Mohalla Kango", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "revenue.locality.SUN178", + "message": "Mohalla Singh kia", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "revenue.locality.SUN18", + "message": "Back Side Naina Devi Mandir", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "revenue.locality.SUN194", + "message": "NEAR GURUDWARA PEHALI PATSHAHI UDAM SINGH ROAD", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "revenue.locality.SUN20", + "message": "Backside Brijbala Hospital", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "revenue.locality.SUN23", + "message": "BACKSIDE OLD GRAIN MARKET", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "revenue.locality.SUN25", + "message": "Bakhtaur Nagar", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "revenue.locality.SUN31", + "message": "Bhai Mool Chand Sahib Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "revenue.locality.SUN35", + "message": "Bigharwal Chowk to Railway Station", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "revenue.locality.SUN40", + "message": "Chandar Colony Biggarwal Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "revenue.locality.SUN41", + "message": "Charjan Wala Mohalla", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "revenue.locality.SUN45", + "message": "Cinema Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "revenue.locality.SUN46", + "message": "Cinema Road to Ali Bazaar (Nothern Side)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "revenue.locality.SUN49", + "message": "College Road (Southern side)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "revenue.locality.SUN54", + "message": "Deedar Tailor to Mata Modi Park- West Side", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "revenue.locality.SUN55", + "message": "Deep Rice Mill Road", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "revenue.locality.SUN56", + "message": "Dental College", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "revenue.locality.SUN62", + "message": "Ekta Colony (Southern Side)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "revenue.locality.SUN75", + "message": "Gaushala, Arora Colony", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "revenue.locality.SUN80", + "message": "Gugga Maadi Road (east side)", + "module": "rainmaker-pgr", + "locale": "en_IN" + }, + { + "code": "revenue.locality.SUN84", + "message": "Gurudwara Niai Sahib Street 1", + "module": "rainmaker-pgr", + "locale": "en_IN" + } +] \ No newline at end of file diff --git a/utilities/default-data-handler/src/main/resources/localisations-dev/en_IN/rainmaker-workbench.json b/utilities/default-data-handler/src/main/resources/localisations-dev/en_IN/rainmaker-workbench.json new file mode 100644 index 00000000..3c813df1 --- /dev/null +++ b/utilities/default-data-handler/src/main/resources/localisations-dev/en_IN/rainmaker-workbench.json @@ -0,0 +1,8270 @@ +[ + { + "code": "ACCESSCONTROL_ACTIONS_TEST_ACTIONS_TEST_CODE", + "message": "code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ACTIONS_TEST_ACTIONS_TEST_DISPLAYNAME", + "message": "displayName", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ACTIONS_TEST_ACTIONS_TEST_ENABLED", + "message": "enabled", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ACTIONS_TEST_ACTIONS_TEST_ID", + "message": "id", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ACTIONS_TEST_ACTIONS_TEST_LEFTICON", + "message": "leftIcon", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ACTIONS_TEST_ACTIONS_TEST_NAME", + "message": "name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ACTIONS_TEST_ACTIONS_TEST_NAVIGATIONURL", + "message": "navigationURL", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ACTIONS_TEST_ACTIONS_TEST_ORDERNUMBER", + "message": "orderNumber", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ACTIONS_TEST_ACTIONS_TEST_PARENTMODULE", + "message": "parentModule", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ACTIONS_TEST_ACTIONS_TEST_PATH", + "message": "path", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ACTIONS_TEST_ACTIONS_TEST_RIGHTICON", + "message": "rightIcon", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ACTIONS_TEST_ACTIONS_TEST_SERVICECODE", + "message": "serviceCode", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ACTIONS_TEST_ACTIONS_TEST_URL", + "message": "url", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLEACTIONS_ROLEACTIONS_ACTIONCODE", + "message": "actioncode", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLEACTIONS_ROLEACTIONS_ACTIONID", + "message": "actionid", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLEACTIONS_ROLEACTIONS_ROLECODE", + "message": "rolecode", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLEACTIONS_ROLEACTIONS_TENANTID", + "message": "tenantId", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ACCESSCONTROL_ROLES_ACTIONS", + "message": "actions", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ACCESSCONTROL_ROLES_ALLOWEDSEARCHCRITERIA", + "message": "allowedSearchCriteria", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ACCESSCONTROL_ROLES_ATTRIBUTEACCESSLIST", + "message": "attributeAccessList", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ACCESSCONTROL_ROLES_ATTRIBUTELIST", + "message": "attributeList", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ACCESSCONTROL_ROLES_ATTRIBUTES", + "message": "attributes", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ACCESSCONTROL_ROLES_ROLEATTRIBUTEACCESSLIST", + "message": "roleAttributeAccessList", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ACCESSCONTROL_ROLES_ROLEBASEDDECRYPTIONPOLICY", + "message": "roleBasedDecryptionPolicy", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ACCESSCONTROL_ROLES_ROLES", + "message": "roles", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ACCESSCONTROL_ROLES_SOURCEFILTERPATHLIST", + "message": "sourceFilterPathList", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ACCESSCONTROL_ROLES_STATE", + "message": "state", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ACCESSCONTROL_ROLES_STATES", + "message": "states", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_CODE", + "message": "code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_DESCRIPTION", + "message": "description", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_NAME", + "message": "name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "ACCESSCONTROL_ROLES_ROLES_WORKFLOW_ADMIN", + "message": "Workflow Admin", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_LOCALISATION", + "message": "Localisation", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_MANAGE_DEPARTMENT_MASTER", + "message": "Manange Department Master", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_MANAGE_EMPLOYEETYPE_MASTER", + "message": "Manage Employee Master", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_MDMS", + "message": "Manage Master Data", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_UPLOAD_BOUNDARY", + "message": "Manage Boundary Data", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "ACTION_TEST_WORKBENCH", + "message": "Workbench", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "ADD_NEW_ROW", + "message": "Add Row", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "AN_UNHANDLED_EXCEPTION_OCCURRED_ON_THE_SERVER", + "message": "An unexpected server error occurred, please try again later.", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_BILLGINEIURL", + "message": "Billgineiurl", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_BUSINESSSERVICE", + "message": "Businessservice", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_CODE", + "message": "Code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_COLLECTIONMODESNOTALLOWED", + "message": "Collectionmodesnotallowed", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_DEMANDUPDATETIME", + "message": "Demandupdatetime", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_ISADVANCEALLOWED", + "message": "Isadvanceallowed", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_ISBILLAMENDMENTENABLED", + "message": "Isbillamendmentenabled", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_ISVOUCHERCREATIONENABLED", + "message": "Isvouchercreationenabled", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_MINAMOUNTPAYABLE", + "message": "Minamountpayable", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_BUSINESSSERVICE_PARTPAYMENTALLOWED", + "message": "Partpaymentallowed", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_TAXHEADMASTER_CATEGORY", + "message": "Category", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_TAXHEADMASTER_CODE", + "message": "Code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_TAXHEADMASTER_ISACTUALDEMAND", + "message": "Isactualdemand", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_TAXHEADMASTER_ISDEBIT", + "message": "Isdebit", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_TAXHEADMASTER_ISREQUIRED", + "message": "Isrequired", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_TAXHEADMASTER_NAME", + "message": "Name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_TAXHEADMASTER_ORDER", + "message": "Order", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_TAXHEADMASTER_SERVICE", + "message": "Service", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_TAXPERIOD_CODE", + "message": "Code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_TAXPERIOD_FINANCIALYEAR", + "message": "Financialyear", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_TAXPERIOD_FROMDATE", + "message": "Fromdate", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_TAXPERIOD_PERIODCYCLE", + "message": "Periodcycle", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_TAXPERIOD_SERVICE", + "message": "Service", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "BILLINGSERVICE_TAXPERIOD_TODATE", + "message": "Todate", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "CLEAR_LOC_TABLE", + "message": "Clear", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_CORE_COLLAPSE", + "message": "Collapse", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_CORE_EXPAND", + "message": "Expand", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_BDTEMPLATE_CODE", + "message": "Code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_BDTEMPLATE_TEMPLATE", + "message": "Template", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_CANCELCURRENTBILLREASONS_ACTIVE", + "message": "Active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_CANCELCURRENTBILLREASONS_CODE", + "message": "Code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_CANCELRECEIPTREASON_ACTIVE", + "message": "Active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_CANCELRECEIPTREASON_CODE", + "message": "Code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_CENSUSYEAR_CODE", + "message": "Code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_CENSUSYEAR_NAME", + "message": "Name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_CENSUSYEAR_TENANTID", + "message": "Tenantid", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_CITIZENCONSENTFORM_CHECKBOXLABELS", + "message": "Checkboxlabels", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_CITIZENCONSENTFORM_EN_IN", + "message": "En_in", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_CITIZENCONSENTFORM_ID", + "message": "Id", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_CITIZENCONSENTFORM_ISCITIZENCONSENTFORMENABLED", + "message": "Iscitizenconsentformenabled", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_CITIZENCONSENTFORM_LINK", + "message": "Link", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_CITIZENCONSENTFORM_LINKID", + "message": "Linkid", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_CITIZENCONSENTFORM_LINKPOSTFIX", + "message": "Linkpostfix", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_CITIZENCONSENTFORM_LINKPREFIX", + "message": "Linkprefix", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_COMMONINBOXCONFIG_ACTIVE", + "message": "Active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_COMMONINBOXCONFIG_BUSINESSSERVICE", + "message": "Businessservice", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_COMMONINBOXCONFIG_DEFAULT", + "message": "Default", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_COMMONINBOXCONFIG_INITIATED", + "message": "Initiated", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_COMMONINBOXCONFIG_LOCALITY", + "message": "Locality", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_COMMONINBOXCONFIG_LOCALITYMODULE", + "message": "Localitymodule", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_COMMONINBOXCONFIG_MODULENAME", + "message": "Modulename", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_COMMONINBOXCONFIG_REDIRECTCONFIG", + "message": "Redirectconfig", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_COMMONINBOXCONFIG_ROLES", + "message": "Roles", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_COMMON_MASTERS_ALLOWEDDOCS", + "message": "Alloweddocs", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_COMMON_MASTERS_ALLOWEDFORMAT", + "message": "Allowedformat", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_COMMON_MASTERS_APPLICATIONDOCUMENT", + "message": "Applicationdocument", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_COMMON_MASTERS_APPLICATIONTYPE", + "message": "Applicationtype", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_COMMON_MASTERS_BILLFOOTERCONTENT", + "message": "Billfootercontent", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_COMMON_MASTERS_BODY", + "message": "Body", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_COMMON_MASTERS_BUTTONS", + "message": "Buttons", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_COMMON_MASTERS_CHECKBOXLABELS", + "message": "Checkboxlabels", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_COMMON_MASTERS_COLLECTIONMODESNOTALLOWED", + "message": "Collectionmodesnotallowed", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_COMMON_MASTERS_DOCUMENTLIST", + "message": "Documentlist", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_COMMON_MASTERS_DOCUMENTS", + "message": "Documents", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_COMMON_MASTERS_DROPDOWNDATA", + "message": "Dropdowndata", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_COMMON_MASTERS_LANGUAGES", + "message": "Languages", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_COMMON_MASTERS_LANGUAGESSPOKEN", + "message": "Languagesspoken", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_COMMON_MASTERS_LOCALIZATIONMODULES", + "message": "Localizationmodules", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_COMMON_MASTERS_PINCODE", + "message": "Pincode", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_COMMON_MASTERS_RECEIPTFOOTERCONTENT", + "message": "Receiptfootercontent", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_COMMON_MASTERS_ROLES", + "message": "Roles", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_COMMON_MASTERS_ROWSPERPAGEOPTIONS", + "message": "Rowsperpageoptions", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_COMMON_MASTERS_TENANT", + "message": "Tenant", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_COMMON_MASTERS_TENANTS", + "message": "Tenants", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_COMMON_MASTERS_VERIFICATIONDOCUMENT", + "message": "Verificationdocument", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_CRONJOBAPICONFIG_ACTIVE", + "message": "Active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_CRONJOBAPICONFIG_CONTENT_TYPE", + "message": "Content-type", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_CRONJOBAPICONFIG_HEADER", + "message": "Header", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_CRONJOBAPICONFIG_JOBNAME", + "message": "Jobname", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_CRONJOBAPICONFIG_METHOD", + "message": "Method", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_CRONJOBAPICONFIG_PAYLOAD", + "message": "Payload", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_CRONJOBAPICONFIG_REQUESTINFO", + "message": "Requestinfo", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_CRONJOBAPICONFIG_URL", + "message": "Url", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DEPARTMENT_ACTIVE", + "message": "Active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DEPARTMENT_CODE", + "message": "Code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DEPARTMENT_NAME", + "message": "Name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_ACTIVE", + "message": "Active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_CODE", + "message": "Code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_DESCRIPTION", + "message": "Description", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DESIGNATION_NAME", + "message": "Name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DOCUMENTTYPE_ACTIVE", + "message": "Active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DOCUMENTTYPE_ALLOWEDFORMAT", + "message": "Allowedformat", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DOCUMENTTYPE_CODE", + "message": "Code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_DOCUMENTTYPE_MAXFILESIZE", + "message": "Maxfilesize", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_GENDERTYPE_ACTIVE", + "message": "Active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_GENDERTYPE_CODE", + "message": "Code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_IDFORMAT_FORMAT", + "message": "Format", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_IDFORMAT_IDNAME", + "message": "Idname", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_ACTIVE", + "message": "Active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_CODE", + "message": "Code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERTYPE_ACTIVE", + "message": "Active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_OWNERTYPE_CODE", + "message": "Code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_STATEINFO_BANNERURL", + "message": "Bannerurl", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_STATEINFO_CITIZEN", + "message": "Citizen", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_STATEINFO_CODE", + "message": "Code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_STATEINFO_DEFAULTURL", + "message": "Defaulturl", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_STATEINFO_EMPLOYEE", + "message": "Employee", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_STATEINFO_HASLOCALISATION", + "message": "Haslocalisation", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_STATEINFO_LABEL", + "message": "Label", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_STATEINFO_LANGUAGES", + "message": "Languages", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_STATEINFO_LOCALIZATIONMODULES", + "message": "Localizationmodules", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_STATEINFO_LOGOURL", + "message": "Logourl", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_STATEINFO_LOGOURLWHITE", + "message": "Logourlwhite", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_STATEINFO_NAME", + "message": "Name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_STATEINFO_QRCODEURL", + "message": "Qrcodeurl", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_STATEINFO_STATELOGO", + "message": "Statelogo", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_STATEINFO_VALUE", + "message": "Value", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_STRUCTURETYPE_ACTIVE", + "message": "Active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_STRUCTURETYPE_CODE", + "message": "Code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_TABLEPAGINATIONOPTIONS_DEFAULTVALUE", + "message": "Defaultvalue", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_TABLEPAGINATIONOPTIONS_ID", + "message": "Id", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_TABLEPAGINATIONOPTIONS_ROWSPERPAGEOPTIONS", + "message": "Rowsperpageoptions", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_UICOMMONPAY_ARREARS", + "message": "Arrears", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_UICOMMONPAY_BILLKEY", + "message": "Billkey", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_UICOMMONPAY_BUTTONS", + "message": "Buttons", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_UICOMMONPAY_CANCELBILL", + "message": "Cancelbill", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_UICOMMONPAY_CANCELRECEIPT", + "message": "Cancelreceipt", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_UICOMMONPAY_CITIZENURL", + "message": "Citizenurl", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_UICOMMONPAY_CODE", + "message": "Code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_UICOMMONPAY_EMPLOYEEURL", + "message": "Employeeurl", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_UICOMMONPAY_HEADERBANDLABEL", + "message": "Headerbandlabel", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_UICOMMONPAY_LABEL", + "message": "Label", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_UICOMMONPAY_PDFMODULE", + "message": "Pdfmodule", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_UICOMMONPAY_RECEIPTKEY", + "message": "Receiptkey", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_UOMCATEGORY_CODE", + "message": "Code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_UOMCATEGORY_DESCRIPTION", + "message": "Description", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_UOMCATEGORY_FROMDATE", + "message": "Fromdate", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_UOMCATEGORY_ID", + "message": "Id", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_UOMCATEGORY_NAME", + "message": "Name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_UOMCATEGORY_TENANTID", + "message": "Tenantid", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_UOMCATEGORY_TODATE", + "message": "Todate", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_UOMCATEGORY_UOMCATEGORY", + "message": "Uomcategory", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_UOM_ACTIVE", + "message": "Active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_UOM_CODE", + "message": "Code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_WFSLACONFIG_ID", + "message": "Id", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_WFSLACONFIG_MIDDLESLABCOLOR", + "message": "Middleslabcolor", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_WFSLACONFIG_NEGATIVESLABCOLOR", + "message": "Negativeslabcolor", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_WFSLACONFIG_POSITIVESLABCOLOR", + "message": "Positiveslabcolor", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "COMMON_MASTERS_WFSLACONFIG_SLOTPERCENTAGE", + "message": "Slotpercentage", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "CONSTRAINTVIOLATIONEXCEPTION", + "message": "Message have unsafe html content", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "CORE_COMMON_SAVE", + "message": "Save", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "CS_ACTION_DISABLE_MASTER", + "message": "Disable", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "CS_ACTION_EDIT_MASTER", + "message": "Edit", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "CS_ACTION_ENABLE_MASTER", + "message": "Enable", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "CS_COMMON_ACTION", + "message": "Action", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "DATASECURITY_DECRYPTIONABAC_ACCESSTYPE", + "message": "accessType", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "DATASECURITY_DECRYPTIONABAC_ATTRIBUTE", + "message": "attribute", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "DATASECURITY_DECRYPTIONABAC_ATTRIBUTEACCESSLIST", + "message": "attributeAccessList", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "DATASECURITY_DECRYPTIONABAC_JSONPATH", + "message": "jsonPath", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "DATASECURITY_DECRYPTIONABAC_KEY", + "message": "key", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "DATASECURITY_DECRYPTIONABAC_MASKINGTECHNIQUE", + "message": "maskingTechnique", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "DATASECURITY_DECRYPTIONABAC_ROLEATTRIBUTEACCESSLIST", + "message": "roleAttributeAccessList", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "DATASECURITY_DECRYPTIONABAC_ROLECODE", + "message": "roleCode", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "DATASECURITY_ENCRYPTIONPOLICY_ATTRIBUTELIST", + "message": "attributeList", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "DATASECURITY_ENCRYPTIONPOLICY_JSONPATH", + "message": "jsonPath", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "DATASECURITY_ENCRYPTIONPOLICY_KEY", + "message": "key", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "DATASECURITY_ENCRYPTIONPOLICY_TYPE", + "message": "type", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "DATASECURITY_MASKINGPATTERNS_PATTERN", + "message": "pattern", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "DATASECURITY_MASKINGPATTERNS_PATTERNID", + "message": "patternId", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "DATASECURITY_SECURITYPOLICY_ATTRIBUTE", + "message": "attribute", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "DATASECURITY_SECURITYPOLICY_ATTRIBUTEACCESSLIST", + "message": "attributeAccessList", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "DATASECURITY_SECURITYPOLICY_ATTRIBUTES", + "message": "attributes", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "DATASECURITY_SECURITYPOLICY_DEFAULTVISIBILITY", + "message": "defaultVisibility", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "DATASECURITY_SECURITYPOLICY_FIRSTLEVELVISIBILITY", + "message": "firstLevelVisibility", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "DATASECURITY_SECURITYPOLICY_JSONPATH", + "message": "jsonPath", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "DATASECURITY_SECURITYPOLICY_MODEL", + "message": "model", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "DATASECURITY_SECURITYPOLICY_NAME", + "message": "name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "DATASECURITY_SECURITYPOLICY_PATTERNID", + "message": "patternId", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "DATASECURITY_SECURITYPOLICY_ROLEBASEDDECRYPTIONPOLICY", + "message": "roleBasedDecryptionPolicy", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "DATASECURITY_SECURITYPOLICY_ROLES", + "message": "roles", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "DATASECURITY_SECURITYPOLICY_SECONDLEVELVISIBILITY", + "message": "secondLevelVisibility", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "DATASECURITY_SECURITYPOLICY_UNIQUEIDENTIFIER", + "message": "uniqueIdentifier", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "DUPLICATE_RECORD", + "message": "Duplicate Record", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "EGF_MASTER_FINANCIALYEAR_ACTIVE", + "message": "Active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "EGF_MASTER_FINANCIALYEAR_CODE", + "message": "Code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "EGF_MASTER_FINANCIALYEAR_ENDINGDATE", + "message": "Endingdate", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "EGF_MASTER_FINANCIALYEAR_FINYEARRANGE", + "message": "Finyearrange", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "EGF_MASTER_FINANCIALYEAR_ISACTIVEFORPOSTING", + "message": "Isactiveforposting", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "EGF_MASTER_FINANCIALYEAR_ISCLOSED", + "message": "Isclosed", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "EGF_MASTER_FINANCIALYEAR_MODULE", + "message": "Module", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "EGF_MASTER_FINANCIALYEAR_NAME", + "message": "Name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "EGF_MASTER_FINANCIALYEAR_STARTINGDATE", + "message": "Startingdate", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "EGF_MASTER_FINANCIALYEAR_TENANTID", + "message": "Tenantid", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "EGF_MASTER_FINANCIALYEAR_TRANSFERCLOSINGBALANCE", + "message": "Transferclosingbalance", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "EGOV_HRMS_DEACTIVATIONREASON_ACTIVE", + "message": "active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "EGOV_HRMS_DEACTIVATIONREASON_CODE", + "message": "code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "EGOV_HRMS_DEGREE_ACTIVE", + "message": "active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "EGOV_HRMS_DEGREE_CODE", + "message": "code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "EGOV_HRMS_EMPLOYEESTATUS_ACTIVE", + "message": "active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "EGOV_HRMS_EMPLOYEESTATUS_CODE", + "message": "code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "EGOV_HRMS_EMPLOYEETYPE_ACTIVE", + "message": "active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "EGOV_HRMS_EMPLOYEETYPE_CODE", + "message": "code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "EGOV_HRMS_EMPLOYMENTTEST_ACTIVE", + "message": "active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "EGOV_HRMS_EMPLOYMENTTEST_CODE", + "message": "code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "EGOV_HRMS_SPECALIZATION_ACTIVE", + "message": "active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "EGOV_HRMS_SPECALIZATION_CODE", + "message": "code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_CLEAR_SEARCH", + "message": "Clear Search", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_ENTER_DATE_RANGE", + "message": "Enter date range", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_NA", + "message": "NA", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "ES_COMMON_SEARCH", + "message": "Search", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_ADVANCEPAYMENT_ACTIVE", + "message": "active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_ADVANCEPAYMENT_ADVANCEAMOUNT", + "message": "advanceAmount", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_ADVANCEPAYMENT_ADVANCEPERCENTAGE", + "message": "advancePercentage", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_ADVANCEPAYMENT_CODE", + "message": "code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_ADVANCEPAYMENT_NAME", + "message": "name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_APPLICATIONCHANNEL_ACTIVE", + "message": "active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_APPLICATIONCHANNEL_CITIZENONLY", + "message": "citizenOnly", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_APPLICATIONCHANNEL_CODE", + "message": "code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_APPLICATIONCHANNEL_NAME", + "message": "name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_APPLICATIONTYPE_ACTIVE", + "message": "active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_APPLICATIONTYPE_CODE", + "message": "code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_APPLICATIONTYPE_NAME", + "message": "name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_CANCELLATIONFEE_ACTIVE", + "message": "active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_CANCELLATIONFEE_CANCELLATIONAMOUNT", + "message": "cancellationAmount", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_CANCELLATIONFEE_CODE", + "message": "code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_CANCELLATIONFEE_NAME", + "message": "name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_CANCELREASON_ACTIVE", + "message": "active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_CANCELREASON_CODE", + "message": "code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_CANCELREASON_NAME", + "message": "name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_CHECKLIST_ACTIVE", + "message": "active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_CHECKLIST_CODE", + "message": "code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_CHECKLIST_OPTIONS", + "message": "options", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_CHECKLIST_REQUIRED", + "message": "required", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_CHECKLIST_TYPE", + "message": "type", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_COMMONFIELDSCONFIG_BODY", + "message": "body", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_COMMONFIELDSCONFIG_CARDTEXT", + "message": "cardText", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_COMMONFIELDSCONFIG_COMPONENT", + "message": "component", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_COMMONFIELDSCONFIG_HEAD", + "message": "head", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_COMMONFIELDSCONFIG_HEADER", + "message": "header", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_COMMONFIELDSCONFIG_HEADERCAPTION", + "message": "headerCaption", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_COMMONFIELDSCONFIG_HIDEINEMPLOYEE", + "message": "hideInEmployee", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_COMMONFIELDSCONFIG_ISMANDATORY", + "message": "isMandatory", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_COMMONFIELDSCONFIG_KEY", + "message": "key", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_COMMONFIELDSCONFIG_LABEL", + "message": "label", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_COMMONFIELDSCONFIG_NEXTSTEP", + "message": "nextStep", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_COMMONFIELDSCONFIG_ROUTE", + "message": "route", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_COMMONFIELDSCONFIG_SKIPLABEL", + "message": "skipLabel", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_COMMONFIELDSCONFIG_SKIPTEXT", + "message": "skipText", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_COMMONFIELDSCONFIG_SUBMITBARLABEL", + "message": "submitBarLabel", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_COMMONFIELDSCONFIG_TEXTS", + "message": "texts", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_COMMONFIELDSCONFIG_TYPE", + "message": "type", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_COMMONFIELDSCONFIG_WITHOUTLABEL", + "message": "withoutLabel", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_CONFIG_ACTIVE", + "message": "active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_CONFIG_CODE", + "message": "code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_CONFIG_DEFAULT", + "message": "default", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_CONFIG_OVERRIDE", + "message": "override", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_CONFIG_OVERRIDEFIELD", + "message": "overrideField", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_CONFIG_WFSTATE", + "message": "WFState", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_DECLINEREASON_ACTIVE", + "message": "active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_DECLINEREASON_CODE", + "message": "code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_DECLINEREASON_NAME", + "message": "name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_DOCUMENTCONFIG_ACTIVE", + "message": "active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_DOCUMENTCONFIG_ALLOWEDFILETYPES", + "message": "allowedFileTypes", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_DOCUMENTCONFIG_BANNERLABEL", + "message": "bannerLabel", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_DOCUMENTCONFIG_CODE", + "message": "code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_DOCUMENTCONFIG_DOCUMENTS", + "message": "documents", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_DOCUMENTCONFIG_ISMANDATORY", + "message": "isMandatory", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_DOCUMENTCONFIG_MAXFILESALLOWED", + "message": "maxFilesAllowed", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_DOCUMENTCONFIG_MAXSIZEINMB", + "message": "maxSizeInMB", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_DOCUMENTCONFIG_MODULE", + "message": "module", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_DOCUMENTCONFIG_NAME", + "message": "name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_DOCUMENTCONFIG_SHOWTEXTINPUT", + "message": "showTextInput", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_FSM_ALLOWEDFILETYPES", + "message": "allowedFileTypes", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_FSM_BODY", + "message": "body", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_FSM_DOCUMENTS", + "message": "documents", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_FSM_OPTIONS", + "message": "options", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_FSM_OVERRIDEFIELD", + "message": "overrideField", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_FSTPPLANTINFO_ACTIVE", + "message": "active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_FSTPPLANTINFO_LATITUDE", + "message": "latitude", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_FSTPPLANTINFO_LONGITUDE", + "message": "longitude", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_FSTPPLANTINFO_PLANTCODE", + "message": "PlantCode", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_FSTPPLANTINFO_PLANTLOCATION", + "message": "PlantLocation", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_FSTPPLANTINFO_PLANTNAME", + "message": "PlantName", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_FSTPPLANTINFO_PLANTOPERATIONALCAPACITYKLD", + "message": "PlantOperationalCapacityKLD", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_FSTPPLANTINFO_PLANTOPERATIONALTIMINGS", + "message": "PlantOperationalTimings", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_FSTPPLANTINFO_PLANTTYPE", + "message": "PlantType", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_FSTPPLANTINFO_PLUSCODE", + "message": "PlusCode", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_FSTPPLANTINFO_ULBS", + "message": "ULBS", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_PAYMENTTYPE_ACTIVE", + "message": "active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_PAYMENTTYPE_CODE", + "message": "code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_PAYMENTTYPE_NAME", + "message": "name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_PERIODICSERVICE_ISSCHEDULARCONFIGURATION", + "message": "isSchedularConfiguration", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_PERIODICSERVICE_TIMELIMIT", + "message": "timeLimit", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_PITTYPE_ACTIVE", + "message": "active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_PITTYPE_CODE", + "message": "code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_PITTYPE_DIMENSION", + "message": "dimension", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_PITTYPE_NAME", + "message": "name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_POSTFIELDSCONFIG_BODY", + "message": "body", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_POSTFIELDSCONFIG_COMPONENT", + "message": "component", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_POSTFIELDSCONFIG_HEAD", + "message": "head", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_POSTFIELDSCONFIG_KEY", + "message": "key", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_POSTFIELDSCONFIG_TYPE", + "message": "type", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_POSTFIELDSCONFIG_WITHOUTLABEL", + "message": "withoutLabel", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_PREFIELDSCONFIG_BODY", + "message": "body", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_PREFIELDSCONFIG_COMPONENT", + "message": "component", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_PREFIELDSCONFIG_HEAD", + "message": "head", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_PREFIELDSCONFIG_ISMANDATORY", + "message": "isMandatory", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_PREFIELDSCONFIG_KEY", + "message": "key", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_PREFIELDSCONFIG_LABEL", + "message": "label", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_PREFIELDSCONFIG_NEXTSTEP", + "message": "nextStep", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_PREFIELDSCONFIG_TYPE", + "message": "type", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_PREFIELDSCONFIG_WITHOUTLABEL", + "message": "withoutLabel", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_PROPERTYTYPE_ACTIVE", + "message": "active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_PROPERTYTYPE_CODE", + "message": "code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_PROPERTYTYPE_MAXAMOUNT", + "message": "maxAmount", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_PROPERTYTYPE_MINAMOUNT", + "message": "minAmount", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_PROPERTYTYPE_NAME", + "message": "name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_PROPERTYTYPE_PROPERTYTYPE", + "message": "propertyType", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_REASSIGNREASON_ACTIVE", + "message": "active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_REASSIGNREASON_CODE", + "message": "code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_REASSIGNREASON_NAME", + "message": "name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_RECEIVEDPAYMENTTYPE_ACTIVE", + "message": "active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_RECEIVEDPAYMENTTYPE_CODE", + "message": "code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_RECEIVEDPAYMENTTYPE_NAME", + "message": "name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_REJECTIONREASON_ACTIVE", + "message": "active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_REJECTIONREASON_CODE", + "message": "code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_REJECTIONREASON_NAME", + "message": "name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_SANITATIONTYPE_ACTIVE", + "message": "active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_SANITATIONTYPE_CODE", + "message": "code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_SANITATIONTYPE_NAME", + "message": "name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_SANITATIONWORKEREMPLOYER_ACTIVE", + "message": "active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_SANITATIONWORKEREMPLOYER_CODE", + "message": "code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_SANITATIONWORKEREMPLOYER_ID", + "message": "id", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_SANITATIONWORKEREMPLOYER_NAME", + "message": "name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_SANITATIONWORKEREMPLOYMENTTYPE_ACTIVE", + "message": "active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_SANITATIONWORKEREMPLOYMENTTYPE_CODE", + "message": "code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_SANITATIONWORKEREMPLOYMENTTYPE_ID", + "message": "id", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_SANITATIONWORKEREMPLOYMENTTYPE_NAME", + "message": "name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_SANITATIONWORKERFUNCTIONALROLES_ACTIVE", + "message": "active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_SANITATIONWORKERFUNCTIONALROLES_CODE", + "message": "code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_SANITATIONWORKERFUNCTIONALROLES_ID", + "message": "id", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_SANITATIONWORKERFUNCTIONALROLES_NAME", + "message": "name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_SANITATIONWORKERSKILLS_ACTIVE", + "message": "active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_SANITATIONWORKERSKILLS_CODE", + "message": "code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_SANITATIONWORKERSKILLS_ID", + "message": "id", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_SANITATIONWORKERSKILLS_NAME", + "message": "name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_SLUM_ACTIVE", + "message": "active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_SLUM_CODE", + "message": "code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_SLUM_LOCALITY", + "message": "locality", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_SLUM_NAME", + "message": "name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_TRIPNUMBER_ACTIVE", + "message": "active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_TRIPNUMBER_CODE", + "message": "code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_TRIPNUMBER_I18NKEY", + "message": "i18nKey", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_TRIPNUMBER_NAME", + "message": "name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_URCCONFIG_CODE", + "message": "code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_URCCONFIG_URCENABLE", + "message": "URCEnable", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_URCCONFIG_VILLAGEHIERARCHYAVAILABLE", + "message": "villageHierarchyAvailable", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_VEHICLETRACKING_VEHICLETRACKINGSTATUS", + "message": "vehicleTrackingStatus", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_VEHICLETYPE_ACTIVE", + "message": "active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_VEHICLETYPE_AMOUNT", + "message": "amount", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_VEHICLETYPE_CAPACITY", + "message": "capacity", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_VEHICLETYPE_CODE", + "message": "code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_VEHICLETYPE_MAKE", + "message": "make", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_VEHICLETYPE_NAME", + "message": "name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "FSM_ZEROPRICING_ZEROPRICINGSTATUS", + "message": "zeroPricingStatus", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "INBOX_INBOXQUERYCONFIGURATION_ALLOWEDSEARCHCRITERIA", + "message": "allowedSearchCriteria", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "INBOX_INBOXQUERYCONFIGURATION_DEFAULTORDER", + "message": "defaultOrder", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "INBOX_INBOXQUERYCONFIGURATION_INDEX", + "message": "index", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "INBOX_INBOXQUERYCONFIGURATION_ISHASHINGREQUIRED", + "message": "isHashingRequired", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "INBOX_INBOXQUERYCONFIGURATION_ISMANDATORY", + "message": "isMandatory", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "INBOX_INBOXQUERYCONFIGURATION_MODULE", + "message": "module", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "INBOX_INBOXQUERYCONFIGURATION_NAME", + "message": "name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "INBOX_INBOXQUERYCONFIGURATION_OPERATOR", + "message": "operator", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "INBOX_INBOXQUERYCONFIGURATION_PATH", + "message": "path", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "INBOX_INBOXQUERYCONFIGURATION_SORTBY", + "message": "sortBy", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "INBOX_INBOXQUERYCONFIGURATION_SOURCEFILTERPATHLIST", + "message": "sourceFilterPathList", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "LOCALISATION_ADD", + "message": "Add Localisation", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "LOCALISATION_SEARCH", + "message": "Manage Localisation", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "MANAGE_MASTER_DATA", + "message": "Manage Master data", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "MDMS_ADD_V2", + "message": "Add Master Data", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "MDMS_EDIT", + "message": "Edit Master Data", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "MDMS_SEARCH_V2", + "message": "Search Master Data", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "MDMS_VIEW", + "message": "View Master Data", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "P G R. Service Defs", + "message": "CCRS Service Defs", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_BENCHMARKRULE_CODE", + "message": "code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_BENCHMARKRULE_NAME", + "message": "name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_MATERIAL_CODE", + "message": "code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_MATERIAL_NAME", + "message": "name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_PARAMETER_CODE", + "message": "code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_PARAMETER_DESCRIPTION", + "message": "description", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_PARAMETER_NAME", + "message": "name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_PLANTCONFIG_CODE", + "message": "code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_PLANTCONFIG_MANUALTESTPENDINGESCALATIONDAYS", + "message": "manualTestPendingEscalationDays", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_PLANTCONFIG_PENDINGTESTSTODISPLAYWITHINDAYS", + "message": "pendingTestsToDisplayWithinDays", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_PLANTTYPE_CODE", + "message": "code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_PLANTTYPE_DESCRIPTION", + "message": "description", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_PLANTTYPE_NAME", + "message": "name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_PLANT_ACTIVE", + "message": "active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_PLANT_CODE", + "message": "code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_PLANT_DESCRIPTION", + "message": "description", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_PLANT_LATITUDE", + "message": "latitude", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_PLANT_LONGITUDE", + "message": "longitude", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_PLANT_NAME", + "message": "name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_PLANT_PLANTCONFIG", + "message": "plantConfig", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_PLANT_PLANTLOCATION", + "message": "PlantLocation", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_PLANT_PLANTOPERATIONALCAPACITYKLD", + "message": "PlantOperationalCapacityKLD", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_PLANT_PLANTOPERATIONALTIMINGS", + "message": "PlantOperationalTimings", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_PLANT_PLANTTYPE", + "message": "plantType", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_PLANT_PLUSCODE", + "message": "PlusCode", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_PLANT_PROCESSES", + "message": "processes", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_PLANT_ULBS", + "message": "ULBS", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_PLANT_WASTETYPE", + "message": "wasteType", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_PQM_BENCHMARKVALUES", + "message": "benchmarkValues", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_PQM_INPUT", + "message": "input", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_PQM_OUTPUT", + "message": "output", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_PQM_PROCESSES", + "message": "processes", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_PQM_QUALITYCRITERIA", + "message": "qualityCriteria", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_PQM_STAGES", + "message": "stages", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_PQM_WASTETYPE", + "message": "wasteType", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_PROCESSTYPE_CODE", + "message": "code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_PROCESSTYPE_NAME", + "message": "name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_PROCESS_CODE", + "message": "code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_PROCESS_DESCRIPTION", + "message": "description", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_PROCESS_NAME", + "message": "name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_PROCESS_ORDER", + "message": "order", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_PROCESS_STAGECODE", + "message": "stageCode", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_PROCESS_STAGES", + "message": "stages", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_PROCESS_TYPE", + "message": "type", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_PROCESS_WASTETYPE", + "message": "wasteType", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_QUALITYCRITERIA_ALLOWEDDEVIATION", + "message": "allowedDeviation", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_QUALITYCRITERIA_BENCHMARKRULE", + "message": "benchmarkRule", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_QUALITYCRITERIA_BENCHMARKVALUES", + "message": "benchmarkValues", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_QUALITYCRITERIA_CODE", + "message": "code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_QUALITYCRITERIA_PARAMETER", + "message": "parameter", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_QUALITYCRITERIA_UNIT", + "message": "unit", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_QUALITYTESTLAB_CODE", + "message": "code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_QUALITYTESTLAB_NAME", + "message": "name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_SOURCETYPE_CODE", + "message": "code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_SOURCETYPE_DESCRIPTION", + "message": "description", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_SOURCETYPE_NAME", + "message": "name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_STAGE_CODE", + "message": "code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_STAGE_DESCRIPTION", + "message": "description", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_STAGE_INPUT", + "message": "input", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_STAGE_NAME", + "message": "name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_STAGE_OUTPUT", + "message": "output", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_TESTSTANDARD_CODE", + "message": "code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_TESTSTANDARD_FREQUENCY", + "message": "frequency", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_TESTSTANDARD_MATERIAL", + "message": "material", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_TESTSTANDARD_PLANT", + "message": "plant", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_TESTSTANDARD_PROCESS", + "message": "process", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_TESTSTANDARD_QUALITYCRITERIA", + "message": "qualityCriteria", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_TESTSTANDARD_SOURCETYPE", + "message": "sourceType", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_TESTSTANDARD_STAGE", + "message": "stage", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_UNIT_CODE", + "message": "code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_UNIT_NAME", + "message": "name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_WASTETYPE_CODE", + "message": "code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PQM_WASTETYPE_NAME", + "message": "name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_CANCERCESS_FLATAMOUNT", + "message": "Flatamount", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_CANCERCESS_FROMFY", + "message": "Fromfy", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_CANCERCESS_MAXAMOUNT", + "message": "Maxamount", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_CANCERCESS_MINAMOUNT", + "message": "Minamount", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_CANCERCESS_RATE", + "message": "Rate", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_CHARGESLABS_ACTIVE", + "message": "Active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_CHARGESLABS_CODE", + "message": "Code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_CHARGESLABS_FLOORNO", + "message": "Floorno", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_CHARGESLABS_NAME", + "message": "Name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_COMMONFIELDSCONFIG_BODY", + "message": "Body", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_COMMONFIELDSCONFIG_CARDTEXT", + "message": "Cardtext", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_COMMONFIELDSCONFIG_COMPONENT", + "message": "Component", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_COMMONFIELDSCONFIG_HEAD", + "message": "Head", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_COMMONFIELDSCONFIG_HEADER", + "message": "Header", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_COMMONFIELDSCONFIG_HEADERCAPTION", + "message": "Headercaption", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_COMMONFIELDSCONFIG_HIDEINEMPLOYEE", + "message": "Hideinemployee", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_COMMONFIELDSCONFIG_ISMANDATORY", + "message": "Ismandatory", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_COMMONFIELDSCONFIG_KEY", + "message": "Key", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_COMMONFIELDSCONFIG_NEXTSTEP", + "message": "Nextstep", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_COMMONFIELDSCONFIG_NEXTTEXT", + "message": "Nexttext", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_COMMONFIELDSCONFIG_ROUTE", + "message": "Route", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_COMMONFIELDSCONFIG_SKIPANDCONTINUETEXT", + "message": "Skipandcontinuetext", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_COMMONFIELDSCONFIG_SKIPTEXT", + "message": "Skiptext", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_COMMONFIELDSCONFIG_SUBMITBARLABEL", + "message": "Submitbarlabel", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_COMMONFIELDSCONFIG_TEXTS", + "message": "Texts", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_COMMONFIELDSCONFIG_TYPE", + "message": "Type", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_COMMONFIELDSCONFIG_WITHOUTLABEL", + "message": "Withoutlabel", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_CONSTRUCTIONSUBTYPE_ACTIVE", + "message": "Active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_CONSTRUCTIONSUBTYPE_CODE", + "message": "Code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_CONSTRUCTIONSUBTYPE_ID", + "message": "Id", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_CONSTRUCTIONSUBTYPE_NAME", + "message": "Name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_CONSTRUCTIONTYPE_ACTIVE", + "message": "Active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_CONSTRUCTIONTYPE_CODE", + "message": "Code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_CONSTRUCTIONTYPE_ID", + "message": "Id", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_CONSTRUCTIONTYPE_NAME", + "message": "Name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_DOCUMENTS_ACTIVE", + "message": "Active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_DOCUMENTS_ADDITIONALDETAILS", + "message": "Additionaldetails", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_DOCUMENTS_ASSESS", + "message": "Assess", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_DOCUMENTS_CODE", + "message": "Code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_DOCUMENTS_CREATE", + "message": "Create", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_DOCUMENTS_DESCRIPTION", + "message": "Description", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_DOCUMENTS_DIGIT_CITIZEN", + "message": "Digit-citizen", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_DOCUMENTS_DISABLEDROPDOWN", + "message": "Disabledropdown", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_DOCUMENTS_DISABLEUPLOAD", + "message": "Disableupload", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_DOCUMENTS_DOCUMENTTYPE", + "message": "Documenttype", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_DOCUMENTS_DROPDOWNDATA", + "message": "Dropdowndata", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_DOCUMENTS_ENABLEDACTIONS", + "message": "Enabledactions", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_DOCUMENTS_HASDROPDOWN", + "message": "Hasdropdown", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_DOCUMENTS_REASSESS", + "message": "Reassess", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_DOCUMENTS_REQUIRED", + "message": "Required", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_DOCUMENTS_UPDATE", + "message": "Update", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_DUESONPTMUTATION_CODE", + "message": "Code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_DUESONPTMUTATION_ENABLED", + "message": "Enabled", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_DUESONPTMUTATION_FECTHBILLURL", + "message": "Fecthbillurl", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_DUESONPTMUTATION_FETCHCONSUMERURL", + "message": "Fetchconsumerurl", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_DUESONPTMUTATION_MODULE", + "message": "Module", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_FIRECESS_DYNAMICFIRECESS", + "message": "Dynamicfirecess", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_FIRECESS_DYNAMICRATES", + "message": "Dynamicrates", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_FIRECESS_FIRECESS_BUILDING_HEIGHT", + "message": "Firecess_building_height", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_FIRECESS_FIRECESS_CATEGORY_MAJOR", + "message": "Firecess_category_major", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_FIRECESS_FIRECESS_INFLAMMABLE", + "message": "Firecess_inflammable", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_FIRECESS_FLATAMOUNT", + "message": "Flatamount", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_FIRECESS_FROMFY", + "message": "Fromfy", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_FIRECESS_MAXAMOUNT", + "message": "Maxamount", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_FIRECESS_MINAMOUNT", + "message": "Minamount", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_FIRECESS_RATE", + "message": "Rate", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_FLOOR_ACTIVE", + "message": "Active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_FLOOR_CODE", + "message": "Code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_FLOOR_DESCRIPTION", + "message": "Description", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_FLOOR_NAME", + "message": "Name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_INTEREST_FLATAMOUNT", + "message": "Flatamount", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_INTEREST_FROMFY", + "message": "Fromfy", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_INTEREST_MAXAMOUNT", + "message": "Maxamount", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_INTEREST_MINAMOUNT", + "message": "Minamount", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_INTEREST_RATE", + "message": "Rate", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_INTEREST_STARTINGDAY", + "message": "Startingday", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_MAPCONFIG_DEFAULTCONFIG", + "message": "Defaultconfig", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_MAPCONFIG_LAT", + "message": "Lat", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_MAPCONFIG_LNG", + "message": "Lng", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_MUTATIONDOCUMENTS_ACTIVE", + "message": "Active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_MUTATIONDOCUMENTS_CODE", + "message": "Code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_MUTATIONDOCUMENTS_DESCRIPTION", + "message": "Description", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_MUTATIONDOCUMENTS_DOCUMENTTYPE", + "message": "Documenttype", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_MUTATIONDOCUMENTS_DROPDOWNDATA", + "message": "Dropdowndata", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_MUTATIONDOCUMENTS_HASDROPDOWN", + "message": "Hasdropdown", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_MUTATIONDOCUMENTS_REQUIRED", + "message": "Required", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_MUTATIONPENALTY_FLATAMOUNT", + "message": "Flatamount", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_MUTATIONPENALTY_FROMFY", + "message": "Fromfy", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_MUTATIONPENALTY_MINAMOUNT", + "message": "Minamount", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_MUTATIONPENALTY_MUTATIONPAYMENTPERIODINMONTH", + "message": "Mutationpaymentperiodinmonth", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_MUTATIONPENALTY_RATE", + "message": "Rate", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_MUTATIONPENALTY_STARTINGDAY", + "message": "Startingday", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_MUTATIONREASON_ACTIVE", + "message": "Active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_MUTATIONREASON_CODE", + "message": "Code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_MUTATIONREBATE_ENDINGDAY", + "message": "Endingday", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_MUTATIONREBATE_FLATAMOUNT", + "message": "Flatamount", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_MUTATIONREBATE_FROMFY", + "message": "Fromfy", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_MUTATIONREBATE_MAXAMOUNT", + "message": "Maxamount", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_MUTATIONREBATE_MUTATIONPAYMENTPERIODINMONTH", + "message": "Mutationpaymentperiodinmonth", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_MUTATIONREBATE_RATE", + "message": "Rate", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_OCCUPANCYTYPE_ACTIVE", + "message": "Active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_OCCUPANCYTYPE_CODE", + "message": "Code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_OCCUPANCYTYPE_NAME", + "message": "Name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_OWNERSHIPCATEGORY_ACTIVE", + "message": "Active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_OWNERSHIPCATEGORY_CODE", + "message": "Code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_OWNERSHIPCATEGORY_NAME", + "message": "Name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_OWNERTYPEDOCUMENT_ACTIVE", + "message": "Active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_OWNERTYPEDOCUMENT_CODE", + "message": "Code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_OWNERTYPEDOCUMENT_NAME", + "message": "Name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_OWNERTYPEDOCUMENT_OWNERTYPECODE", + "message": "Ownertypecode", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_OWNERTYPE_ACTIVE", + "message": "Active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_OWNERTYPE_CODE", + "message": "Code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_OWNERTYPE_EXEMPTION", + "message": "Exemption", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_OWNERTYPE_FLATAMOUNT", + "message": "Flatamount", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_OWNERTYPE_FROMFY", + "message": "Fromfy", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_OWNERTYPE_MAXAMOUNT", + "message": "Maxamount", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_OWNERTYPE_NAME", + "message": "Name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_OWNERTYPE_RATE", + "message": "Rate", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_PENALTY_FLATAMOUNT", + "message": "Flatamount", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_PENALTY_FROMFY", + "message": "Fromfy", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_PENALTY_MINAMOUNT", + "message": "Minamount", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_PENALTY_RATE", + "message": "Rate", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_PENALTY_STARTINGDAY", + "message": "Startingday", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_PROPERTYCONFIGURATION_ID", + "message": "Id", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_PROPERTYCONFIGURATION_MUTATION", + "message": "Mutation", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_PROPERTYCONFIGURATION_MUTATIONDETAILS", + "message": "Mutationdetails", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_PROPERTYCONFIGURATION_REGISTRATIONDETAILS", + "message": "Registrationdetails", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_PROPERTYSUBTYPE_ACTIVE", + "message": "Active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_PROPERTYSUBTYPE_CODE", + "message": "Code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_PROPERTYSUBTYPE_NAME", + "message": "Name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_PROPERTYSUBTYPE_PROPERTYTYPE", + "message": "Propertytype", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_PROPERTYTYPE_ACTIVE", + "message": "Active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_PROPERTYTYPE_CODE", + "message": "Code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_PROPERTYTYPE_NAME", + "message": "Name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_PROPERTYTYPE_PROPERTYTYPE", + "message": "Propertytype", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_PTAPPLICATION_ACTION", + "message": "Action", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_PTAPPLICATION_BUSINESSSERVICE", + "message": "Businessservice", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_PTAPPLICATION_CREATIONREASON", + "message": "Creationreason", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_PTAPPLICATION_EDITACTION", + "message": "Editaction", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_PTWORKFLOW_BUSINESSSERVICE", + "message": "Businessservice", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_PTWORKFLOW_ENABLE", + "message": "Enable", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_PTWORKFLOW_INITIALACTION", + "message": "Initialaction", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_PTWORKFLOW_INWORKFLOWSTATUSALLOWED", + "message": "Inworkflowstatusallowed", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_REASONFORTRANSFER_ACTIVE", + "message": "Active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_REASONFORTRANSFER_CODE", + "message": "Code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_REASONFORTRANSFER_NAME", + "message": "Name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_REBATE_ENDINGDAY", + "message": "Endingday", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_REBATE_FLATAMOUNT", + "message": "Flatamount", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_REBATE_FROMFY", + "message": "Fromfy", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_REBATE_MAXAMOUNT", + "message": "Maxamount", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_REBATE_RATE", + "message": "Rate", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_RENTALDETAILS_ACTIVE", + "message": "Active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_RENTALDETAILS_CODE", + "message": "Code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_RENTALDETAILS_NAME", + "message": "Name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_SUBOWNERSHIPCATEGORY_ACTIVE", + "message": "Active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_SUBOWNERSHIPCATEGORY_CODE", + "message": "Code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_SUBOWNERSHIPCATEGORY_NAME", + "message": "Name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_SUBOWNERSHIPCATEGORY_OWNERSHIPCATEGORY", + "message": "Ownershipcategory", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_UPDATENUMBER_ACCEPT", + "message": "Accept", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_UPDATENUMBER_ACTIVE", + "message": "Active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_UPDATENUMBER_CODE", + "message": "Code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_UPDATENUMBER_DESCRIPTION", + "message": "Description", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_UPDATENUMBER_DOCUMENTS", + "message": "Documents", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_UPDATENUMBER_DOCUMENTTYPE", + "message": "Documenttype", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_UPDATENUMBER_DROPDOWNDATA", + "message": "Dropdowndata", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_UPDATENUMBER_HASDROPDOWN", + "message": "Hasdropdown", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_UPDATENUMBER_INPUTPROPS", + "message": "Inputprops", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_UPDATENUMBER_INVALIDNUMBER", + "message": "Invalidnumber", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_UPDATENUMBER_INVALIDPATTERN", + "message": "Invalidpattern", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_UPDATENUMBER_MAXFILESIZE", + "message": "Maxfilesize", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_UPDATENUMBER_REQUIRED", + "message": "Required", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_UPDATENUMBER_SKIPENABLED", + "message": "Skipenabled", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_UPDATENUMBER_WARNINGENABLED", + "message": "Warningenabled", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_USAGECATEGORYDETAIL_ACTIVE", + "message": "Active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_USAGECATEGORYDETAIL_CODE", + "message": "Code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_USAGECATEGORYDETAIL_EXEMPTION", + "message": "Exemption", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_USAGECATEGORYDETAIL_FLATAMOUNT", + "message": "Flatamount", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_USAGECATEGORYDETAIL_FROMFY", + "message": "Fromfy", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_USAGECATEGORYDETAIL_MAXAMOUNT", + "message": "Maxamount", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_USAGECATEGORYDETAIL_NAME", + "message": "Name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_USAGECATEGORYDETAIL_RATE", + "message": "Rate", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_USAGECATEGORYDETAIL_USAGECATEGORYSUBMINOR", + "message": "Usagecategorysubminor", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_USAGECATEGORYMAJOR_ACTIVE", + "message": "Active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_USAGECATEGORYMAJOR_CODE", + "message": "Code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_USAGECATEGORYMAJOR_FROMFY", + "message": "Fromfy", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_USAGECATEGORYMAJOR_NAME", + "message": "Name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_USAGECATEGORYMINOR_ACTIVE", + "message": "Active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_USAGECATEGORYMINOR_CODE", + "message": "Code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_USAGECATEGORYMINOR_EXEMPTION", + "message": "Exemption", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_USAGECATEGORYMINOR_FLATAMOUNT", + "message": "Flatamount", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_USAGECATEGORYMINOR_FROMFY", + "message": "Fromfy", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_USAGECATEGORYMINOR_MAXAMOUNT", + "message": "Maxamount", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_USAGECATEGORYMINOR_NAME", + "message": "Name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_USAGECATEGORYMINOR_RATE", + "message": "Rate", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_USAGECATEGORYMINOR_USAGECATEGORYMAJOR", + "message": "Usagecategorymajor", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_USAGECATEGORYSUBMINOR_ACTIVE", + "message": "Active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_USAGECATEGORYSUBMINOR_CODE", + "message": "Code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_USAGECATEGORYSUBMINOR_EXEMPTION", + "message": "Exemption", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_USAGECATEGORYSUBMINOR_FLATAMOUNT", + "message": "Flatamount", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_USAGECATEGORYSUBMINOR_FROMFY", + "message": "Fromfy", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_USAGECATEGORYSUBMINOR_MAXAMOUNT", + "message": "Maxamount", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_USAGECATEGORYSUBMINOR_NAME", + "message": "Name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_USAGECATEGORYSUBMINOR_RATE", + "message": "Rate", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_USAGECATEGORYSUBMINOR_USAGECATEGORYMINOR", + "message": "Usagecategoryminor", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_USAGECATEGORY_ACTIVE", + "message": "Active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_USAGECATEGORY_CODE", + "message": "Code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_USAGECATEGORY_EXEMPTION", + "message": "Exemption", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_USAGECATEGORY_FLATAMOUNT", + "message": "Flatamount", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_USAGECATEGORY_FROMFY", + "message": "Fromfy", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_USAGECATEGORY_MAXAMOUNT", + "message": "Maxamount", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_USAGECATEGORY_NAME", + "message": "Name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "PROPERTYTAX_USAGECATEGORY_RATE", + "message": "Rate", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "RAINMAKER_PGR_COMPLAINCLOSINGTIME_COMPLAINMAXIDLETIME", + "message": "Complainmaxidletime", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "RAINMAKER_PGR_PRIORITYLEVEL_ACTIVE", + "message": "Active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "RAINMAKER_PGR_PRIORITYLEVEL_CODE", + "message": "Code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "RAINMAKER_PGR_PRIORITYLEVEL_NAME", + "message": "Name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "RAINMAKER_PGR_SERVICEDEFS_ACTIVE", + "message": "Active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "RAINMAKER_PGR_SERVICEDEFS_DEPARTMENT", + "message": "Department", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "RAINMAKER_PGR_SERVICEDEFS_KEYWORDS", + "message": "Keywords", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "RAINMAKER_PGR_SERVICEDEFS_MENUPATH", + "message": "Menupath", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "RAINMAKER_PGR_SERVICEDEFS_MENUPATHNAME", + "message": "Menu Path Name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "RAINMAKER_PGR_SERVICEDEFS_NAME", + "message": "Name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "RAINMAKER_PGR_SERVICEDEFS_ORDER", + "message": "Order", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "RAINMAKER_PGR_SERVICEDEFS_SERVICECODE", + "message": "Servicecode", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "RAINMAKER_PGR_SERVICEDEFS_SLAHOURS", + "message": "Slahours", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "RAINMAKER_PGR_UICONSTANTS_REOPENSLA", + "message": "Reopensla", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_ACCESSCONTROL_ACTIONS_TEST_ACTIONS_TEST", + "message": "actions-test", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_ACCESSCONTROL_ROLEACTIONS_ROLEACTIONS", + "message": "roleactions", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_ACCESSCONTROL_ROLEACTION_ACCESSCONTROL_ROLEACTIONS", + "message": "Accesscontrol-roleactions", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_ACCESSCONTROL_ROLES_ROLES", + "message": "roles", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_BILLINGSERVICE_BUSINESSSERVICE", + "message": "Businessservice", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_BILLINGSERVICE_TAXHEADMASTER", + "message": "Taxheadmaster", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_BILLINGSERVICE_TAXPERIOD", + "message": "Taxperiod", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_COMMON_MASTERS_BDTEMPLATE", + "message": "Bdtemplate", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_COMMON_MASTERS_CANCELCURRENTBILLREASONS", + "message": "Cancelcurrentbillreasons", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_COMMON_MASTERS_CANCELRECEIPTREASON", + "message": "Cancelreceiptreason", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_COMMON_MASTERS_CENSUSYEAR", + "message": "Censusyear", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_COMMON_MASTERS_CITIZENCONSENTFORM", + "message": "Citizenconsentform", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_COMMON_MASTERS_COMMONINBOXCONFIG", + "message": "Commoninboxconfig", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_COMMON_MASTERS_CRONJOBAPICONFIG", + "message": "Cronjobapiconfig", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_COMMON_MASTERS_DEPARTMENT", + "message": "Department", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_COMMON_MASTERS_DESIGNATION", + "message": "Designation", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_COMMON_MASTERS_DOCUMENTTYPE", + "message": "Documenttype", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_COMMON_MASTERS_GENDERTYPE", + "message": "Gendertype", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_COMMON_MASTERS_IDFORMAT", + "message": "Idformat", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_COMMON_MASTERS_OWNERSHIPCATEGORY", + "message": "Ownershipcategory", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_COMMON_MASTERS_OWNERTYPE", + "message": "Ownertype", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_COMMON_MASTERS_STATEINFO", + "message": "Stateinfo", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_COMMON_MASTERS_STRUCTURETYPE", + "message": "Structuretype", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_COMMON_MASTERS_TABLEPAGINATIONOPTIONS", + "message": "Tablepaginationoptions", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_COMMON_MASTERS_UICOMMONPAY", + "message": "Uicommonpay", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_COMMON_MASTERS_UOM", + "message": "Uom", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_COMMON_MASTERS_UOMCATEGORY", + "message": "Uomcategory", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_COMMON_MASTERS_WFSLACONFIG", + "message": "Wfslaconfig", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_DATASECURITY_DECRYPTIONABAC", + "message": "DecryptionABAC", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_DATASECURITY_ENCRYPTIONPOLICY", + "message": "EncryptionPolicy", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_DATASECURITY_MASKINGPATTERNS", + "message": "MaskingPatterns", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_DATASECURITY_SECURITYPOLICY", + "message": "SecurityPolicy", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_DATASECURIT_DATASECURITY", + "message": "Datasecurity", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_EGF_MASTER_FINANCIALYEAR", + "message": "Financialyear", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_EGOV_HRMS_DEACTIVATIONREASON", + "message": "DeactivationReason", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_EGOV_HRMS_DEGREE", + "message": "Degree", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_EGOV_HRMS_EMPLOYEESTATUS", + "message": "EmployeeStatus", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_EGOV_HRMS_EMPLOYEETYPE", + "message": "EmployeeType", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_EGOV_HRMS_EMPLOYMENTTEST", + "message": "EmploymentTest", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_EGOV_HRMS_SPECALIZATION", + "message": "Specalization", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_EGOV_HRM_EGOV_HRMS", + "message": "Egov-hrms", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_FSM_ADVANCEPAYMENT", + "message": "AdvancePayment", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_FSM_APPLICATIONCHANNEL", + "message": "ApplicationChannel", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_FSM_APPLICATIONTYPE", + "message": "ApplicationType", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_FSM_CANCELLATIONFEE", + "message": "CancellationFee", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_FSM_CANCELREASON", + "message": "CancelReason", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_FSM_CHECKLIST", + "message": "CheckList", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_FSM_COMMONFIELDSCONFIG", + "message": "CommonFieldsConfig", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_FSM_CONFIG", + "message": "Config", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_FSM_DECLINEREASON", + "message": "DeclineReason", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_FSM_DOCUMENTCONFIG", + "message": "DocumentConfig", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_FSM_FSTPPLANTINFO", + "message": "FSTPPlantInfo", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_FSM_PAYMENTTYPE", + "message": "PaymentType", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_FSM_PERIODICSERVICE", + "message": "PeriodicService", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_FSM_PITTYPE", + "message": "PitType", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_FSM_POSTFIELDSCONFIG", + "message": "PostFieldsConfig", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_FSM_PREFIELDSCONFIG", + "message": "PreFieldsConfig", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_FSM_PROPERTYTYPE", + "message": "PropertyType", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_FSM_REASSIGNREASON", + "message": "ReassignReason", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_FSM_RECEIVEDPAYMENTTYPE", + "message": "ReceivedPaymentType", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_FSM_REJECTIONREASON", + "message": "RejectionReason", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_FSM_SANITATIONTYPE", + "message": "SanitationType", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_FSM_SANITATIONWORKEREMPLOYER", + "message": "SanitationWorkerEmployer", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_FSM_SANITATIONWORKEREMPLOYMENTTYPE", + "message": "SanitationWorkerEmploymentType", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_FSM_SANITATIONWORKERFUNCTIONALROLES", + "message": "SanitationWorkerFunctionalRoles", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_FSM_SANITATIONWORKERSKILLS", + "message": "SanitationWorkerSkills", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_FSM_SLUM", + "message": "Slum", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_FSM_TRIPNUMBER", + "message": "TripNumber", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_FSM_URCCONFIG", + "message": "UrcConfig", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_FSM_VEHICLETRACKING", + "message": "VehicleTracking", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_FSM_VEHICLETYPE", + "message": "VehicleType", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_FSM_ZEROPRICING", + "message": "ZeroPricing", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_INBOX_INBOXQUERYCONFIGURATION", + "message": "InboxQueryConfiguration", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_INBOX_V_INBOX_V2", + "message": "Inbox-v2", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_PQM_BENCHMARKRULE", + "message": "BenchmarkRule", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_PQM_MATERIAL", + "message": "Material", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_PQM_PARAMETER", + "message": "Parameter", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_PQM_PLANT", + "message": "Plant", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_PQM_PLANTCONFIG", + "message": "PlantConfig", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_PQM_PLANTTYPE", + "message": "PlantType", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_PQM_PROCESS", + "message": "Process", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_PQM_PROCESSTYPE", + "message": "ProcessType", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_PQM_QUALITYCRITERIA", + "message": "QualityCriteria", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_PQM_QUALITYTESTLAB", + "message": "QualityTestLab", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_PQM_SOURCETYPE", + "message": "SourceType", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_PQM_STAGE", + "message": "Stage", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_PQM_TESTSTANDARD", + "message": "TestStandard", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_PQM_UNIT", + "message": "Unit", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_PQM_WASTETYPE", + "message": "WasteType", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_PROPERTYTAX_CANCERCESS", + "message": "Cancercess", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_PROPERTYTAX_CHARGESLABS", + "message": "Chargeslabs", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_PROPERTYTAX_COMMONFIELDSCONFIG", + "message": "Commonfieldsconfig", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_PROPERTYTAX_CONSTRUCTIONSUBTYPE", + "message": "Constructionsubtype", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_PROPERTYTAX_CONSTRUCTIONTYPE", + "message": "Constructiontype", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_PROPERTYTAX_DOCUMENTS", + "message": "Documents", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_PROPERTYTAX_DUESONPTMUTATION", + "message": "Duesonptmutation", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_PROPERTYTAX_FIRECESS", + "message": "Firecess", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_PROPERTYTAX_FLOOR", + "message": "Floor", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_PROPERTYTAX_INTEREST", + "message": "Interest", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_PROPERTYTAX_MAPCONFIG", + "message": "Mapconfig", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_PROPERTYTAX_MUTATIONDOCUMENTS", + "message": "Mutationdocuments", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_PROPERTYTAX_MUTATIONPENALTY", + "message": "Mutationpenalty", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_PROPERTYTAX_MUTATIONREASON", + "message": "Mutationreason", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_PROPERTYTAX_MUTATIONREBATE", + "message": "Mutationrebate", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_PROPERTYTAX_OCCUPANCYTYPE", + "message": "Occupancytype", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_PROPERTYTAX_OWNERSHIPCATEGORY", + "message": "Ownershipcategory", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_PROPERTYTAX_OWNERTYPE", + "message": "Ownertype", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_PROPERTYTAX_OWNERTYPEDOCUMENT", + "message": "Ownertypedocument", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_PROPERTYTAX_PENALTY", + "message": "Penalty", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_PROPERTYTAX_PROPERTYCONFIGURATION", + "message": "Propertyconfiguration", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_PROPERTYTAX_PROPERTYSUBTYPE", + "message": "Propertysubtype", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_PROPERTYTAX_PROPERTYTYPE", + "message": "Propertytype", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_PROPERTYTAX_PTAPPLICATION", + "message": "Ptapplication", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_PROPERTYTAX_PTWORKFLOW", + "message": "Ptworkflow", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_PROPERTYTAX_REASONFORTRANSFER", + "message": "Reasonfortransfer", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_PROPERTYTAX_REBATE", + "message": "Rebate", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_PROPERTYTAX_RENTALDETAILS", + "message": "Rentaldetails", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_PROPERTYTAX_SUBOWNERSHIPCATEGORY", + "message": "Subownershipcategory", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_PROPERTYTAX_UPDATENUMBER", + "message": "Updatenumber", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_PROPERTYTAX_USAGECATEGORY", + "message": "Usagecategory", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_PROPERTYTAX_USAGECATEGORYDETAIL", + "message": "Usagecategorydetail", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_PROPERTYTAX_USAGECATEGORYMAJOR", + "message": "Usagecategorymajor", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_PROPERTYTAX_USAGECATEGORYMINOR", + "message": "Usagecategoryminor", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_PROPERTYTAX_USAGECATEGORYSUBMINOR", + "message": "Usagecategorysubminor", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_RAINMAKER_PGR_COMPLAINCLOSINGTIME", + "message": "Complainclosingtime", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_RAINMAKER_PGR_PRIORITYLEVEL", + "message": "Prioritylevel", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_RAINMAKER_PGR_SERVICEDEFS", + "message": "Servicedefs", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_RAINMAKER_PGR_UICONSTANTS", + "message": "Uiconstants", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_TENANT_ASSESSMENTCONFIG", + "message": "Assessmentconfig", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_TENANT_CITYMODULE", + "message": "Citymodule", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_TENANT_FOOTER", + "message": "Footer", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_TENANT_NATIONALINFO", + "message": "Nationalinfo", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_TENANT_REASSESSMENTCONFIG", + "message": "Reassessmentconfig", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_TENANT_TENANTINFO", + "message": "Tenantinfo", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_TENANT_TENANTS", + "message": "Tenant Master", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_TRADELICENSE_ACCESSORIESCATEGORY", + "message": "Accessoriescategory", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_TRADELICENSE_APPLICATIONTYPE", + "message": "Applicationtype", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_TRADELICENSE_CALCULATIONTYPE", + "message": "Calculationtype", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_TRADELICENSE_COMMONFIELDSCONFIG", + "message": "CommonFieldsConfig", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_TRADELICENSE_DOCUMENTOBJ", + "message": "Documentobj", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_TRADELICENSE_DOCUMENTS", + "message": "Documents", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_TRADELICENSE_PENALTY", + "message": "Penalty", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_TRADELICENSE_REBATE", + "message": "Rebate", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_TRADELICENSE_REMINDERPERIODS", + "message": "Reminderperiods", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_TRADELICENSE_TRADERENEWAL", + "message": "Traderenewal", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_TRADELICENSE_TRADETYPE", + "message": "Tradetype", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_WORKFLOW_AUTOESCALATION", + "message": "AutoEscalation", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_WORKFLOW_AUTOESCALATIONSTATESTOIGNORE", + "message": "AutoEscalationStatesToIgnore", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_WORKFLOW_BUSINESSSERVICE", + "message": "BusinessService", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_WORKFLOW_BUSINESSSERVICECONFIG", + "message": "BusinessServiceConfig", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_WORKFLOW_BUSINESSSERVICEMASTERCONFIG", + "message": "BusinessServiceMasterConfig", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_WORKFLO_WORKFLOW", + "message": "Workflow", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_WS_SERVICES_CALCULATION_PENALTY", + "message": "Penalty master", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "SCHEMA_WS_SERVICES_CALCULATION_WCBILLINGSLAB", + "message": "Rate Master", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TENANT_ASSESSMENTCONFIG_ENABLED", + "message": "Enabled", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TENANT_ASSESSMENTCONFIG_FINANCIALYEAR", + "message": "Financialyear", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TENANT_ASSESSMENTCONFIG_ISRENTED", + "message": "Isrented", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TENANT_ASSESSMENTCONFIG_TENANT", + "message": "Tenant", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TENANT_CITYMODULE_ACTIVE", + "message": "Active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TENANT_CITYMODULE_BANNERIMAGE", + "message": "Bannerimage", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TENANT_CITYMODULE_CODE", + "message": "Code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TENANT_CITYMODULE_MODULE", + "message": "Module", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TENANT_CITYMODULE_ORDER", + "message": "Order", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TENANT_CITYMODULE_TENANTS", + "message": "Tenants", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TENANT_FOOTER_BILLFOOTERCONTENT", + "message": "Billfootercontent", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TENANT_FOOTER_CODE", + "message": "Code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TENANT_FOOTER_DISCLAIMER", + "message": "Disclaimer", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TENANT_FOOTER_ORDER", + "message": "Order", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TENANT_FOOTER_RECEIPTFOOTERCONTENT", + "message": "Receiptfootercontent", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TENANT_FOOTER_SERVICE", + "message": "Service", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TENANT_NATIONALINFO_ACTIVE", + "message": "Active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TENANT_NATIONALINFO_CODE", + "message": "Code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TENANT_NATIONALINFO_MODULE", + "message": "Module", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TENANT_NATIONALINFO_NAME", + "message": "Name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TENANT_NATIONALINFO_STATECODE", + "message": "Statecode", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TENANT_NATIONALINFO_STATENAME", + "message": "Statename", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TENANT_REASSESSMENTCONFIG_FINANCIALYEAR", + "message": "Financialyear", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TENANT_REASSESSMENTCONFIG_TENANT", + "message": "Tenant", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTINFO_CODE", + "message": "Code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTINFO_DISTRICTCODE", + "message": "Districtcode", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTINFO_FEMALEPOPULTION", + "message": "Femalepopultion", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTINFO_LANGUAGESSPOKEN", + "message": "Languagesspoken", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTINFO_LITERACYRATE", + "message": "Literacyrate", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTINFO_MALEPOPULATION", + "message": "Malepopulation", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTINFO_POPULATION", + "message": "Population", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTINFO_WORKINGPOPULATION", + "message": "Workingpopulation", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_ADDRESS", + "message": "Address", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_BLOCKCODE", + "message": "Block code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_BLOCKNAME", + "message": "Block name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_CAPTCHA", + "message": "Captcha", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_CITY", + "message": "City", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_CODE", + "message": "Code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_CONTACTNUMBER", + "message": "Contact number", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_DDRNAME", + "message": "Ddr name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_DESCRIPTION", + "message": "Description", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_DISTRICTCODE", + "message": "District code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_DISTRICTNAME", + "message": "District name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_DOMAINURL", + "message": "Domain url", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_EMAILID", + "message": "Email id", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_FACEBOOKURL", + "message": "Facebook url", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_HELPLINENUMBER", + "message": "Helpline number", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_IMAGEID", + "message": "Image id", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_LATITUDE", + "message": "Latitude", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_LOCALNAME", + "message": "Local name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_LOGOID", + "message": "Logo id", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_LONGITUDE", + "message": "Longitude", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_MON___FRI", + "message": "Mon - fri", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_NAME", + "message": "Name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_OFFICETIMINGS", + "message": "Office timings", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PANCHAYATCODE", + "message": "Panchayat code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PANCHAYATNAME", + "message": "Panchayat name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PDFCONTACTDETAILS", + "message": "Pdfcontact details", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PDFHEADER", + "message": "Pdf header", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PINCODE", + "message": "Pincode", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_PROJECTID", + "message": "Project id", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_REGIONNAME", + "message": "Region name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_SHAPEFILELOCATION", + "message": "Shapefile location", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_TWITTERURL", + "message": "Twitter url", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_TYPE", + "message": "Type", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_ULBGRADE", + "message": "Ulb grade", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_VILLAGECODE", + "message": "Tenant code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TENANT_TENANTS_VILLAGENAME", + "message": "Tenant name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TIP_SCHEMA_WS_SERVICES_CALCULATION_PENALTY", + "message": "Penalty master", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TIP_WS_SERVICES_CALCULATION_PENALTY_AMOUNT", + "message": "Amount", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TIP_WS_SERVICES_CALCULATION_PENALTY_APPLICABLEAFTERDAYS", + "message": "Applicable After Days", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TIP_WS_SERVICES_CALCULATION_PENALTY_FLATAMOUNT", + "message": "Flat Amount", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TIP_WS_SERVICES_CALCULATION_PENALTY_FROMFY", + "message": "From FY", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TIP_WS_SERVICES_CALCULATION_PENALTY_MINAMOUNT", + "message": "Minimum Amount", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TIP_WS_SERVICES_CALCULATION_PENALTY_RATE", + "message": "Rate", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TIP_WS_SERVICES_CALCULATION_PENALTY_STARTINGDAY", + "message": "Starting Day", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TIP_WS_SERVICES_CALCULATION_PENALTY_SUBTYPE", + "message": "Sub Type", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TIP_WS_SERVICES_CALCULATION_PENALTY_TYPE", + "message": "Type", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TIP_WS_SERVICES_CALCULATION_WCBILLINGSLAB_BUILDINGTYPE", + "message": "Building Type", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TIP_WS_SERVICES_CALCULATION_WCBILLINGSLAB_CALCULATIONATTRIBUTE", + "message": "Calculation Attribute", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TIP_WS_SERVICES_CALCULATION_WCBILLINGSLAB_CHARGE", + "message": "Rate", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TIP_WS_SERVICES_CALCULATION_WCBILLINGSLAB_CONNECTIONTYPE", + "message": "Connection Type", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TIP_WS_SERVICES_CALCULATION_WCBILLINGSLAB_FROM", + "message": "From", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TIP_WS_SERVICES_CALCULATION_WCBILLINGSLAB_ID", + "message": "ID", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TIP_WS_SERVICES_CALCULATION_WCBILLINGSLAB_MINIMUMCHARGE", + "message": "Minimum Charge", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TIP_WS_SERVICES_CALCULATION_WCBILLINGSLAB_SLABS", + "message": "Slabs", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TIP_WS_SERVICES_CALCULATION_WCBILLINGSLAB_TO", + "message": "To", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TIP_WS_SERVICES_CALCULATION_WS_SERVICES_CALCULATION_SLABS", + "message": "Slabs", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACTIVE", + "message": "Active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_CODE", + "message": "Code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_ACCESSORIESCATEGORY_UOM", + "message": "Uom", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_APPLICATIONTYPE_ACTIVE", + "message": "Active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_APPLICATIONTYPE_CODE", + "message": "Code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_CALCULATIONTYPE_ACCESSORY", + "message": "Accessory", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_CALCULATIONTYPE_ACTIVE", + "message": "Active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_CALCULATIONTYPE_FINANCIALYEAR", + "message": "Financialyear", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_CALCULATIONTYPE_TRADETYPE", + "message": "Tradetype", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_COMMONFIELDSCONFIG_BODY", + "message": "body", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_COMMONFIELDSCONFIG_CARDTEXT", + "message": "cardText", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_COMMONFIELDSCONFIG_COMPONENT", + "message": "component", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_COMMONFIELDSCONFIG_HEAD", + "message": "head", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_COMMONFIELDSCONFIG_HEADER", + "message": "header", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_COMMONFIELDSCONFIG_HEADERCAPTION", + "message": "headerCaption", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_COMMONFIELDSCONFIG_HIDEINEMPLOYEE", + "message": "hideInEmployee", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_COMMONFIELDSCONFIG_ISMANDATORY", + "message": "isMandatory", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_COMMONFIELDSCONFIG_KEY", + "message": "key", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_COMMONFIELDSCONFIG_NEXTSTEP", + "message": "nextStep", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_COMMONFIELDSCONFIG_ROUTE", + "message": "route", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_COMMONFIELDSCONFIG_SKIPTEXT", + "message": "skipText", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_COMMONFIELDSCONFIG_SUBMITBARLABEL", + "message": "submitBarLabel", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_COMMONFIELDSCONFIG_TEXTS", + "message": "texts", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_COMMONFIELDSCONFIG_TYPE", + "message": "type", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_COMMONFIELDSCONFIG_WITHOUTLABEL", + "message": "withoutLabel", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_DOCUMENTOBJ_ALLOWEDDOCS", + "message": "Alloweddocs", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_DOCUMENTOBJ_APPLICATIONTYPE", + "message": "Applicationtype", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_DOCUMENTOBJ_DOCUMENTTYPE", + "message": "Documenttype", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_DOCUMENTOBJ_REQUIRED", + "message": "Required", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_DOCUMENTOBJ_TRADETYPE", + "message": "Tradetype", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_DOCUMENTS_ACTIVE", + "message": "Active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_DOCUMENTS_CODE", + "message": "Code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_DOCUMENTS_DESCRIPTION", + "message": "Description", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_DOCUMENTS_DOCUMENTTYPE", + "message": "Documenttype", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_DOCUMENTS_DROPDOWNDATA", + "message": "Dropdowndata", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_DOCUMENTS_REQUIRED", + "message": "Required", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_PENALTY_FLATAMOUNT", + "message": "Flatamount", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_PENALTY_FROMFY", + "message": "Fromfy", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_PENALTY_MINAMOUNT", + "message": "Minamount", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_PENALTY_RATE", + "message": "Rate", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_PENALTY_STARTINGDAY", + "message": "Startingday", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_REBATE_ENDINGDAY", + "message": "Endingday", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_REBATE_FLATAMOUNT", + "message": "Flatamount", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_REBATE_FROMFY", + "message": "Fromfy", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_REBATE_MAXAMOUNT", + "message": "Maxamount", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_REBATE_RATE", + "message": "Rate", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_REMINDERPERIODS_REMINDERINTERVAL", + "message": "Reminderinterval", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_REMINDERPERIODS_TENANTID", + "message": "Tenantid", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_TRADELICENSE_ALLOWEDDOCS", + "message": "allowedDocs", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_TRADELICENSE_APPLICATIONDOCUMENT", + "message": "applicationDocument", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_TRADELICENSE_APPLICATIONTYPE", + "message": "applicationType", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_TRADELICENSE_BODY", + "message": "body", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_TRADELICENSE_DOCUMENTLIST", + "message": "documentList", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_TRADELICENSE_DROPDOWNDATA", + "message": "dropdownData", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_TRADERENEWAL_RENEWALPERIOD", + "message": "Renewalperiod", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_TRADETYPE_ACTIVE", + "message": "Active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_TRADETYPE_APPLICATIONDOCUMENT", + "message": "Applicationdocument", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_TRADETYPE_APPLICATIONTYPE", + "message": "Applicationtype", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_TRADETYPE_CODE", + "message": "Code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_TRADETYPE_DOCUMENTLIST", + "message": "Documentlist", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_TRADETYPE_NAME", + "message": "Name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_TRADETYPE_TYPE", + "message": "Type", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_TRADETYPE_UOM", + "message": "Uom", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_TRADETYPE_VALIDITYPERIOD", + "message": "Validityperiod", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "TRADELICENSE_TRADETYPE_VERIFICATIONDOCUMENT", + "message": "Verificationdocument", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "UNIQUE_IDENTIFIER_EMPTY_ERR", + "message": "Unique fields cannot be empty.", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "VIEW_ALL", + "message": "View All", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_ADD", + "message": "Add", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_ADD_LOCALISATION", + "message": "Add New", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_ADD_MDMS", + "message": "Add Master data", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_ADD_MDMS_ADD_ACTION", + "message": "Add data", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_ADD_MDMS_UPDATE_ACTION", + "message": "Update", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_BOOLEAN_VALUE_FALSE", + "message": "FALSE", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_BOOLEAN_VALUE_TRUE", + "message": "TRUE", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_BULK_BROWSE_FILES", + "message": "bulk upload files", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_BULK_UPLOAD", + "message": "Upload", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_BULK_UPLOAD_HEADER", + "message": "Bulk Upload", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_BULK_UPLOAD_SUBMIT", + "message": "Submit", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_CANCEL", + "message": "Cancel", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_COMMON_ALL", + "message": "All", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_COMMON_NO", + "message": "No", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_COMMON_YES", + "message": "Yes", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_CONFIRM", + "message": "Confirm", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_DELETE_ACTION", + "message": "Delete", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_DOWLOAD_TEMPLATE", + "message": "Download Template", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_DOWNLOAD_TEMPLATE", + "message": "Download Template", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_DRAG_DROP", + "message": "Drag & drop", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_EDIT_MDMS", + "message": "Edit Master Data", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_ERROR_ENUM", + "message": "Please enter enum values", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_ERROR_FORMAT", + "message": "Please enter correct format", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_ERROR_MAXLENGTH", + "message": "value exceeds the maximum length", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_ERROR_MDMS_DATA", + "message": "Error : Error", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_ERROR_MDMS_DATA DUPLICATE_RECORD", + "message": "Duplicate Record", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_ERROR_MINITEMS", + "message": "Please enter minium items", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_ERROR_MINLENGTH", + "message": "The provided value is too short", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_ERROR_PATTERN", + "message": "Invalid, Pattern should match", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_ERROR_REQUIRED", + "message": "Required", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_ERROR_TYPE", + "message": "Invalid type", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_FIELD", + "message": "Field", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_FIELD_VALUE", + "message": "Value", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_INFO", + "message": "Info", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_INFO_MESSAGE", + "message": "Below is the list of localizations data. Please add or modify as needed.", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_ISACTIVE", + "message": "Active (Yes/No)", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_LOCALISATION_SEARCH_HEADER", + "message": "Localisation Data", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_LOC_ADD", + "message": "Add Localisation", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_LOC_BULK_UPLOAD_XLS", + "message": "Bulk Upload", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_LOC_CODE", + "message": "Keycode", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_LOC_DEFAULT_INFO_MESSAGE", + "message": "Messages will also be upserted into default locale", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_LOC_EDIT_LOCALISATION", + "message": "Update Localisation", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_LOC_EDIT_MODAL_CANCEL", + "message": "Cancel", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_LOC_EDIT_MODAL_SUBMIT", + "message": "Submit", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_LOC_EMPTY_KEY_VALUE_VALIDATION_ERR", + "message": "Keycode/Text should not be empty", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_LOC_ENTER_VALID_MESSAGE", + "message": "Please Enter Valid Text", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_LOC_HEADER_CODE", + "message": "Keycode", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_LOC_HEADER_DEFAULT", + "message": "Default Value", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_LOC_HEADER_MESSAGE", + "message": "Text", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_LOC_HEADER_MODULENAME", + "message": "Module Name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_LOC_HEADER_en_IN", + "message": "en_IN Value", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_LOC_KEYCODE", + "message": "Keycode", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_LOC_LANG", + "message": "Language", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_LOC_LOCALE", + "message": "Locale", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_LOC_MESSAGE", + "message": "Text", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_LOC_MESSAGE_VALUE", + "message": "Text", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_LOC_MODULE", + "message": "Module", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_LOC_SELECT_LANG", + "message": "Select Language", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_LOC_SELECT_MODULE", + "message": "Select Module", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_LOC_UPDATE_FAIL", + "message": "Localisation Update Failed", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_LOC_UPDATE_SUCCESS", + "message": "Successfully updated", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_LOC_UPSERT_FAIL", + "message": "Localisation Upsertion Failed", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_LOC_UPSERT_SUCCESS", + "message": "Localisation Upserted Succesfully", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_LOC_WARNING_LOCALE_MUST_BE_PRESENT", + "message": "Language must be present", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_LOC_en_IN_INFO_MESSAGE", + "message": "Messages will also be upserted into en_IN locale", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MANAGE_MASTER_DATA", + "message": "Manage Master data", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MASTER_NAME", + "message": "Master Name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_ACCESSCONTROL_ACTIONS_TEST_ACTIONS_TEST", + "message": "actions-test", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_ACCESSCONTROL_ROLEACTIONS_ROLEACTIONS", + "message": "roleactions", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_ACCESSCONTROL_ROLEACTION_ACCESSCONTROL_ROLEACTIONS", + "message": "Accesscontrol-roleactions", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_ACCESSCONTROL_ROLES_ROLES", + "message": "roles", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_BILLINGSERVICE_BUSINESSSERVICE", + "message": "BusinessService", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_BILLINGSERVICE_PAYMENTSERVICE", + "message": "PaymentService", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_BILLINGSERVICE_TAXHEADMASTER", + "message": "TaxHeadMaster", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_BILLINGSERVICE_TAXPERIOD", + "message": "TaxPeriod", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_COMMON-MASTERS_GENDERTYPE", + "message": "GenderType", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_COMMON_MASTERS_BDTEMPLATE", + "message": "Bdtemplate", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_COMMON_MASTERS_CANCELCURRENTBILLREASONS", + "message": "Cancelcurrentbillreasons", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_COMMON_MASTERS_CANCELRECEIPTREASON", + "message": "Cancelreceiptreason", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_COMMON_MASTERS_CENSUSYEAR", + "message": "Censusyear", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_COMMON_MASTERS_CITIZENCONSENTFORM", + "message": "Citizenconsentform", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_COMMON_MASTERS_COMMONINBOXCONFIG", + "message": "Commoninboxconfig", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_COMMON_MASTERS_CRONJOBAPICONFIG", + "message": "Cronjobapiconfig", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_COMMON_MASTERS_DEPARTMENT", + "message": "Department", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_COMMON_MASTERS_DESIGNATION", + "message": "Designation", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_COMMON_MASTERS_DOCUMENTTYPE", + "message": "Documenttype", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_COMMON_MASTERS_GENDERTYPE", + "message": "Gendertype", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_COMMON_MASTERS_IDFORMAT", + "message": "Idformat", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_COMMON_MASTERS_OWNERSHIPCATEGORY", + "message": "Ownershipcategory", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_COMMON_MASTERS_OWNERTYPE", + "message": "Ownertype", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_COMMON_MASTERS_STATEINFO", + "message": "Stateinfo", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_COMMON_MASTERS_STRUCTURETYPE", + "message": "Structuretype", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_COMMON_MASTERS_TABLEPAGINATIONOPTIONS", + "message": "Tablepaginationoptions", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_COMMON_MASTERS_UICOMMONPAY", + "message": "Uicommonpay", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_COMMON_MASTERS_UOM", + "message": "Uom", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_COMMON_MASTERS_UOMCATEGORY", + "message": "Uomcategory", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_COMMON_MASTERS_WFSLACONFIG", + "message": "Wfslaconfig", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_COMMON_MASTER_DEPARTMENT", + "message": "Department", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_DATASECURITY_DECRYPTIONABAC", + "message": "DecryptionABAC", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_DATASECURITY_ENCRYPTIONPOLICY", + "message": "EncryptionPolicy", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_DATASECURITY_MASKINGPATTERNS", + "message": "MaskingPatterns", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_DATASECURITY_SECURITYPOLICY", + "message": "SecurityPolicy", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_DATASECURIT_DATASECURITY", + "message": "Datasecurity", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_EGF_MASTER_FINANCIALYEAR", + "message": "FinancialYear", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_EGOV_HRMS_DEACTIVATIONREASON", + "message": "DeactivationReason", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_EGOV_HRMS_DEGREE", + "message": "Degree", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_EGOV_HRMS_EMPLOYEESTATUS", + "message": "EmployeeStatus", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_EGOV_HRMS_EMPLOYEETYPE", + "message": "EmployeeType", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_EGOV_HRMS_EMPLOYMENTTEST", + "message": "EmploymentTest", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_EGOV_HRMS_SPECALIZATION", + "message": "Specalization", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_EGOV_HRM_EGOV_HRMS", + "message": "Egov-hrms", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_FSM_ADVANCEPAYMENT", + "message": "AdvancePayment", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_FSM_APPLICATIONCHANNEL", + "message": "ApplicationChannel", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_FSM_APPLICATIONTYPE", + "message": "ApplicationType", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_FSM_CANCELLATIONFEE", + "message": "CancellationFee", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_FSM_CANCELREASON", + "message": "CancelReason", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_FSM_CHECKLIST", + "message": "CheckList", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_FSM_COMMONFIELDSCONFIG", + "message": "CommonFieldsConfig", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_FSM_CONFIG", + "message": "Config", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_FSM_DECLINEREASON", + "message": "DeclineReason", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_FSM_DOCUMENTCONFIG", + "message": "DocumentConfig", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_FSM_FSTPPLANTINFO", + "message": "FSTPPlantInfo", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_FSM_PAYMENTTYPE", + "message": "PaymentType", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_FSM_PERIODICSERVICE", + "message": "PeriodicService", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_FSM_PITTYPE", + "message": "PitType", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_FSM_POSTFIELDSCONFIG", + "message": "PostFieldsConfig", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_FSM_PREFIELDSCONFIG", + "message": "PreFieldsConfig", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_FSM_PROPERTYTYPE", + "message": "PropertyType", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_FSM_REASSIGNREASON", + "message": "ReassignReason", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_FSM_RECEIVEDPAYMENTTYPE", + "message": "ReceivedPaymentType", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_FSM_REJECTIONREASON", + "message": "RejectionReason", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_FSM_SANITATIONTYPE", + "message": "SanitationType", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_FSM_SANITATIONWORKEREMPLOYER", + "message": "SanitationWorkerEmployer", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_FSM_SANITATIONWORKEREMPLOYMENTTYPE", + "message": "SanitationWorkerEmploymentType", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_FSM_SANITATIONWORKERFUNCTIONALROLES", + "message": "SanitationWorkerFunctionalRoles", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_FSM_SANITATIONWORKERSKILLS", + "message": "SanitationWorkerSkills", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_FSM_SLUM", + "message": "Slum", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_FSM_TRIPNUMBER", + "message": "TripNumber", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_FSM_URCCONFIG", + "message": "UrcConfig", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_FSM_VEHICLETRACKING", + "message": "VehicleTracking", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_FSM_VEHICLETYPE", + "message": "VehicleType", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_FSM_ZEROPRICING", + "message": "ZeroPricing", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_INBOX_INBOXQUERYCONFIGURATION", + "message": "InboxQueryConfiguration", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_INBOX_V_INBOX_V2", + "message": "Inbox-v2", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_MASTER_ACCESSCONTROL_ACTIONS_TEST", + "message": "ACCESSCONTROL-ACTIONS-TEST", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_MASTER_ACCESSCONTROL_ROLEACTION", + "message": "Accesscontrol-roleaction", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_MASTER_ACCESSCONTROL_ROLEACTIONS", + "message": "ACCESSCONTROL-ROLEACTIONS", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_MASTER_ACCESSCONTROL_ROLES", + "message": "ACCESSCONTROL-ROLES", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_MASTER_BILLINGSERVICE", + "message": "BillingService", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_MASTER_COMMON-MASTERS", + "message": "common-masters", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_MASTER_COMMON_MASTER", + "message": "common masters", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_MASTER_COMMON_MASTERS", + "message": "Common-masters", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_MASTER_DATASECURIT", + "message": "Datasecurit", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_MASTER_DATASECURITY", + "message": "DataSecurity", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_MASTER_EGF_MASTER", + "message": "EGF Master", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_MASTER_EGOV_HRM", + "message": "Egov-hrm", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_MASTER_EGOV_HRMS", + "message": "egov-hrms", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_MASTER_FSM", + "message": "FSM", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_MASTER_INBOX", + "message": "INBOX", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_MASTER_INBOX_V", + "message": "Inbox-v", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_MASTER_PQM", + "message": "PQM", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_MASTER_PROPERTYTAX", + "message": "PropertyTax", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_MASTER_PSPCL_INTEGRATION", + "message": "PSPCL Integration", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_MASTER_RAINMAKER_PGR", + "message": "Citizen Complaint Resolution System", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_MASTER_TENANT", + "message": "Tenant", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_MASTER_TRADELICENSE", + "message": "Tradelicense", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_MASTER_WORKFLO", + "message": "Workflo", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_MASTER_WORKFLOW", + "message": "Workflow", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_MASTER_WS_SERVICES_CALCULATION", + "message": "WS Service Calculation", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_MASTER_WS_SERVICES_MASTERS", + "message": "WS Services Masters", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_PQM_BENCHMARKRULE", + "message": "Benchmark Rule", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_PQM_MATERIAL", + "message": "Material", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_PQM_PARAMETER", + "message": "Parameter", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_PQM_PLANT", + "message": "Plant", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_PQM_PLANTCONFIG", + "message": "Plant Configuration", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_PQM_PLANTTYPE", + "message": "Plant Type", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_PQM_PROCESS", + "message": "Process", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_PQM_PROCESSTYPE", + "message": "Process Type", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_PQM_QUALITYCRITERIA", + "message": "Quality Criteria", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_PQM_QUALITYTESTLAB", + "message": "Quality Test Labs", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_PQM_SOURCETYPE", + "message": "Source Type", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_PQM_STAGE", + "message": "Stage", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_PQM_TESTSTANDARD", + "message": "Test Standard", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_PQM_UNIT", + "message": "Unit", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_PQM_WASTETYPE", + "message": "Waste Type", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_PROPERTYTAX_CANCERCESS", + "message": "Cancercess", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_PROPERTYTAX_CHARGESLABS", + "message": "Chargeslabs", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_PROPERTYTAX_COMMONFIELDSCONFIG", + "message": "Commonfieldsconfig", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_PROPERTYTAX_CONSTRUCTIONSUBTYPE", + "message": "Constructionsubtype", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_PROPERTYTAX_CONSTRUCTIONTYPE", + "message": "ConstructionType", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_PROPERTYTAX_DOCUMENTS", + "message": "Documents", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_PROPERTYTAX_DUESONPTMUTATION", + "message": "Duesonptmutation", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_PROPERTYTAX_FIRECESS", + "message": "Firecess", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_PROPERTYTAX_FLOOR", + "message": "Floor", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_PROPERTYTAX_INTEREST", + "message": "Interest", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_PROPERTYTAX_MAPCONFIG", + "message": "Mapconfig", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_PROPERTYTAX_MUTATIONDOCUMENTS", + "message": "Mutationdocuments", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_PROPERTYTAX_MUTATIONPENALTY", + "message": "Mutationpenalty", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_PROPERTYTAX_MUTATIONREASON", + "message": "Mutationreason", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_PROPERTYTAX_MUTATIONREBATE", + "message": "Mutationrebate", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_PROPERTYTAX_OCCUPANCYTYPE", + "message": "Occupancytype", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_PROPERTYTAX_OWNERSHIPCATEGORY", + "message": "Ownershipcategory", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_PROPERTYTAX_OWNERTYPE", + "message": "Ownertype", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_PROPERTYTAX_OWNERTYPEDOCUMENT", + "message": "Ownertypedocument", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_PROPERTYTAX_PENALTY", + "message": "Penalty", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_PROPERTYTAX_PROPERTYCONFIGURATION", + "message": "Propertyconfiguration", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_PROPERTYTAX_PROPERTYSUBTYPE", + "message": "Propertysubtype", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_PROPERTYTAX_PROPERTYTYPE", + "message": "PropertyType", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_PROPERTYTAX_PTAPPLICATION", + "message": "Ptapplication", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_PROPERTYTAX_PTWORKFLOW", + "message": "Ptworkflow", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_PROPERTYTAX_REASONFORTRANSFER", + "message": "Reasonfortransfer", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_PROPERTYTAX_REBATE", + "message": "Rebate", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_PROPERTYTAX_RENTALDETAILS", + "message": "Rentaldetails", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_PROPERTYTAX_SUBOWNERSHIPCATEGORY", + "message": "Subownershipcategory", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_PROPERTYTAX_UPDATENUMBER", + "message": "Updatenumber", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_PROPERTYTAX_USAGECATEGORY", + "message": "Usagecategory", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_PROPERTYTAX_USAGECATEGORYDETAIL", + "message": "Usagecategorydetail", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_PROPERTYTAX_USAGECATEGORYMAJOR", + "message": "Usagecategorymajor", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_PROPERTYTAX_USAGECATEGORYMINOR", + "message": "Usagecategoryminor", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_PROPERTYTAX_USAGECATEGORYSUBMINOR", + "message": "Usagecategorysubminor", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_RAINMAKER_PGR_COMPLAINCLOSINGTIME", + "message": "ComplainClosingTime", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_RAINMAKER_PGR_PRIORITYLEVEL", + "message": "Prioritylevel", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_RAINMAKER_PGR_SERVICEDEFS", + "message": "ServiceDefs", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_RAINMAKER_PGR_UICONSTANTS", + "message": "UIConstants", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_SEARCH_VALIDATION_FIELD_VALUE_PAIR", + "message": "Please enter both field and value", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_TENANT_ASSESSMENTCONFIG", + "message": "Assessmentconfig", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_TENANT_CITYMODULE", + "message": "Citymodule", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_TENANT_FOOTER", + "message": "Footer", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_TENANT_NATIONALINFO", + "message": "Nationalinfo", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_TENANT_REASSESSMENTCONFIG", + "message": "Reassessmentconfig", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_TENANT_TENANTINFO", + "message": "Tenantinfo", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_TENANT_TENANTS", + "message": "Tenant Master", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_TRADELICENSE_ACCESSORIESCATEGORY", + "message": "Accessoriescategory", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_TRADELICENSE_APPLICATIONTYPE", + "message": "Applicationtype", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_TRADELICENSE_CALCULATIONTYPE", + "message": "Calculationtype", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_TRADELICENSE_COMMONFIELDSCONFIG", + "message": "CommonFieldsConfig", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_TRADELICENSE_DOCUMENTOBJ", + "message": "Documentobj", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_TRADELICENSE_DOCUMENTS", + "message": "Documents", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_TRADELICENSE_PENALTY", + "message": "Penalty", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_TRADELICENSE_REBATE", + "message": "Rebate", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_TRADELICENSE_REMINDERPERIODS", + "message": "Reminderperiods", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_TRADELICENSE_TRADERENEWAL", + "message": "Traderenewal", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_TRADELICENSE_TRADETYPE", + "message": "Tradetype", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_TRADE_FIELDS", + "message": "Fields", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_WORKFLOW_AUTOESCALATION", + "message": "AutoEscalation", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_WORKFLOW_AUTOESCALATIONSTATESTOIGNORE", + "message": "AutoEscalationStatesToIgnore", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_WORKFLOW_BUSINESSSERVICE", + "message": "BusinessService", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_WORKFLOW_BUSINESSSERVICECONFIG", + "message": "BusinessServiceConfig", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_WORKFLOW_BUSINESSSERVICEMASTERCONFIG", + "message": "BusinessServiceMasterConfig", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_WORKFLO_WORKFLOW", + "message": "Workflow", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_WS-SERVICES-MASTERS_CONNECTIONTYPE", + "message": "connectionType", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_WS-SERVICES_MASTERS_WSSERVICEROLES", + "message": "WSServiceRoles", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_WS_SERVICES_CALCULATION_CALCULATIONATTRIBUTE", + "message": "CalculationAttribute", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_WS_SERVICES_CALCULATION_INTEREST", + "message": "Interest", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_WS_SERVICES_CALCULATION_PENALTY", + "message": "Penalty", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_WS_SERVICES_CALCULATION_REBATE", + "message": "Rebate", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_WS_SERVICES_CALCULATION_WATERCESS", + "message": "WaterCess", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_WS_SERVICES_CALCULATION_WCBILLINGSLAB", + "message": "WCBillingSlab", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_WS_SERVICES_CALCULATION_WCBILLINGSLABMETERED", + "message": "WCBillingSlabMetered", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_WS_SERVICES_MASTERS_CONNECTIONTYPE", + "message": "connectionType", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MDMS_WS_SERVICES_MASTERS_WSSERVICEROLES", + "message": "WSServiceRoles", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_MODULE_NAME", + "message": "Module Name", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_SEARCH_MDMS", + "message": "Manage Master data", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_SHOW_JSON", + "message": "Show JSON", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_SUCCESS_DIS_MDMS_MSG", + "message": "Data disabled successfully with id", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_SUCCESS_ENA_MDMS_MSG", + "message": "Data enabled successfully with id", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_SUCCESS_MDMS_MSG", + "message": "Success : Data added Successfully with Id", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_SUCCESS_UPD_MDMS_MSG", + "message": "Data updated successfully with id", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_UNIQUE_IDENTIFIER", + "message": "Unique Identifier", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WBH_VIEW_MDMS", + "message": "View Master Data", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WORKBENCH_ACTIONS", + "message": "Actions", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WORKBENCH_HOME", + "message": "Workbench", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WORKBENCH_LABEL_SELECT", + "message": "Select", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WORKBENCH_LABEL_VIEW_MORE", + "message": "View more", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WORKFLOW_AUTOESCALATIONSTATESTOIGNORE_BUSINESSSERVICE", + "message": "businessService", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WORKFLOW_AUTOESCALATIONSTATESTOIGNORE_MODULE", + "message": "module", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WORKFLOW_AUTOESCALATIONSTATESTOIGNORE_STATE", + "message": "state", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WORKFLOW_AUTOESCALATION_ACTION", + "message": "action", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WORKFLOW_AUTOESCALATION_ACTIVE", + "message": "active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WORKFLOW_AUTOESCALATION_BUSINESSSERVICE", + "message": "businessService", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WORKFLOW_AUTOESCALATION_BUSINESSSLA", + "message": "businessSLA", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WORKFLOW_AUTOESCALATION_MODULE", + "message": "module", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WORKFLOW_AUTOESCALATION_STATE", + "message": "state", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WORKFLOW_AUTOESCALATION_STATESLA", + "message": "stateSLA", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WORKFLOW_AUTOESCALATION_TOPIC", + "message": "topic", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WORKFLOW_BUSINESSSERVICECONFIG_CODE", + "message": "code", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WORKFLOW_BUSINESSSERVICECONFIG_ISSTATELEVEL", + "message": "isStateLevel", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WORKFLOW_BUSINESSSERVICEMASTERCONFIG_ACTIVE", + "message": "active", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WORKFLOW_BUSINESSSERVICEMASTERCONFIG_BUSINESSSERVICE", + "message": "businessService", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WORKFLOW_BUSINESSSERVICEMASTERCONFIG_ISSTATELEVEL", + "message": "isStatelevel", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WORKFLOW_BUSINESSSERVICE_ACTION", + "message": "action", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WORKFLOW_BUSINESSSERVICE_ACTIONS", + "message": "actions", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WORKFLOW_BUSINESSSERVICE_APPLICABLEACTIONS", + "message": "applicableActions", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WORKFLOW_BUSINESSSERVICE_APPLICABLENEXTSTATES", + "message": "applicableNextStates", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WORKFLOW_BUSINESSSERVICE_BUSINESSSERVICE", + "message": "businessService", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WORKFLOW_BUSINESSSERVICE_BUSINESSSERVICEID", + "message": "businessServiceId", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WORKFLOW_BUSINESSSERVICE_DOCUPLOADREQUIRED", + "message": "docUploadRequired", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WORKFLOW_BUSINESSSERVICE_GETURI", + "message": "getUri", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WORKFLOW_BUSINESSSERVICE_ISSTARTSTATE", + "message": "isStartState", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WORKFLOW_BUSINESSSERVICE_ISTERMINATESTATE", + "message": "isTerminateState", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WORKFLOW_BUSINESSSERVICE_NEXTSTATEID", + "message": "nextStateId", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WORKFLOW_BUSINESSSERVICE_POSTURI", + "message": "postUri", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WORKFLOW_BUSINESSSERVICE_ROLES", + "message": "roles", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WORKFLOW_BUSINESSSERVICE_STATE", + "message": "state", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WORKFLOW_BUSINESSSERVICE_STATEID", + "message": "stateId", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WORKFLOW_BUSINESSSERVICE_STATES", + "message": "states", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WORKFLOW_BUSINESSSERVICE_TENANTID", + "message": "tenantId", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WORKFLOW_BUSINESSSERVICE_UPDATEALLOWED", + "message": "UpdateAllowed", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WORKFLOW_BUSINESSSERVICE_UUID", + "message": "uuid", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WORKS_ACTIONS", + "message": "Take Action", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WS_SERVICES_CALCULATION_PENALTY_AMOUNT", + "message": "Amount", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WS_SERVICES_CALCULATION_PENALTY_APPLICABLEAFTERDAYS", + "message": "Applicable After Days", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WS_SERVICES_CALCULATION_PENALTY_FLATAMOUNT", + "message": "Flat Amount", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WS_SERVICES_CALCULATION_PENALTY_FROMFY", + "message": "From FY", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WS_SERVICES_CALCULATION_PENALTY_MINAMOUNT", + "message": "Minimum Amount", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WS_SERVICES_CALCULATION_PENALTY_RATE", + "message": "Rate", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WS_SERVICES_CALCULATION_PENALTY_STARTINGDAY", + "message": "Starting Day", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WS_SERVICES_CALCULATION_PENALTY_SUBTYPE", + "message": "Sub Type", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WS_SERVICES_CALCULATION_PENALTY_TYPE", + "message": "Type", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WS_SERVICES_CALCULATION_WCBILLINGSLAB_", + "message": "NA", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WS_SERVICES_CALCULATION_WCBILLINGSLAB_BUILDINGTYPE", + "message": "Building Type", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WS_SERVICES_CALCULATION_WCBILLINGSLAB_CALCULATIONATTRIBUTE", + "message": "Calculation Attribute", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WS_SERVICES_CALCULATION_WCBILLINGSLAB_CHARGE", + "message": "Rate", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WS_SERVICES_CALCULATION_WCBILLINGSLAB_COMMERCIAL", + "message": "Commercial", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WS_SERVICES_CALCULATION_WCBILLINGSLAB_COMMERCIAL_AND_GOVERNMENT", + "message": "Commercial and Government", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WS_SERVICES_CALCULATION_WCBILLINGSLAB_CONNECTIONTYPE", + "message": "Connection Type", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WS_SERVICES_CALCULATION_WCBILLINGSLAB_FLAT", + "message": "Flat", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WS_SERVICES_CALCULATION_WCBILLINGSLAB_FROM", + "message": "From", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WS_SERVICES_CALCULATION_WCBILLINGSLAB_GOVERNMENT", + "message": "Government", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WS_SERVICES_CALCULATION_WCBILLINGSLAB_ID", + "message": "ID", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WS_SERVICES_CALCULATION_WCBILLINGSLAB_METERED", + "message": "Metered", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WS_SERVICES_CALCULATION_WCBILLINGSLAB_MINIMUMCHARGE", + "message": "Minimum Charge", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WS_SERVICES_CALCULATION_WCBILLINGSLAB_MIXED", + "message": "Mixed", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WS_SERVICES_CALCULATION_WCBILLINGSLAB_NONMETERED", + "message": "Non Metered", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WS_SERVICES_CALCULATION_WCBILLINGSLAB_NONRESIDENTIAL", + "message": "Non Residential", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WS_SERVICES_CALCULATION_WCBILLINGSLAB_NON_METERED", + "message": "Non Metered", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WS_SERVICES_CALCULATION_WCBILLINGSLAB_NON_RESIDENTIAL", + "message": "Non Residential", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WS_SERVICES_CALCULATION_WCBILLINGSLAB_NO__OF_TAPS", + "message": "No. of taps", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WS_SERVICES_CALCULATION_WCBILLINGSLAB_PARTLY_COMMERCIAL", + "message": "Partly Commercial", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WS_SERVICES_CALCULATION_WCBILLINGSLAB_PIPE_SIZE", + "message": "Pipe Size", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WS_SERVICES_CALCULATION_WCBILLINGSLAB_PUBLICSECTOR", + "message": "Public Sector", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WS_SERVICES_CALCULATION_WCBILLINGSLAB_RESIDENTIAL", + "message": "Residential", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WS_SERVICES_CALCULATION_WCBILLINGSLAB_SLABS", + "message": "Slabs", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WS_SERVICES_CALCULATION_WCBILLINGSLAB_TO", + "message": "To", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WS_SERVICES_CALCULATION_WCBILLINGSLAB_WATER_CONSUMPTION", + "message": "Water Consumption", + "module": "rainmaker-workbench", + "locale": "en_IN" + }, + { + "code": "WS_SERVICES_CALCULATION_WS_SERVICES_CALCULATION_SLABS", + "message": "Slab", + "module": "rainmaker-workbench", + "locale": "en_IN" + } +] \ No newline at end of file diff --git a/utilities/default-data-handler/src/main/resources/localisations/hi_IN/egov-hrms.json b/utilities/default-data-handler/src/main/resources/localisations-dev/hi_IN/egov-hrms.json similarity index 100% rename from utilities/default-data-handler/src/main/resources/localisations/hi_IN/egov-hrms.json rename to utilities/default-data-handler/src/main/resources/localisations-dev/hi_IN/egov-hrms.json diff --git a/utilities/default-data-handler/src/main/resources/localisations/hi_IN/egov-user.json b/utilities/default-data-handler/src/main/resources/localisations-dev/hi_IN/egov-user.json similarity index 100% rename from utilities/default-data-handler/src/main/resources/localisations/hi_IN/egov-user.json rename to utilities/default-data-handler/src/main/resources/localisations-dev/hi_IN/egov-user.json diff --git a/utilities/default-data-handler/src/main/resources/localisations/hi_IN/rainmaker-common.json b/utilities/default-data-handler/src/main/resources/localisations-dev/hi_IN/rainmaker-common.json similarity index 100% rename from utilities/default-data-handler/src/main/resources/localisations/hi_IN/rainmaker-common.json rename to utilities/default-data-handler/src/main/resources/localisations-dev/hi_IN/rainmaker-common.json diff --git a/utilities/default-data-handler/src/main/resources/localisations/hi_IN/rainmaker-hr.json b/utilities/default-data-handler/src/main/resources/localisations-dev/hi_IN/rainmaker-hr.json similarity index 100% rename from utilities/default-data-handler/src/main/resources/localisations/hi_IN/rainmaker-hr.json rename to utilities/default-data-handler/src/main/resources/localisations-dev/hi_IN/rainmaker-hr.json diff --git a/utilities/default-data-handler/src/main/resources/localisations/hi_IN/rainmaker-pgr.json b/utilities/default-data-handler/src/main/resources/localisations-dev/hi_IN/rainmaker-pgr.json similarity index 100% rename from utilities/default-data-handler/src/main/resources/localisations/hi_IN/rainmaker-pgr.json rename to utilities/default-data-handler/src/main/resources/localisations-dev/hi_IN/rainmaker-pgr.json diff --git a/utilities/default-data-handler/src/main/resources/localisations/hi_IN/rainmaker-workbench.json b/utilities/default-data-handler/src/main/resources/localisations-dev/hi_IN/rainmaker-workbench.json similarity index 100% rename from utilities/default-data-handler/src/main/resources/localisations/hi_IN/rainmaker-workbench.json rename to utilities/default-data-handler/src/main/resources/localisations-dev/hi_IN/rainmaker-workbench.json diff --git a/utilities/default-data-handler/src/main/resources/localisations-dev/localizations (default).xlsx b/utilities/default-data-handler/src/main/resources/localisations-dev/localizations (default).xlsx new file mode 100644 index 0000000000000000000000000000000000000000..fa18c947063766f78bba1e5be0b4705b1e0cd829 GIT binary patch literal 576992 zcmd43c|6tI_dk9(p%S_cl-zW0Y0xpCpPed(>_bqR|$J(P-m=#C(~{P7nK?9@a*CUG3d1mA!U2-;b~~ys0|j zaQomyeV6;jx(c^c^EzH{TvH*x{`v29HJM!#4*I#|25dOsGh*DHt6LYh?`>$ESG{nO zQjVT<;|A90(>v>a88vC=p?ObY3)jXyHV?D0S*dC-@n(z2>XqdoWn13TPCs>4on=4r z^YM*u6dVqp@wBl`%CfpT)_O2};jL}Xqp#J!@0yc4(|^?V%UX9_J7^+j*(bG>U+<bBF4AGhQ%H-O%|W-n{@HRLB{SnSw>QM_3UXLPD`16i)>!@j5EBYFH{xX z*KyCoXv5~dr{+QP+OED-Hdo!TVYTEVy9_&h(TOK%r}7;}X|L|JeRbx3deH0g1>1}~ z<)ibACY0+5#c3%nlrpdxHTK$F*(Zyue(^P|(JGkLT0eiEuufWhk@=!UJz1QX?KAHS z_2o?3UKFd{ZFo{;c)F&yQd6GesN0_U8ar7x9}UlvWSkM}l=UghcrX;y|GB6sp}T0o zz=-vvpnQp6^XxqchQ2V3CJz3z-evFXuA&V8n;urSu3UADZoAKlH{WA+t{!@5aA2M6q} zZI3-{(sEvLeNC&SaecwS;^es1HRltq$2$D9DP>)AHLJu^?z!ct)`!RRm*x)Nkc&AK zIDL=VD7%5*9?x1(<3l4OGG69|*C;?!ZxI?z79ir~tb#z<!F(JJXkl(8qnuF8DO}dd%RI)U$C1rPMAa zZ2cU6@nYevb(^;An>TdnTE>%)`X*IYt*b208%T#3<-3V)F*##vJ=^vBucB^~yax=g zD^<_Dz3r@@hePkJk$v_rPdP6CcK#Xj&S+(&u;l5-eH8CJkKVG?VBAf{wp)y4(VTnH z%#l~)CSR4@{P>L8_K{yz6%G%Y4;+ZS>;8Lh@cd1(M}q2HE{Zo>1l`hEx3IWQGGxJS zU(4eYUw>0sX_bEOqZk>$sgq~>t9R0A;gQp6lMsLqI(G+qdk=RN><=}F;jx$cr#-6n zzUe8_78$co;y2}4%JWXzZCWwq^zPqYep{@2`k=&-OXv3;ew#Iz#VOhI?~M z21|w>4iD%+d8@T=Z?(K%?^i>=zD^gv@54jAUtNY@Hw+q<4A;jG^;`Q5CCmE_yj{>! z(x{>{{K;kbeU$akTNmG+g81PML!F_oQaZyy@k4KKm%NxY-0{SExG%{1^Ke7S(Cc>J zp{SCf-g5cjPxAe(I>Q;oR%MWGt z3_tlWcw$I$_@m!YuI=!1Yrn6z<%gSshQGC15B0^8VUkP z6*LTYC;JWFw;ujvJ@mC?pkv58qU8OadY!^y`Qazuhr1gdeD?b?=vU@9Tu|Tc*VE8G zT%|KG9IP@^&%o#R4R+1#XB>v(dSAY5Z_ux^tLpER+MUv~_uCMwx^It0L;cCGCG}rF zSfu?Nl5@hZH_UeJ(W<^Z`bXd2m{WJ6vj4V@)!m-m=Rc1h&MIW>-?9Bt=GH|}X14d7wTpH9a9-g$-^wQiu_KD@8fzql zOdj4_;&sl2mAR!`&)ATj@oMi#J+GX)IkVN-QK3S@;O~-pUia&k%vNGYtrdoUpP=XU zw$5yJw)lnZMb4APx^_Q!vi|0W+~dn`WM^8?VQX7pW;-LbH@_T zo;RGSFhyd7L6NsrXn$X-m8W`Y#$oOFT4!}QBYQ*n)sl>r98OJgcucyea7J9;x2CVm zqUI?h%|cU7D5?)iH#a%fes!#UXwsd^-e9kONjsDGt&TN^ov|{46WyO}ah0Q6%2|}T za?ppFnJ>#Uwrji0;m*Mu*ZW!BTmqU*(3i3DzA+s*Rw&yICVuZ|1SV#0AgFUe>Kw6Y zbz(I#SAO?l0^wSdW!9#w>#`6ijzd%H5+H)p=HSyl(zfQD%~)AoT<`FQBLL-${Nnw^ zsS5@=)|f0?kej6A>zyb2sZjP4HtRgI(4@1^vvDWz35@NUGFNgZh|g?WYjWXzkL*H6 zCEST?0F+DYM_v0Q1~_+cC!o3yj`Ies=-mWu?ZCE@`cl6a&^8@S?aYp`t;g-^-ehIfj*LO83)}buecwBJn1vo{ zh_NThy3TQ`fvr7GAbu9Wj;M@V3hXN#>>?a+Hvq47zHAgWM+QOoAv3E)82~Kx)dZh8 z?`HcAPjw(mC&)m&y6gY22H)2O_05GCEdDyT{h^8HVA8jGFq3C(MpykSDU;U=GjDbG zrDl{o8_M6Je*O5f2*})5d(|`GSdkulEYSd$8_^t<`hv&zxgG8E4B zVxRH@wi+~H`&XwsPh|hg`-2*&L&G^W3*>zt;xMa~ ze|Pd!zm#^kc(`L9mvnv5s7K#pvSs^+%G=Li1!gb%699DR?nkG)j_{YLWI^OjF*!kO!6kq*=s`yaB z?W(monh&p#w}z1B9caD>c<8>v&;iXLbU^bWJj(wC#fx5ic*1##Fgu55$nL_I$ycw~ z&+n2r(y-_($XgxvN|nO24~E-Hu75mSOz+&ctsua^sI^tO|B%VP8n3f9Wqr;^Ub3J`nc*@yJd+)}%R&#EPltq0EE#A{(9#3LFyV7YEhMsdenTQ#G>xSD<3b|I<-CEYvPR;^W^(?-f9oCR`>I%e_=WQL~hyM zmlmJTO6@lU->byx6uW)Sh`qh2snA0?_d!tc)y{%9^$+A57VVLF`1-!9)#9jv)@2P1 zy_R39TTi&e7kp^#^wm&FsFvtD-@a==xo=|E?L9Rw6}r6iW9w_)PVJ}FZ~7AQ?u1KX z0sCENhK9<8>K$D|`N?nUAIUeY+9UJ$b*P)wny5wZ>BkJKRFZUxBCPJ^bd75deQlc$ zAi1LPp5rmodCgUg&TkqS$<=+9<3dhbt>1Pt(j#k)DcxdY)YpO;(zA*#JvgYeU3%85 z8Mm39nlAJWR0j7{xox(5&>m(Q+jVy#z}76*i!E1Q_jW*e&E1)nvB?YS zLvG|-HNV_tVTJ1|#&xOQp12#Z!`AJw{znjit!{5FEtFpMKx}Vhm*OI*N$y7G@yb(Q zmt0gRs(Em5?)HppGBIhFN(4zvhKZ&;8?yhPUL+q>J@0&j5-v-#NFNaXeN^S6QK`3u)bX z-Oeq>_e8nQ>G#cAMc=LNz3ut6=lKOtPm3ea^Q~${;~pXuS+{e%py$$0LOLE}2OsopQARyJC<`A{`Z}yA zHdkmw!o~WJ0QH}z$<@(JK0){@*Qh+lxzyy=1mQb){7L0r@7CgI{T_u^M{nosLo^BL z!NKyfD8{+ui-UFY_Cz0?OT7kpVJ))0!98!>ezHcyRMbWRGoM=DiO={3&A6w^ewLf4^C)23eNTu>;V*< zs6LFe72m(*)!>7Y@Ijs@oCfg-en*1}dh%WX$_UHPe&6kjOc2%1=*3O=g2$%mbz%v! zlj#Qr^#sh>EaCbR$K|FD0&kXl)DZGGa}a0ySGR6_&=(!Z_95%$K_40onDAy>&Bc(f zwY1ryLbE#~wI|WA;A|Y}kGx?^jnTzI6Hd2*DLLNdUihbYxh29jd zEfrBn!X?kYHwwXZpmI$B4Y?wza}rk!PVF!bS4k-%#S_GVVh{P+iS_>S9EA{ijqb2S zGOXwcLMwK5+qqRpMB7MoHMlDFdAN=FdHtK6I?}7U{71b2!-B#L2mNhn0lzL7xT0Y@ z(qODuzl%nMPrk)*7137i8)^>gj$0KPy znfC%lNuR&eLIXkT%euppP2$S#{6Nwh3K{(;PbDx16gUVyBY|7iDwqnfJc7u43uVR1B+lNKXS zD?LkK*8c;dADR#NjeFG5r_-UMcL`*M+~r$xm&@pvRmD=H>EkPwue~pXar)m7IdUq? z7%0+avAjUrCjLjFjEibwjvX|`djX0qrA<0}909w)GCyjn?jg6uBy%QGT$=JwetzK~yT?rrc#)Ndt{Z>gr-x?Hz%MqLd}Ks*xl=7{n8~DuimT zKOnY#v!s!l*i5-&F)?&(?F__4>lDC}?kH(QtW#-Z0>IKm72OxI`I&5%qa^JEIkHT5 zn&~QX{>0Er7m|6(k)zcKP)QhxNW2lEXa}Y4zbWcedV$I&pO*irdLnPK{5`3>`NtyH z{)gwNEMXk^l^hOR$$u!)ml3-f4M>s~Mks{hiL1$hjHdrUl$^N*G_v;t9QjK{R%x7o z-~SzvC|rri>Pez-=UZ|PWpoEsv1j@+tF~Q9f=ln4y>6@yn(V!RnJuNl`yOwERqacm zhLRUeqD6PSyG_92?HCL8TE$9h`2&5yaEfbK9o141lRTdHzJt6JY>1}fXylw?El9it;~xT%wbcuD5h+b zoGx9n=AfKuhaC%w^aVr!`dtYkk_iEF4of8&H4G&MtOhrZ_%}pr#l+arVOYI&6&9<} zm7MpBn6yJ=Bvq7lTtM`LQ9O|wPgm_}{6nfJFYK_KLjc`jnpn(9dQjLLtRa-1UVH|k1>*DfL_di2e^W%|je=N0+%*{5h(V#i3yqGTzjWpnWj-2a)yVp#2X-`prP9n=*PY39#}qmt%FB0)O*Xw(mM zojfa`UQo1d_y!@a9w4rF0wjWylX&JsQI$}!%4}f1szSjpV&09kg?9pm9#=m4^ce#h zETL01{3UlKlz6y#6zs!bjgv_hlT0`u_im}A^Rxwvv6A{Q=r6 zH%%=6Bz?-I4Tg|*RbQLCN`-(AmcXqim*JNg7r8!wFAs081@#X*xxn1|fym0k&Ga{L zjQU1*!5dv<+0g{_jOoLEy$dga_Cu_@d)Q`?*C|#@(iTUfZ9DV52-$%U{wxAw)B4vut-Q zzR3JrBG-Pje}8vN?p+!EovK)VG<{0PMnm5I9f-W2RBo>FaEptfzl^3Y#td_Ts~Ty- z1#ne!NycS)lsk(?`C!@S6Mm+t0EaJ%dBUZpO+YTBaN=6HfN=cisbj$lfRC0mS2X!)cP26dhH;}R)#Ot(9zdnen z#Tq-wF0QIO`XmM(X-z7@9psuYEe_rZkrK#j2wpD{3DVpLuabyKaHJJpI1y{hUn|P9 zk*xT-XU#oZ9urDM-1(nv`tn;#=|nAm@fKYzzo^>E8{8eNNe4|in%+5}JnCqx9yALq zaTaBCOr3j`vl~dwhav7FQjLLFb@r6b#O%^idBE3ZR!G%mxp7-3Rok95=PKu7ZvF=f zVF0-1@fE`2fg7k6!e1+7?ge=HMva)}&fn`=sER?nrDyT*#=j#jJMcRYrph(EFyZJj z)(N2NhPjTh9>Wn{xAH2vYndF3rD-h046vRb0dObBBj%sj)E+i=MFyV)C~|+}JMt3x zLtiW$B^ymvI6j20p2>N$)FDn>1Cr6o$6>hVpvo( zeIV}}ia$SG)@wj(O9sMnod3NDDuQ06tEsUN_^@CGXrg$h%_taQeg)VmrNu3|yg)HL z9K>ZC_i{JCOyEvlUqodHm03SvNWqM!r>QQI8k!$Q1Lp0YF$=D;+!XzDYN2}bA27t1 z*rs3^(H@p%CdfX*?Zgks02?@j6I@>BdeMNx`u76LPnc06GZ?W2Ep1U4vl{&x=fYY^ zID=A7@0bYN!Iu$RxaPX-?@2_CCHVl^DRCBYYj9+Pp;&yiKNhJgna>SD_L zvi#NWGu5i^bA!c>k*(M9qu>P!W#$Zo1fTREZsX@ylgdF}t(^a6PZEa8>S8vgmgMN( z7n)>DavWT*iVj8}a2!3|i$-rLUGLu55x>Y>4qMBQH42T1rZ2k}AWXHy%j((9 zLk$#DqUj6 zFpyS0sw^XBp}(eTh1~4klxO^f0YJ$c1rNY&Ferbl{s%MuFGc(=0F`RMjU$@t69Pi{ zNkJ09>N6733OZR+N~k{m0-IzI@v-g+y7Vdh1fXMG9>s*U6^?v)mN%Z5qDsELi{ zrthDN;CFt61qitNaQT+mJE@hI~ z3<>@NQRBj4Quf2neu&Um1B%$Sk=`KSkuW23(#w~)X9s1Zx$g#QUwM@rWUGG(DO;z- zfyMlVIaZ=!vx7=B7&on!G!7>E4@4AgaFn13zty*y#I0q3Sj5f%PyNdRVChmsruiCP zqxp+DTy#LC&%lZ&ztVROSQ6LwKj*`|ECGuA&qSLsQj*jYMbTkTqUpbT(Z;uwPJmVL zEO*JAtmQw--R7v~dK=UGSd|4^)-h8{4{EAb%FS*(zZJ_3u-=MF+1$i-Y55wzW6j#b zklzo8scx1u0J-3+p^EL^!P?53gQgxMFo(Y^We)H8;U zw|3BG-U~=+p{>7ghM$z1!M=WDXJkP;MfP~6Z=f3gXaRlcb(u2iiON~zDSYt*od+i_ zo7JhGjbW2MGf)?k#Ln>@B@OH(?==b;MAJ9j4_JoUWiH;jS~^u75HhS_VvtpQeLVlO z_C5ZhhDD(CVR$@$Z32NZa;Nn^=bwQ@tBPF$?>ia<3}w$J8R})#b}Ri2)zS|AKB~yS z1VsZo2pR=WK^jzAddr5WGooisaH-|;;<8N_*@#NH%VXRAry^I5fck$&g!MTXg`;gH zjq)53h2aJpu=@WW(NMGkZ_|T}h#hiIhA-rzZ^=cM(P6lw=@StHVDUi&`}&yl_zh4F zO5&?XWU|WF=>44(?t5^pok`-!oEF_f-3v&fz3-bl9-@*CO7&zdn$Nf|^@ZS}#Wr{q z(^AUgfQqHu&>5_=R|Q=Fw+<-!9pOKJ0;K^=8ss+QlW8in}L6;3^V@0KCF7&>bWinzX97%a3m#@JfjKU*cnoc4C zY&}WJuyU8w^d!7w8>oR~0=>&7eG3Uh6>Y+w`QSYf03#*jKontbimLAU>IbCAfkI3X z!NbXB@XJf?=|5&ydl=YQ@wWFkRa`%iM7#r2e&GSNTJc~$i5O7SSoc2@-2)f3f?f;d zQoZIb;aD8;2q8$x)_eRRV5&jw-w@%?@c1+ z)N!x4P=Ob3DSZLD1|xXv4S!BjMmJRz;|~G{d*FBn3>xR2aPvLde1nZDI20Cfw+Yr< z-_(UpkHD%6_Q!#mSru}Z^DgCM%^z4z|K+z!8U??d=8AUnV8s@ZvMG}@1=Jjy$30KJ z8Yq@!Bgp_E|Exs$)~bJ#`cP#R{_G0P>;2x4({F8Noy2hMAO;t3^^S#{BvP2 z2S^>A)BO{!@jF&&c%t0j_lDm}0Z@z|#ius8?BO@tz}urkQ-km&l);~&-K}fyF8&q< zo3%&7D~?ZZOkKNMhZaBdz_GN%kn(!8`f_mxtMA}D7pM!i4#pic%rpl1v(%6SC4}=c z5Uo^zhL#A~gf`$f;e-gzm#V`oZ}`klV0e`f@2ib&4Y0#*Fdfqq-DJ0vg1ZG2~Qq3C?PC;w>nm#`UOJ^Jc4+D^1Q%BU)*b zqUrzeS2N0oH2JSrNHGNdYq!{uP|)Y~H(Z2)5xR4I&~*paNdRJ}XeQ)NFNRFS>Lzjs z9H!f88gZ0BHg?#SaCQ&IehTa=}f`3Q_Nv$r{p(f8iRfgPml+>l0|05^4 zGxB*4@>{@)Xu8Uz@6;(9udb##S-R~M3I1uC!&WI8r3cd;zRh%?sd|-!eQl5M2KU-W zx9$iO$!e5fbc=QbE6?qQzk0a;Y=pQ?*%Z?@iN^7k#%&VtFC(UjS+!G2XMw;@ zfltPq#xwjyTx?Pn_#1kdr7VCKw}k-{p=?@Q)Zs-l8w9jX{iIif)vWnt!loUfk>2zm z@V<1uVNrlR{w36Q;vA+;X?xvFQ=0gz(v2=O`9)VZy1>^PAJ=BlqzeO*UeUC7Zw3Fw zp5E99F}&#dMM6Fw@8SA2xcYmap26IN#{^tAul$Z1){MCcmtk)#lmYCvtfru|4=n?%R+ zAjAWn1EqUbCKE#<{)(m#e}FN?^wtzpEF#i{Ld7GJNFqQ2i&#GTh-8fq11WCPN^Y+~ z+~LL6=iOS0BnTdPcZ)`LiW*~R<#@VvgaZ80?#ynDNiB(AMdS$7K4l2k2XTi zUUYM8mOrqdgC+WBhQEZ1O$Z3ymERX(nfNf|>H(3gCJASdoohrWGGMmrhjTEA!Gowj z%7mYGh+g-mcXaO|PuwO!vuGeq0n>9|R|8qy$0+6F+9IF0k&u)w1@49LWbkwpGf&1+ zZvW_Ke4YYel=C&fTD%EMP{`Byg#k*hbYF+;Q+W}m#o<;qz zTx`=vKC>`HP_O1{&L zA>)N-V;Nr|0CP9?qaPlj@pu_3J|#I1gME553O3lvW3T~NdoKo}&|rlJL=d=|mn|Uj zU6D<7pI&|yicB68=(I%mIdM{5Efoo!BYm&PG8Y*WwYQ*t|9ro3#AurXQ=ZUv2VGdS_L}#t1 zO?go&y)&U{&lj>Ppk3ESKs3o5ioo;71zB{c-?>Rt_E;Z(&RX#pH5Y@lga~Cf(6G}xFWF4B~kT<(z(@yl} zu#`4G4}ZE)hPw6u`coSI;sL!w2XAX_4#+)SDmibY_o9C$YV?2~!ndbcbg`@@*t-+P zIz9a1n_Q`=X4WA&htl`E{|}2m`?kwQj0*+w2z!L~?}_qU1Tg%8=!iXe)F$u?Oze_0 zjQ;#2eUU3|%9~Q@T?qlq=W}@P?f*(Ncl(`ypEdj?cG=9;q+M~w-mqftgPl*(&8vi7 zY20yU=v6e!HZ zc7jUx-z=AE6!Fj%-lOll?kJ!*tGGn(c1+1spKrB)JgTrX+OukU(50Xwnci`6)>7K+ zwqA$kjMNVoPPub}zJDEZypgJI%o+8#!jidQ_4L+MDU)}DoLx-wwA5u6g9}oXPpy2w zl;8R2JNs?wH&bTo>hXJ+FQXo&UiDyOX z!nHAZ?6&#a-&k}vEi5WwWwae*dM3r{Px9V_-*K1kz`$<@7x?HlS{>9n?%x~ z?4=@cD87U87eute;0;wd{$vU3@<mliXRP_`8m~sU8|5!!mJv=7j-mjQwmL;y zy2=qzVC}B-jZYfKb~0bGR_tmNsfR{nFcqiB{aT!A&K@aMm@vg5anH#qvYICQ3yoK5 z^maF1P&`HluHP_D+2wkqH+5(FuS+`uJ#eceC4VyKIEaBT7{6tW^6I#`NO#_@wEl1{ zFTWfMPM-04sd;XGOwF{EefYQf9fAAdw?XP0DdbVbD66q!p+{MlL~kOGmY0c31_F=d z>Wr2mkA710TCxm!R376!5_z;sL?wD8^vHD6#3tm?wMLQ2OMpj`PL9)&N2_HD8>a)0 z5`IP=-C7Mix~f>O7kyANe;FXciTb;%N8#p2)(CkyyfN*b6V(9;cCLqz>9KHJo zmsOZ}I!#=AK<32=42wDEkUxpe9m4Sl3y}%PpDqb2-3cf{$8dk{mWhW$e=OJ&HX(l= zE%XvHLJ9ZGV#)ZT@|2o8H`-q3{8oB1Q!E}t!j|FTFcCR) z*bH~*;vvbaOQ+vXHB3K*G0aJ1Cxjw{Ia(P(@$Q#Ge`Vy)ABT`X%!4xTMAp7od&786 zG44-jhj1zKM`053XTmrun@Px@vE?W}>u!oqI)M2TZioEYpzjs11^JUW2Kf^+N~Ls6 zOy01uTl&Tr+#$^-k+>z}#iTbNltngNn_xwo zGS4j|CX=)2Y7@-d*Q|gYH5Hwi%+U*Q_Y@2L7dSKzFz?s5r8IEWXmBOXxP+$ZkQi0I zCvDDK+~I2-!mSCxR#GLl`b&ZkEJcT8){Cuu;YaJW)V;e9slTjTsJjTF*Dk#AMbp?T zOo{f64`th!84;tUf_lu7DsX6o%f;^jXfhQ`Hm^C4>-+hzOcv0`?32*HyBJreR;a5D z)yc3Y?8hmw#Y@PyrlLEoS3`>|-`WT5$WdFOd zKM#bjJkE^o=jvY$^$%Q)`SmBHO;%Dx_b0&2FK!A+zoLMI%UL!43P~~IqD=)NMO?YK z!@-#km|t_e+g28WV(4fww+8>LaylNzpRH&!;AgM(^j0GzW@{Ceu69T)n=n*|NFH91 zDJIVhSOW;)?jL>{w|<{jKsbo^BdmfP)IeP62Yi4oArID2gh?N!MV-LXyS*@LO6b(x{BBKF@G5f|w z2Tlk&lJ2*L+u$r7Wy;IouJgBSjLK`!hQ8irKERwx+e9vk1AoUeY{TcGxO#UzI0PbN7U)rrgP5^J(&JDPQ5 zGOLutSNbro8Y{?-KNPuQL$xp?4lJkf8BDjx6~VWbpSRyon@u~O43^?#CuXeuhD5au z4rUW_7`kuZ%K4r(ahqAVgTVxr^a>?$-Mz4`_^eFuQ86Yr2R*$W68vIYISqRO~MR|jI<0dz=w4WOfT#v7vbVH%Q7 zJIz$Fb^!+Dm*DSg@5`W?+EpiVV|fw~%Fy_ReHqp-z)&8V0Z43tqMK`s`8)&5U9u`j zx?N-gn0;eTnoA#p-2xWu)fj(YWZP62d*bf>g3$>J80bYHnNBV*abQKlL2#`_{=&7K zI$OOW?JWh}5;ekL4?>PWSIEFt0o?xbs~4bAqT(-CN46TS=>Gx`+-9c;0h?L>8X`dX zkW2OgHvi>UurZ|CY{C97*bK5O$c0XZ6%dM@BpF_-Gd-yr{2xHOXtIPOQ{9!kd%RK|SyMU_f4sQ~Ky zK|1U{)?#8^0!v6<7&WtQN09LzOe{7f(jS=cHxp7Yk^igFCDntRyOby$-A#!S+`mwL z#lCW8a#swPdla}mx_VJ3!7Ze}1pB@>Y%C_%U|5kT7QhwnuaZQN?)@vg+5B2-#FD0% zqzDT#o+ND6Ir|M4)HZB41JfVPNyXyrSeLreF7Yv}H4~kfi12C5&|AxsK$$L3ti#tK zGq!B#s7bEYpqH^tcf?9SOit>f=*!m_pd?kYI2Z@iotXcYe&3&7rTl#>uBTpQIL@0% zbP4V)WyeQgYXvdy^}u39u2sk#Lh(jElVXekLyQaZju@B5a(3~&M=HN=AQWm0Jc=Tt z9LDO&wGb4zzATZNNS{r=7ktOqk*@HQoB|PI8qMBz!m2* zH@w6Z2d5Ze#rdDcBXLKuUk<-|VY9=11;6CLQ17o9iNToO#t4xO4Mx!?)@m62(-SR- zc)-fYS%&I2$4pus(P&+o8wuGN;QT-eZYl^N0VxLdBK-P^;!mvKe?~}RUxa`}imosT znF(5LigyAef%`B1Duc6>u)yO%B9x~8L6FE4A=EB7`?~`aio(W)GKO3{p@p$Kv+Iez zC#KrFd1c=vQhkQouu$Xgy8I>thW4wxKei0=;|R9E@+SOM2)U0IFS6aQ^~kCU6o=C& zd=rTF@2Cav@idG6#&#uB2H?X@k=~TfGU1J2}%+u335}@sXWCS zYEl6t^|+{V)uSqmwXgVmbn4>pW%4w#co|H!t$eglPGOBa@e;pl2n$Od#8sGX|Qx$k33ELZ@ALkAvO)`srfY*@6htc!Bk5V&}N&?!WU)7N6`-WqMQSj!SyHP*76I0kxw!YnDf~VCEAw{VuKJz zkxRt73CECkC6BTl9L-{f(psFlpJqEe$aZ)XUApIib&SUTTlNSF*!ThqVp!5Xn;fX3 zf%kfRQE5m^)Xa7AxBuWLs;pATrAQIKs#j2C4x)y^x?)pxpi9mUK20&C>zPAB{3?h~ znJi$%fTt^eN_^CJTLDo#9!Y}v6wwT~5@9*3v@dWmn77UB8Wzd5O5(+PQ}|g8f(t}? z=V63kS$~8Da$XK&_8}BoEIU_LC#KjhnRD&O-(lzDkU9YBj;T&mQ_B6+5 z6bLI*z*!R5Vze+qW^NRLrIk&H7((Hqt$?11&joNdawg4B-GX1Rhx4QF;0*!F6}e$T ztw)fgUPq+Gc0n*JIu{XEaRi8eE(MT~O=y9>PauM^Ksc`jLPxMNgJm3mO^$GWg67Y@ zMVcRs85@ie73;l1BO%GYY$Q1gIE-}TM;Dm0jRo~6*RWO#6D3T1LBU@ny^&wjKqdnM zIEdu(iyHEGZXWa(mUV88S%XCA;0F~7;tm5VSEM~JsyW2o7iBSVpN_Ja*n47CiP*AY z#l`|1NVxL~1~v6hR@~sxidO=Og&A6`VFJ#;uh>6|#kmjnI=nri!Vk$fkego#Z7}jX-UKeEyjpT-#&Ke+2JyptZeC7@X%HK=AN$lx*a-g^ zyw}9m0-Ay^MO-fbw+z|B-=$)P^il;GcjE~M0EkpyW)Zggh(kUj@9`QfP#_?fyq0EM zN?_!nnKN|`U%(S|?kPnFGY8u*b{beNr0(8k=7EcD*+0aWM9Yh#S<*4lg>HYKh9-?E zgY>vqeB-WjD^e5e&j(jI9b1eqke;}joi-FT1Cx%&VQs?J^!(KmuQBGS^{L5Gzp~Tt z#@E5NUzs)8H5G4eyLM6Lsy+|D!iqCKd+sx2kEavH&$R}xwzT7mjUMj9?Pth`^ay5tRelGi719@n zbHL#M!eM9nas=Lq`R~ZqQicSKSX2IQegZ=BS6ctY5ZGeBgD#$2{?do;{#Q=>j$ZaZ z8PY03LD$zxmpsvon+@FJfTJ7!X&>Gq;heYsj-VTsx7!o`I{$d(dJjF7V1++Qz6`Y1 z&R4FPy(>hc-+97@wQu?k>nWP8bFzme&M-|fAjiIJbw*6xUC5v~)1QT%ssm41sHaD) z0p!)XQfT}k=h=0}@hxU@GXYW^6<=8C^^VW8HNx!Oq5-3Bj%Sa$3=(M<=bAAZ;3(`! z(y)+K59oEnku~=;NJcMP&ubZAye)^PvGM0+$Dd`}%rIHYHR^aB$*4(%H>x&(oO+YG zJ>39sX>;(~kPoCUj#ZwGqLAL#G4f&0#Mahn;MPP{KB<>KA zlt8A^66GPTCCW_KbS?bv7_3AAjLSd!`+-671WE(Mzn^SmaR~6mB}n_$lES=RT!+L1 zwabU(VTjUV7$M~t*Cy58JV6S{m~k&w?J!dfV_(Yo4OZY;qF3HsxXzeV#eBj#gK_PE zX%{)FO9J}1Rw4E!l=@KYu+b*lFh)VO-84&<}9Q zEs1PaMmO0k0kR#ROQNS~(U>$+(zJ=_lRP(W&)~YD4t9SbM&as_gycRUJa4(Tnv1#Hg+>q_*wb&NTTza6|la1qre>jy{IK~;rR1a=*Z;mr$ z7Uu1wiegRBl$UZg;_4$FvdM#1z20YxFnhwn@G))PYqZxQg*YKNZS%dG$YnePR$O1} zgrcD_R0S!Gp}0Bt^^DTzT)JU9ZG|{+X-tgU=HO(-6I?d%ET3vZ{mMs_OKdJwU&gG* zS%|^H=v=g>;u=|X>xQ>HYNn_KELvu0sKunX0zgNaDpIS!)(wxtE>mvZM`j;CO>?0@ zp892S0#17zrj)yz(}^en)l@xk;FN}JW3pmU4pmJ~DpgH76%T|WktY#OOcEY$u_L?$ zf=wO+&Ws0Eo09yx4>D^X7DiAJuy`bbF6D&Eb+Xm1EK3VoH*1Hvw33@d5w#cUp;4nv+p{w`Tjin|cwocORR$BMn9I#B`a!C}&x z+74c>BWp>M=Xj@IR|?^#|K{NC3#?4eb^AwQV7m)bhvC*ZMKgC*9W%FH5jXqhxDVn9 zWX;VfcccDlb}+^yjhr{ttN3vY7(V?z_-ziiOx8yCexEXA&8c_n{0Bx~(c-lX2(G{3 z=oMchtWjZQGqCD)NFnlsBVJPR%>S~1Ojc9vOl}A8r_a2=>;mfeGi;B{z$k*YyuGL311t7a+H9|isLp9$XWG)v3i>`DhsOgW1?mx@185b`;) zvQ2n4Q4Rb`84e0&p0S-3{uNuJ7mr5ZVk@Z+f zAm}M9w?v*@GsfWf!6?R+Vj9K+?`#H!$BI4GfqrA!_*{g5a4X5I>O{8MqwQuMps~=# zP=mDgfXHG-vG|FH872Peb#^`8E&l1CA6d@EOBZ26E{6>xSKuLOOK(J>g#80T&S!2O zb-p%4Hy$T`0D>Uoz(HvlU4CLc$p(>PDD%m_JlX!y%WOa|Y^hibcEgZ5i3Rpo@&)j; zbt5eCC|H%m6&Ayj>K>S{WBd|CUaVa~s0SxNm*I+z7!JIt6o~GN2l;#t0IM8Wz*$$#s=@$s_QN?Sz&zV)W`!_2fnm!pZBE z!Agj*%OezzbCH0Gwr+%igGl!G;wfOMEyZKN*F!q-FQ=NBytHETIsEU*j9*@75EAER z{KK6m(%3sQnfzq>|4SBlaWg6RBQ=Vz1?~fkhT9!p78l>( z(ASW&_>j~y?v@#4BP?X8Slhy-6a?6%U0_s)bP$Qurp*haTM11PM&J&+n*ty9sx@)< z?Z|x7X4*a1eOt^tpJx-2TU_VS3sO+U_2mk0tj(MQjxL_eGuAWk*eLySj`*wQ?D}wc zS|K}EVdla)A)mt!#TQ}0JHbq3CRph__W~@+^$X0zc$IK&&;Z+`OrH`Ftu#KYMg)q4Gesy0`5bnr#2{~Rc1C^?b4~U;MFS5#>6Z%P zerJH6mY)04!nQnOLT&l_(nG%?I7|tX4%j2uuIPoWFxi~A39N|i&HI<_Q^NMzS2jY? zJ7u%pxiQbDe@K097cnCw*0JVJoGA*e z6KTKw!l^3ol#%C*D%;DdYO~G8L@@>`>pz`hGQr7Emhm$9scqhtCY53c=I0E~>afc7 zn{C$vQvzDA!f6Yf)Wf!@8AVSDXB^g-_SwGJ5hw)fDhC@j3798dDL8IuX(x>SXIAJ8 zvoV-8O#rL)g%GO(%TK>DDfLkY#dY5W({Mk z7t@#KItDhqoJt)wsL%=_r)Gqlzgdy6Ma?4HR4yHc!&Dvj|K_;cdqBm+D20Ls*q?9) zFG^vI!=uL^2&;6hy4m1=17n%-n(RrKSI`A|3)POi0f}ggDo%hZ*rae*3wAJDu%kph z7;Vh7-(i0lR>=?cCeO|>upi+=$>=nCTa^kRho?L#kUOSeuW_0Q$O%dk&vje`&xST4 z-n6+#!btHyv)!9sM{*HteX~=spmSq{ZGBPxrDIfsvrkSSscFs|*pW{4&aSh*bi-eL zm~!`bT>-OOIV^OxnFNEgIhYf4a}`QFt|MPBf63eU*Sa^SQ(OUCZ7fC7BVhPo<11H3 zp6m6OJ&oib|7cWlTk~GHFjv`fvlm9-Z%k*wCQp~FSkDh+fXib8aQJY;m_iEhG?(oD zCa{kudGBU1B>4ib^Smk{FbV{Y#R1{I;)wGXy7n(E!l-4s|862V+$nc+s3h5yj*1T- z*}qntH_|2aU%-L$8k@?NgBL4shV)MW;<^sc)M3s0hicp`Dw-)&{EtzdqsDU-uB_nj zSccZ8SC(2skWvMF&ibEJQda4!k}vt%f0Kc{=}5MDLD8vhU28VtC->CtaEw> zu>g}!qspu}b$G2KTi0e}+dKmU_i%R_=1rDy^0@JEQY~g@Awk=ygoRJW8#2dyFoOW6 zZchIfcC_7(pw3zTvJ$SQpvmQXpiGMudcY6zn!8{jS~24zvI9~BSqmyKFYd_Ah;9Dl z&kUJy6v#kv7ro5m7*upc%Z!6z!v)&Z1RTVi&DI!i?}p>&F61gqMjl%ufEruQaT zLEJF2=HR$T%wqEl8sYKwJs|5t8U`^qG(>?o9?#|5pcTLb!Ht>QQJ^1 zpE8&{ zi-h-N#l>+efvNfiX&w=87!y&U76-^1vZ7qoc%CA7SBVIHZFuzv61;z@2v3c_?HQRR zEHd4=p79NW)%~v=`=pb<=s$%TPoqDv=RZPv!C@-Wd1?b)%fFxa{D4pP($J>lS#b5` z=g8;l+KaJuikFeDx!o{r2v`T0N5lIG0!E`=$ar~kX@rB_c&m}hqXnXZM)h`q!cQP% z>B~q#o3s``8oE&6&d)B_T#(CeZ{I|#10+)3^DkW$UoV5^inm2t6ibV8C}_=&@!Rj}@a{IPZZT6YI;)>x&j& z8L-mjC(eTB=i@kx?X*WOt_AB%4z{;Kdr+|$U*o1 zdZAnsu)7?1a2M-n(73e#f-dQ_1Kr1Nv;)ZtY#`n5Y3DaCwHW?6*dI zwpoOTz&j~$&Ey~=@NFsxTxWP~*kQyuf>9Gaylwl|+298JW(O{W6(Sq1bI&)o8q|OV zF;k^j7Tz;nOf|`7DE~ea+>IiZ6JyP zH^LE&km_Tju)EOaEpJP}xy8P8-p8MGe%&ynZ_Lb93L%&cNQQ%n941`DAygn&@tE9; z#@|_f^A6%XCjy1W~ zY~vn~+TR)h&f2dH_uifcfq(8q@ScCYiEM@|EX78_A-t-V7Q2W!nF>+w1jTvy~s}Z=?y7-&ET=+%9Akk*b@@ud)fe#?0J+q z_)!c+xotNUA22FBiag3K)`)uWBM9G_V@tL$5sPoAmF4_a-MnnZ zXp-o0#g{GIyW1DhjjS{Fo#(e5g02)915f@$w7t1rrk!_XH)(vDcP$gU^UDAR?=)~t zkI9^fF680cj?hsV;0H0_`8pn2XbN~08iH;Rn!%eMoQzTts$_KF1vzFOi6eq!=M{Kv z_2b>vBXrG1_OO3L_^C!`UV_qQYP6^si5dPD(N$3Gv_M`6Ub z^A4>7Zt`DxaN!fEvXtsWctOIo2ArzktM{>Bm7Uk-D|Lc@S%!NSuQszd@6oes73K)` zgQ@Koa?<+S#r)X)EVJhHHmA3zR&Z9#FtNCKgcuP25gu-ufd~6q$<@(1T3HI z3pwcdf~oYdZ%3|TecNlN%318k*`~|k>4LoFTvKqJ`*S)vwk*r;?Kw~aI!bxJ9e-z( zH5+EuZlw@tC((p&ERpKw2B{$c>;8e9iS?=17}D@nBxhCqXwZke5-+tj-wV&)(*x~0 z0ko+%K{L|N)ZK2z_!S(>uuo)6WPr;vYmxBC%3sH^MY+mAr3)x&19vNy)y)8ECT6}D z`%65N`(-BfWg&BKdL;N1o_F@QvC4pU^N4y!@*pi{Q>Hh;2=FW4d)dAI4PDqfMxFy; zPN9TpGBl&SAV-HJ8cB2?U27 z9b1^0oDBO;ZPxj=^VErgaDe+16SzS|W8&=^zhktuViSF}38iprr@R%Vhjy7x`2NN$6R`BG(nvXb2DgI)APMV!P|%WY%h=-Ohhmz zkh~D9G+8V>Kpn?9eVQt~*CLGrKe3#x6aun&trN!s=1_C`U2(2s%qJKex!}PWH#jj| zdRfdNf2NtyXxD^p$avo8GT@ASmIHzro%fo`sicOWQ*)iq+d2XFEt~}04@u=(l8;%U zB~uDcpYcF2>oI$KHoT>Zaupx4$sZOnHH9b=L*o$mXo{3t^2~L-q|Csm&;&33i5S+Y z(Dkcre}WeYo+uyXnZ=_qRE;IL3A3wO*rIS%By$g;Rsg7Tz%Q0D@YT8CoA9hUj2vW^ zRZ=i~kxi3nC+8zlkG<347CO*MxpoQ!#3qZV3@bb4patXB!)1s)U@J~Z+FSFabDcurSUopi{5K0Htv)tnn_!iwooj)$|&}~Phd7I!duOJgutXE{(u6tRJ?~! zpo|WIgng*iv4WZ^U={}|A;By)H>st^1#DBfg;5{(U#^aeNEC8xIIXvkS9~6GX*QXg zDV!vX8-~oW_$@In2f&om(ABFkZ*>8W6o&3t;iXJZN&H3rR+eqjLE?gdYO(Nq=;~+I z{xJJa@K65aW}JyMEiUOtPfN3m<#QOWA7Zu#_kdS}_%kBTDxgkkE2}yE=(5IStamME z?XS%)U2A*^)MqczUi8w+lzoCFomX`iEc4*KtRdDq9nR^$Y#;DEz(AkzkQR?MFcMDP za9;YENH2M&oUjhoHh@#%3y~r_#eP%j)a-~zL$|8kYa%P*+>%>Z&HIhqtOkkm{Co$@ zKb=Xdor&50)Lz3Xx2D&%9C*}9Q~l8I_c?yrZ%jWl?}}qKLmSr!Ci%*HE6Dwt@LCX`ml>DF z?bU(%w{O7?YZmWqZ=}fQD{4yMOd(xD3trTNjSP2Iu$c3<#Q2owv1c!pv&^Ic2RdH; z0d?^PbZIZ#&TbBtU7dQ{+ z4g$wjc)yMYaV^EMFAX?HvB00c2zIgruZ6^R!{G8?f&kuLQH6te`ycS{L_sV08x`LC zygnMZo7V;*=IukkzqOUI5Jc;3x&)D!wwvK>yzL7J7DNs#-0(aA`#}Iq9Ap5m-v%s) zpo89&yVp#y7aHwD(L_s+i}Z?E63pYC&=n6>bBf;6flWNC{7nIT#&1XPnOEwM zMS**+1frmt0Ow!F-IM{t$Gn44AV$;q{`O#nf=)hHOY34`t(uw+A6nv8(~Q^YYh||1 zdA6TVsNNZa*DAilt8<=BG*eAb(ZGv2K2q_$P#dQby;;Mdntc-5Ma<^)(~@Bx@qTlW z!${BtQ!=Y${rEG&LE5)(c$E=mOxFPMqBFFM(2pI!i^FXHv;|6?Ry3^<@Q@Ctx}+o|91^#e|r5V2O@$5(vz7eZK#!CsPLyzX48@&0g>k%IIf zKWz9QLNt2e?;6boY!Eb_0z5DZFqHrE3p1#CBs%FqrCcc8873G1w+Gk|039~_#nc9n zOPp-X$XKCw89w-vU5<&8xPv_`ghzib&E+nw_(0>z$&Kb1lQyRpJDT~^fX}HLa|Y2# zt0_B^B|WVa1|!5N$6_w_j>sDP<9zJ%FP`q zOgudB#|_PAG4P-)F7;X<1}OY}hmv@LB32Z6zqesYpVWgNqU4A93hdHV1h(RQf?HaU z)kdIOGA8`G#$G4|bV_6vVqfu3^jOl3I#4zL2SAY`y(ggE#Fb(b*1izdoYLCp$lmVC z=WKPrf}Jt9^yY}4lzlSp;Q_tbUFPTtDlI&lmIAsBhi-T7S zxP<>AVWadk^-BtM*!u|J7gvpTYDj9g>5fg(4a?1ZBDku5!f)kG=hzEv#EhJdUrAlr zcvtx1t!v9Kvrcg4+jp)FuQWk6f~soFy@jJjIhOVOlOm0>Re&f!a%t%41 z1HH8XuL8J!j9JgUZ$lROp4htqzEir}e0Fw7CRe>rHus5$o>^nT@RM}^CUs~UV?5XEF1ZB&6 zw}EAs=e5syU&sO(1`HNt*c@?8R78`8CF>HSI5@jk(LO+>)=;0}BKwW+Wurb=o*%M0 zFVr=};J0PrBE|iSl{&S}l(5Sfp1I#^pN!Mr{T2^?dU$qePYPU%a(d0zuf;FufTziz z!%*?Bguhwg+ZXQ*?d##ap4cee+tPk*c{F_1&70tC3DzH8@FZv(0Nq)gW2dnzS%y_& zo?9+MV9}SM#p7>Y(j$=iiZ4T3iC(P(eVuly&-BaOcOC!`U)V16tt2>LJpdN#)G(W2 z?)@x?OXb7u!7^4XtxWKUc&(Ywcu?K$3d4b>!@=o5TQHL^@=~D{Z{s~l$S#%9flDkn zCFb!67lB;oQLiIv-fyBm0~ntbXbp<^xhzhwP?%zb%$ z%vbk6A&O`f%~-0I*keLNRH#xUmRN(CWF{n)7$UL7QV}FYH5j`jDwYsSnaN^?v4&6? zOQsQNMO2X(f~M6Z6hS1vbMF1@6Hm2If6wdtXHMqc&$(y2_nv$1`|{#S?KpB+QsoRu z*O7}$Kf#j2ja&B_#$2+?9}NPmc=hDV2Kj1YQbBt++MnKqolPizo_Zm~&sf&}l2s4H zXFXjE6*Y!oTRmwT@Cs(Umgpx*P)s^=qx`h9svtB9m?agaQX=dCNX75d&26;_Ub3gy51`mx= z%(RMxdqjk2|Ad3?FvYTShQS`=h)^(v8 zE|?SEzl9Sa3Aw{!%%k8}D`sH$xa-9S&X$Q}34Lq~ABmzLGOG?g616_T%|V+xY7-!$ zK;LBD!%q->{~!hwwwDhL*`pZ)Vyod)1>MJyAR`R=$3W~4n#9zL6iie%rvRfT!u?5^ zTv@wJ>vu8seFt`TF|=JO{Mk2<-FmV3WB@;&gk7+1E3c?XC{M>kMvS?ux2zuovZlBc zZ2HyU-vkUla;0n25vuZrn$oeEb}e^(8&|s$bN2h>kuW=U(kxjw8rB8toC6LD;&Ovk zQ&*N?u{g|Sj9|YGR6CJdxMOAM9;$Mf2M2e=1)lckQmod&aEe@DONi*z1S9Q2Hul}Q zlA27rsNWOfd=ruciVUhG;oBrwJm8ODMa9=AYL@gHHVWshG{L0Oax|G|rVD~|6{LW6 zjD_(E|L!z0x~?-aniNk}J{AJ$cORt%T}kCN-0vxBxL0+4K;;K!qK!=yEGLSmpw9Vn zI~Za=v^u`<77S|lRWvBROv-qsNuim|`F9^$HQ%W=&hPxPiUD>IAT%pt@>g-O774}e6AtWC*PZ0lyZHbE^59~gp46=vz))RL)< z(M7biSVyxT2&?5zvlU6XyW%Lf0E0_mL!gEja-cY<9lEr48Elk^$?ut%AvlK4qp2KU z{XiFowAN?>X7xuVT-8FpnEA${$Ym`L^^$(1B@_)){0m`+=OS!6ge&xgYS)eWZ%n-* zx$)r`)E{k%r55fI8r^s?KjR7&Ad5tW!WAaKrVjZvl$ZR-qHr)hW$*S{@`^1O3sDsi zq4Q-$OhcGb1R2LAM@K>yG=CC@UIKdgjpW2dN!;X3Lj4ViGo!?NLwY}eEn33f=fS42 zuPCona*f!rFf)VA#GB1Ce&7)ayIrpF2}QydOr^p-Fljh*rdhCeEI_{CH~~tb@g8S$ zDpk^5jrlTiEebQ!C~72vfaEVxK$uW&4iX~65?~R)7+S(UbAjwDu5ty(g|xo9G$o&L z3hx()wkyoS7Y`iL7131CrjwZse{1r9^~dyJb^Ik zwMe`cZ3B{;hG5bOz8$RVmP3chQ1E&9w2X0sb-ubcx%O<`HWbTE=mDdA|I zA4e|iX~e115RCGT>CIvD2Dugj*6xvR_ zZ5GE!s63CHwg^+u1IgUj`XDdsXp&eJ#*@}$;VR5YW23Cih<4a znFIpMKVHTIF<9*C!@T=s>GFU{#1R?p-*IsmvFJvWwqGs&ROCH))WArG76H!0_7Z3j&RXZT$sToIvhY(ii4Jb%jEl+j+y#GLR8Rw zmfWG-auN^BPbv{nhP2$GSrWAX@7vDL(;@DQ25?`3t#isR6#G$tk9R|JuNs2^RIoI3 z?tC?_$G3iC2=P+6jgiHdm3N7}W28%yCi;Cbo^3QatBq&6le^Zp3?VCx!Q_Wo9Ub~S zxsAv7E%Y8Lx4rUaowSo<>~}1fxeh8^$I4v1Wg|Li2W2KU)hwBEn_PqpitVVCboj{N z72`QJGjW6QipQ%T4~62UcSigXuXfr&ml78*(w7}p(`}%BoG~~??q*o@;eNVryWt!w zZ`RIXM4v;Mqf{m}o2T&HJt=3n@yug}v$iTX{F(Myslhtc6i4=~z6U1dbVPy3JuFJ- zJwrFt80@Ta^OD8GRUfi_c7vTb{GHX-p?NTKZF{3U-b=P-qi6R^cJJ^PocC>HKDdOt z-I~aBpM2sNg5Jf+)ud^-E6Mx{cAdz*JbgwUzo}ibae4dOdHQW%(c!?Z6MEl8Hs&WN z?`qPy+a~#}k<2X2@(#RiYeZx}Oy)9FHUcF$pb3lUcsRy@P5eZ?vEB^CB_-Zn#{k!QNCR7I1%~ zeY*LESk`^h&#$|2R4i<$GFbDj+J#wk<1p#*lkit)VWHFr@ai&W1W1E&^o^dwHc|<_ zWz+G-ol`_+fL7Kuox5|(T3%p(PZ77sM`v=K9ZKL?KA?P=zd}u|U|4nvpX>mUU0ak) z(#ouD60;86rMBr@dxN{dylkHTm<($hwwnV78;B$GarbwLW zJLftT5?*oP&bil;PPpv)D60c^E17lilg&5`1L9ri67zf5D9Nrkgem?Z_Fr=US6oww z*+9ifyF+JvFI2=nc;Kv}ik0_n zr=0-|Uq4Of-p>Hng8cC0q_ZdO|0JJ}sAFF|Er(y)($0!& z{CR_2y?cHK+<)hs{yjm&!sXlq7xDq|4udwF?;zp=@Q}{-TpBT*O^^Uc7vdVts4n6Q zz?O!TJQsctpp{yk%@=Xi(_$C3oUEg8U;8jb1wcyiOtk<)@UU{If&)-Dc8-vOK9)DK z5Pp;a2E$WeiYAp|MZg>aMZvUN-=kP4WyE_DmWj}2ld{CkpgdAmEGXTgVz+u?BhGxbn2H*Tl=l*Tvy5i~ zRx?uyt0dHcH@j#eFL@HUCwv-13B08C@D(HHi ziJ6RPCIWZqP4a2sD*J&Muv-db7a;((_NESTK_DonK#fA3L*%V}=r&k2KrOAOB~ZcF zO;P!l%rBD)F1xhw=yj3(U&(mj-ndv$4FsTcBhsKant}-uBqL(mWz8#HZkzaBHHzew zx>T^Q1KuK@o2-I;9m7Ze)nYz!vW#V=TM3vL#hJswyOs8mjr>At5R1|ZZS1C`G|r~K zGZ*}r8H1OIUCWsastoI(U}68f!)f)ki;<*Q^@ZGdPtLlIBKkMUcD}{_RVDJ$W$QEFq~TdOcZxZh?0ga zJ0%SAXkXRVT@yKQ00>uNgnbl4XYo@RhvnaZPs?xP zC~ujXT{1QaQPqRE4(GM?K4!DeqyJuyZdkC!Wz(qq4L_)3`d9Ibypk=*!2hF znJJ}YdE_U9Jm5eVEsnYCDHF}~xC*(xUclsdmhq zLFa+rYL?Uw;sPm^Xlbd*%A@wbrfqNa1rbf$l~sZe2`K8jas%W&it{(uH|`{ z3ox>-X7%G7=I7)_QULY#%4>Ck9c_y%5&Mrc)oy5_-L=}>DhO6xGfNGz-rdReV1JCE z$t1ZORGAGlW%;ho@U5qj*J`SrxZ1vNcN#wTHw)k-{#o)#lOX1J@gx zocAs0evZWBXlGa1z^2;%=L4GrEy=D&;&BTd+u@zn<|1`+bjVgila+=hnZEV9f!Z%e zmH&2Qe^X2(x{V{Wb4?r;HGD-v(wKJV13Lz}Ui7UOBrh5II}?(aLAb6qoata-W|~0x zH{E2*R+~RQZ__fC2sQ5x$?~PsI?M8=>&z4)V0ly^GleiLLjo(ZaeA<8 z$axBH!+xS=vvj&9Wd-r9_hbh2h74kgd_~uF@dg5izZdm@ zLwN9uWC*j)FWvcwN`&buK72<~*@&%-x{|3Ty31-#A1oTwW#9J?f7Bz0)+(`DSZB2v z(%Q3K{njEI$`QN@o9{^)B9kVZQ0EI#<9qkk(;UkWf_6u0w>l zT_44-9wK#t+ZaB7BpTfnS|1SP%6bUQu_gA=VoQas!13-lINu(OvB4H6N-6yQfJO;Z zs)rv=kyudtry>gqww{{U#D;N$yGl4Za9pz?e7b@q`5Im+vxS6^+mI**h1NQ{XAhS_%f zS35Ly7(s3lbeByDl#kTN@i)N%&2~*mhL8qH;@%2_`vKoz>udjyWd%u&7)n1@e&;Of z;HdrS1BZg@$lLr2MZ;H_53Di|HCx@xcH!jti(7`?n*zghfnj3|?jsDwQpDE7{P`m7?o@v0UuAq7BXTE9?Myx4mBmZeaQ_b@;xD$Ss^lXbqCIETI#7c&3 zx+pVSg(JCQW^8~N9qK#HzZYdCITob=?ye|}D5R1(tRzDlIaXe60+SMAhkF^O+-Q@M zsi9(}GMBQOEMT|Vn`qn+yg{UNb-;O{`z273sPYh?ecVXR6IZ|h5MuGZk$0bQ&{8V+ z&B)#IYI7J?5yv7SbrMTm=(CP7P93yU$#X zLl`RKn`k@bW!W6I8`J++t!Fb4gXtf>`F6DJ0I;lwB==YuqNVMXqeS35lt;%IBkRyf z`vhimQt$(tf=uhUOu%{yYjIi$K;#Ut5Bb$k9UW$MU>p+wss3A)EN6ouWlP?}oD*QB#iQu;|`G zJhK-R5m8HOb;#C|-ilU*rLt8#1cVBui-QtW=m^HdG4=);neFExK=laKHrCwmcvJ3vB^TXYjF%eaza6HSi0u@l1v*#ym6=X59RunMAZg z6?oo#{)j_NqrWS*KQr))5lmKy*xGvmodJwS#mEjN7(g(y6T5UcSTFElDs@ zR*ynSMh|9thx&zNpH6F|w`$U^Fe*rCs3So=8{_NYb8URFS{1Z1m)il-0esP2G64Jn zfx*ISO{_u=vS_ocLIBimZWhHigscz>5kc+jo^z;TB$$j;U2*%2O^`C)*+~nKw?ZvJ z!$2q=6|3@P0$;~R)SVsX@}5YD0KR920xV%O0N-mhElQ*`;PdN8Vm{rVhOs%jf55PJ zYzQP#xk5^UH>e52lhJT|lwzMe#X~jTOEsQ^a`S?xv~1&`a=vnIC(zmx%YqnLPo~$`bg3T-n76E;#2-1fwsJ5(?E5 z$X1^J$x-Lqhfd%w8|(FA>02LWK&|4{BI!lS9KbY{tabI_62@ed54;PX`=&D4XEV_ju1U&&w(=!C<1rVf zG!Jf^g1;lFQ!07>6$njO4j9=n`mzAR*Mz9BRf8@Rvmc?nsEN5a-2SA5@4CRh8Y$r6 z-g?7dL11oNt)f{tUx+d5m!(rz&Y~{@aKeW1z|$1uO#rrk8}k6M}*-oUt_uOJ;x8>MAEWs#z&5d|(5zYB`jCmxCg^3;|MYQM#q1}eo8ibw~X= z%HQL0?vBcBYnRu0_UlFS=S9cuW_{jq{=pduShQ176HRB4;wTipHHXmg@hFgIUq9Ie zm29w!b|6I1=jm7}x+1j*Q+`OeUk8far&z4+7VCaZ7dV-7gu3WntN=`Mq>O85rKd3s;O_016e91b=Vtu?Ag`5HJ zXM>QT*~(XNAq<|Ig{P3=q%ayLoZGr`7JWjE-09vo2Kj(w$Se0#ZyHWOcAMZ`WuHs{Pi)%KC3?a zp8wOk>Qg=z#UnMg1UZ?Mn^&Yp1n3jqiS)?|jcr(baB@WF!G9?FrQ|L&jn6%xc%t6x zQSbKZt~_n9{=UfzsVY^H=dXfd4rz7+PB6II!!QV*4fJ{IdKb&4(paGhepQ$s2~ z3Kh5Ya$FUq=;{MU7ew6S2?kXs7~xD6O7?-NTbwz&MmkjAJDqCuZN78a);7;|33-{m zvVQf;Q!-5<3zEZ)&Mw+vXifxkXb)sXF2u4!837P1o?aO@kJTSm#fKLlT#>jb0v&;_ zimvGp@o5M-Rotry0|m@TMz|sv1~B7gu{OjP$9o_w4X|6N2BfNXXjmbL0yPG=%{E-o zu9HKcydKP;P<>!PX)0V}0H8fIeF8UxdPo8Et?^Fynl(ZMIkl@$WX*Ie&)TpsH#=0r zwtae7`678~dav23FBc@Q)|5UuQ>+`W-*L@3T~X2#jVLwNAddvo1$&ljx7!L1AO|nM zO}D8!>2MI4423Km&Kj1b<)_)yY|Njr z%Z0OI6~Nn2Uq-(3$IP|k^^t&Or!Um8X3saKDy4W=R0+FnI7Wa%v9+va&5pPpn%GCg zekSU!g+3L>jq;PM)4`hLE107yb@zKZR0>A~p?GA(^w@lPInE0KdCuE34MJ1^>kDh) zuv#m~GNVVRBTI5k!kXHv~zMQX@3=c~rru*|~yzzxZ=iY1i>_;=n`9jmrW z6PWW$d$$0(6Eh}TS%+R%P z{pWJAtdbgdpDAxjv{7SN5>F*OJI<4c1U~)Y zJ`J5cnTGhY{<9ts(-Qn_S<70UAi6+(Z;KO=09=Q-G*eB*i7PqENUeTHS8)qK&nw0i z(^R7mYlW069;?mS$y7|d0G>SVhPMOIW~fa3WRtAoANk1+=ZPq8rNzNnU6+elI3mB8 zfsE3nAu@GD-leNA3IgAZ-xWuhTE9}lRJ}C&S2h}WxM&$3Kw?5sZ2eU8eq-~{Xu+sSL=AZB`F_9hVJ5heQu%0hu;&F)-W2`+! zwxOeTV25sycqT#_BkP~(1Zn$+9t;O2%2T5Jz3mtAd(#wyRbT(*uW(^X_yn$YHEJs1 z%6+cWZYoVRk!Ik1leH$^--UG)r2Ur0c(%>7URlXV6HRJos$|2HM-xMzdMea|A9#jVj#QJ<;>oY&y)%6w6ivP?njc-P+9bt zSy+C5TK6Hq3oPB}32#E(P7(jgt-<06k!SJADquZnoUt}sz*rHs@F%?LfX+pGhv_Bg zsmfTpgX(K9S^rB;8z+VBSL1s_#EuE$aq=z!?@-2%a*U^?Y4ANLlnUwE@I+l|kLA^T zI~Z_siKyN61<7U3c)_29Dmpr4p%zQX!C(ZVQ-;&g`H|5rZy(r)lL}nXU__9#K=>mN zfpvY4b=Vbdpf`GsHm+!^+GZJCoeKCGC*Vn0jDY`BSK}k6jpfD%S7Sit4<0|oSHhU? zcN1kDO@||{#c}fZP0an3VH?e@LvKT^G`M(@g5Ki*rB2H7BeID%g^;T+aD^ngpTktb zS_nM&j#p+5w}l+U9W1@ZIj{%4f0L##DF2G2jccnN_|-|Qvp%g;>FIq5P-N{{c;g_$ zr$=Zmxi$bdW!|g)2Uh3fOiyn;0KcY?%tYHZb=AI1%Ll7Z>9x7epy=edw)8!OLwM4m>Q>0QME!g^k$6q+CkgeN9LtjK zY|g_wE!6gzJ1yt%Y8CYlupg9tatW0^x(p?a`~&t>WK+u9kLTT2dXb=^R73|$K51{N zC!*f)Jcrz~puV-FgEb*$h3kv$SCm}T3x=bO1~s1dWw%}I6|$#k%FURQn39>;D>Jc^ zCT9qo0=&H6_z~V+qw|?v#ZL(_$BdsMm=At{{OItGyj9U8Kx4Eg*UW<9#Bc5+Kdv3z zJVVmBo_tpfsr=LgJ(*=OV8YEfxX>1zvRF)l!zXcHS3Lf72)@q8-Ze3vmKbv~+@MV8 zq`l8xf9s~{FF%b}?C2Z^H|OFyIRuu9c^|HNUpo^g%j6=a-L92QmhBJwD-JTAe%V0U z(-jlx36q56PM#)n>0b^dc#CmoXuf19_MR50x&q8EnbZ!Wt^tjT74%5dp!i6W6JrFm zs`tse5V#0BOCbeT5pWYnsCyu#U_vQ7#&ZsXq@6!@zf1m(CA5kt>$(_sw*-?9z`b}pH z8{2WUpZt%=*(jVlpaGfW&B(Tip!tKf$hG9QDAv~!fH>lB^bRQ2gmC#}H`wSL>xUP@ znI-TVlE5V}kz}ZN=M;M((0-y`2xcP9*J3Y_So0NkQ=w?*C?4ssIP;@rmK%&lXxGnm z6gc*}?y@l$U;~bviNXY2x}I#kNJe`QEX$ee`64c9?KT~LNn}PsOxg4NqQ_d%2Xf#< zVZ&y%Sd_179ve?H+gZ$gS;(QMc17exfiQh2LINWOxEirhlk;oJVV-@wwgT*vdii6z zTimskJRM#>!TE6>-aH`NS^r05JTQ%tyAoI${3HZx#TO|KDVggomAZ|qY=1V8RL~24 z28VkFd_5ias(f!%{H(bT-V4B8ZV|oAf?L`jsgmGw5h-K8WDGC+jXZLW3Sch1gr_>M z?M%mjyESsLhk+-g3NIL`C0Y{L09+oB*Z{nI-@Zbz_w;q%ERe*2kaA*`S{L3Tdbv=K zS68U5lbZzoxy)GvFJ{&xaM#C3(6!6_HNWwOgO`*b4iRt$#&)rHu}}U)e2c)Yh z70j6mc9fUz_tZxB1SV9#W~%dxED7gIiu5S@{#`Fn4DPhy=FF0wqbm1!tX^;&kC_GE zBLS4y5u*dR$x^R3xo;)t3qln^x1e@QjIE`iv=}j{nV19P^B6v@n8|H&IzD#$#!f8Z z7c|VK5EzV)QC)3jj*0%@ZtA>ph(j?b=P@@Su4J4NeGTuIY|8$!8E|WAV{bGl$D2}vqNkhuNWOi5ldX%EWg2cgxR!aIM8ycLJfRvv z#}KGbSs1Dp>-e{xl*l2)~r^s%AlF#4QoHOO#?I zxnIYTK;+f8{mNym$Q3LIgg&tfvGRt~ILv!>&U|jU$p{KA*q93k4;KkE*sAM-SMIp) z!MaErKY|8SJSZjB(=X^0=DvkOD77wJ6gEK^TOy9g!{=-gjhQD2%_Yiwo*;Sf;u4-o z64^Zb*?2K^DwDQ_+!~FsKN}0OMu=nxzdNQ7bB5n+87E@HEiCFMqtMd+oTe(d-(DmL zAdT-!kWqNADSKY?SlU^MwXblkQ}RqKu_LvAc^(fk>^Tn;R2?)q-8E-FJ^v??d>GQM zm7U-J5sIcDCaeKKPP`jx%}-yj05{}Yj1SiuA9|_qUMbAHm9r1(xQrB~)huvX7BPYt z7^Je`F6)(y*VFMiR@%S06`eq9BRVU1Az;YDJG>G5ibX5ggE zrSp3>>p>>H^C2BI@TTwT;i{592GP7xmik?K^CaU~pXxMG6>nlQTK_n=!IwF=oiKW$Q&B)o$qIaQjv; zT?wl6yJE<&q7(}(J244#UAGqA4ptTDSHg_>SxsXIl?SBJ0@oXxY%vzxTEl17fON&< z2lLFXe3A)zbM2-%`=Kl44K}Fwfwv>=TKU_Q{(NQ)gobO|%}_c8iOO$w%gK-+4(TaC zDOwOGv$!layT@GW$;j|2r91A-K=;f*P6yAF;x9N=Y`xlZuymA-y027{DHJc;t9^WB>hFDJWHaQwEJ zPT|q#MB+dHL#UY`Vv<0NZUmd7r;qai@-sWeJS)aLn$SE}XZacU0in~txW`#}Ig*y? zs&*Pz;eeL6|D&ZJngH(psMEs`OHOYPo4GYpy-s9K(0R;JQRhuo8f!-`TP!pu6wR@6 z@)$VpZQin@PsCvX0CqOdREuOOgWp0GoIM#P>Wprkg+309WeC&kWJri1D=>ZB>yeUl zq2)7hm%?Bn+=IidO}Ggf2Kd#}*|iv6aJ^)#o$0rmoBrXBChlAWdv|(`m0-j(OZH{B zy_%Ui0Z(IpHa5A;UUpp(_Uh}sd{3|ka;kW}+nHm!pH#B3F5026 z>2duy7y^ni7Cw-aJI)gLqw!nd>$dw`+Ek@K5NF;)5(FcahsYPQ)FVuC=x&Q#Td-!} z6f&fEQ+$YOxLVd-CF>tK?`@if=FUzgJ7~VM`U59RJIg~LEZpC6-Jg9m=<*F%U%>9f zOxP9ePLTZ#d36W>rs5WW-@>UevoQYlvhiEW=417p;LrGVs(a7Mp>@V$QYy|om+2S# zd63KZb0%2}Ng|lRn%>2dNV*uKLq5CJmGDGM=BTvD+bYav59M50F}C!b`6xj=M|RCM zB44HciXDQ~%%(W=@Ho$sBTJ~DaaZU{x3hv}DGU)-5a&jvP|4$(omHB4rcmDwBRu+T zCK!u!J&V6`VO~Au7z;d-rlhYK(9KnQlFXnlYH&l0hq}A6+c@fJiYcn$oc2H4O%*2O z!F95j2jYoBdEul7u+7A6j)z(T+gqH%XKv!9&;0E9CtGZOc5c1s zXPAK|&+V`SLPKr!eLvJTCK4FCXD*@hq5-R~_+Z1ZMn1jK0V3~+O+nGv4 z?Is_Q?_ZvcZo-mf~lmqo(SX}7pIG`uOYv>&Fau9$WR1&m>tyl2GA3HUzKhv)lP zm^p#e+zDACX(9S6PUL};Elcg5h@>JJO4(qNg(dGUQR6r>Dyni1v+oV;Z3)z&KLD4b zP1}WBg0)zm35pMh(=f~6Bl3NR$+0+dJMz zj>uWx@}`B5>=F8qqTL*xdH1dW1gRuPMd4>jQZ82aj9HkIYX3{PmVO_&Nfnli}sP`YzfB z>1j%L=~v4)=M~My2NLjHmUb3iVF{gg94B1NLs=+r{kH?cFPbt*lQ-K|3Pcbc4))K5!7bJJ7OeW>|eJ&fr zuNuRHRedfQgYQ{wq}Zl$B}(y#?vR|C42W?CeFl!sXN+Wzm+_KalImSC6i#r2OAbb| zT`KU^El#p-5XbTw+kABQH1bjY14ra#?>^%{fR>i=^uynIm7w8HvMkO2B8m_DU}_y; z=BxDzZ64<sODe7VIK-dt1KQB%6!7(S>)XaB45T#{&DrnTvUq_Qc@MilC; z;76c>bFEt7^;i%%W~S=-icVnlS^_Hmc$6u08FdXYmjRLut~k!Q9BrWgG$Yr z&AdmAVB8v+g`Do$goAxV-+Xea#PHtsf_q1|pjo-`+-h;f>ddhKd@kiq<9JAiqgO zK2{jIa@y3ri9xqb~=J+cN$Me4WHb{Hm0bFeUlMNpF!-ci*@Wh|KBy91kIW|%a+w9&r! z`^Q+_bVRpF-Xd1s!b_&G&h)yuHS!yIi+5Cg>Z%H&o+orG?b&YlPuXJ&n`;Muq>Wx{ z-*9uNx@+!~^VYD{=H08!1JB#7wDd@hE;Tb4ro2|P7ODCC^&Uc6iF{5|Cn>)07 z#;(j&_QkS4udX6lCTE4b#6FYcr@RqB0W5yZfxyzyhHzsbKren~3dEou=jEvNG+QsN zG8caMi4Cde??}?0*cNCQXYd^-S1RQfJyHPy0;asNCPIR}g84v5F8Suqy1lE+iGc?4 zfn@r#Ao??C8Gdx9qBEV!W~M-lS~&ZBnss5|I!jt68BPmD7>KI?ZgCF!(jj zNO?LK5$tz)4V3B6P@zHf5u=o{u_xb#6!eSqSK+Da#iTLv-o=hak#xLPc|MrmpXV&l z+u%FY@bGG$4^a~`TLsB3z3jy%a@Plb1*;)*;DNv;0p;b~n8>n#C~lAM+@jy8;$Xkd zk|O8LqgLhDnd%f(%6x}VxrM50-^$;_-7WVq;?l;Jzq`K%sDP+1gYAUr4o z<-LEs^`F^dGIK$6xz|+dc|Ne+`NU1#CjcxGSpoh%(%5K~v|$ybH+P?0)I`gP`O=mY zshFpJZ9_WH^leBl^gBg@K-t_nB_i3V%vLtkjTo8*@Zoq}#Ofxax704dYb(j#{e3O%l>0 zSRbTZlbZLXV5u#SY{8K{on-)_gqN&LjA?zO^}G<+?m{ATE+T0zSRZR%-C&$95z^6odw!SqiHjC) zFOHnAK^TCPqA%mjN=x8R#_LcYGS}xzCYO67L^mEaUumpC1VuJ}k zll>XYgL;i&s_J)uT0PPEB-u1(si&Ld@QLl@6SR^=1vRPWeHsG*T>hH!`wd*J^awTO z8m}Lge+dJ<6-y8PCnq0K%eKauM*<+{Nh3`bB<21`<}Q$?xNW&^!!VW`NXGE@NRLBt zS5DH)LLs#cq(Z{f1|zqBMuLiGf;TH>-{S{fp$z-Q>S7`^m;qQh4$Yu){CgxwCpt~$ ztBX)gkWO@^n#063Ds!4@{R*mIQsoCKpJG`m<;qV+$BapbK-LKANxOo|sMC&VeA;9jmlK z2kJCC763pLpEV(l8aVopSdkqp|EEZps%0a?KNsS^sgS?b7anG@(W%MRY0{|h&q?K3 zPsK67PqtZD21~N>|=%A7m4QRSG5n87ezHYv9`frPW=L7gkgynEL_!N%i_j?Mp2?PG+{h^p=1A>ouuZ5j--p@fJ3E2J@uud%WLz8DftTAXtn_*pD@@Rxs+)HUFc zSRX3cCN?nee)i;X3cfQ(k6ma;`IZeStlBOa84@`qqTyqbYPhWxRz<3~Y2!mfZQbgB zLlSxIp2;?*_1$Os8CjDMMvVi87W%%_-RUoVbg^?O7_=?Z#V@gE7X^G9+ zS${3Fo5TNb82RCI-TjFOF+sn~qQX2mh}aPn4~xS8R4D8lY!YKO0rXH!pylZTT(mrZ zRdQw}hiWsx1~%m1rtknrbkr#>ou=Y3k}CG>$%#!QMM8A@I(B`y(FFMaLrGQ1Bmg!V@B77y*>gG}W02mo|jvrXnC4gAmpryT<%> zHrjdT4=;*S!U2}4WZ8v5T6WwNe@ZB54hf2b^m>~4a#Tf~VJwajZ3P;=>m??EAEnv)QH}5pwn8Ww zX(NRC1=|J4Qa%a_S{AmKh0(f7tu)utQXi3g8lkVcDO$3E;D1H|erB*}FajypU%gZC z0mPXz%3Cz)FEPRn2v^R2lXh02Sl%E;V9|i-2JxXrn~t{Q8Z=rkF1@n=!3$4I81yQ* zNJVg$ls#DBxQ&|9Gqp1%_JcQHS-2_=PKwj7$yUEC8XV`@xjzz_RqDQn&PCX4fb+TJ zFUQ0HN%2vK0!gvpasu;*i(elvoqbRJR1Cnyx1=CYY)h2IbXIko4d1Y_VFr~dU5A~E zK-b_3*B3Pl1-MaA56B3SAE#nD0S)BC8VgrN(cY#hq{bnI8{}KEuu(it919!8kCB6o z;{24tM!}u!sx0r!rxMEpA$~PqFwV-yzK<%laj+c$KO@I^S3D0O(CoamvP$3o*brs*2nV-y8s54Bh*@+xrl^%hqa)Qbz^0GQp8AV{KO4oN6gGj;n?yVMK zKLK!6{q$)q`E}V&4IpNPUu-JIeu6+Xdl1D1!^I(Rn)6saVF$fxDG+?gwOZ7uSi=Z@ zvHgrCfFh|1looFJmWD!sVYEKwC}HDa`K9S1S^NpdM0O$y7}TzYGD*Ae{a@R#?>te& zJ__2)_rK{1)BK!K+w$;mbNyu!gXrH*E}}poUh89G#lkDv-;4G0Z&Nq`HR1pgjv&(@ zp@8FzuA}9SD;OlQzobl3$tyOBAiod}t;PT+>yQu~)jD5ZAb+16R27DJbS+WbbH`nOXgkJ)U)`r|PY)~(O%@1x@X zKI=~2Qr0c6ZIJ4;I~1Z1{tkB_2$;A)fr$ZqgOY`T7Eq(Y$J?mJCUE%fIf~;G*}Bu4 zenrYim{_mHVjOfUS(Tr^<@wD+8gKY?s#UA7}08#>5 zVsGkPis=NX1AYgO&4UBzi5LzsFV?ri--QybB4iXojvNM?ah{mWoZ9w4s1j|QTMCAca# zq8232suhgfVRnsv)+yETay8l=POS{XH$wkCQic0r${NLKA%kbRWk>-3V)MOjVK$_S zZu_w(j5qOW8K`9#9%28;J0FmiVMRZI0_bH)q~nRpTXi9p50$$$Icg{bXD*;`)8r80 zsEu-2=_wHo4U+mDpTYYm761AbQ>CPwI@4@OwL@%3^jEy>A@n{JBB}sqNUC{6#4M0j z6jM!N<{1!a@K+sgh)EIto!<-PmNf{qbIItt*{8ac3Gc(yJW1w@4yX#!gv$a*b@xj0CD2%rkqUK6Q912=OT<7L%2&pC0P zV_ATthSx+)06-FD6<0QZ5rm-!S05r&9|Trn;|Yrl?>4#Z8VEy$3RWt1oo3KT#h7jn*Z(Ed^J_UzOSHopT+h`2_YCc zcF()K#InC>jc&D3Ygr;l1)thMuEnB9oI(kf+N>!BA5sQuGi8 zno3)NH-Z}NWNriz6s5#U;pLw51&R+mq_sBq`Uo$2&)AJ{*Or%nutazK)b@e{(TY#Pm1pa2D3GBLMpd> zovW7pW74Sy2-Qp0aTq=sK`%@&IH2OkR6+?-=Bp?@3 z5BcDc*!IC`$|roz53@kqiCp>-1}oxQXGR&Ns6^0K>PkQoe!;G1tqKe{WLZU~FoIo& z9$|}bRR!sH$gl7VIgmzz;1CVgaa2ApCj4gONn4KnN79*Ft?;t_?jCD)N`KcS{oUXB zB?g36s3|P-M+xB^MqsG4J6s%AeJQpxs6|{U0*=FW!^iWIMIS-LaM^A*>Ed8rD3!tc`C=J#faTdz9ylTgd=&10*AWZ2SPT(BBfvl!eR1mLCZFSrX7Sh1 zX_&iQ_}~+fw&07>{;MWc!Rq+POHymNZ0nC=Z?wr5;V%KUvX!P>0hTI6^|>>-Ka!Md z)7=&S4~aaW;+ec?4{xkDzY$7PaR72EJB;bDW1_*cZf%KxtJ#2U-* z#XH5N_YBkKb?CM~{M`rK1PAW|HG>T84n-C>eU4MhdicufZ`dEtEhG0ImWLdaw{Y_A zag<$&drwte{X*5pBQazKx9s`RxZh_y>{@|B!mCd6hF{Guzqu;A+Hp>U%Zb%izN9ZQcJr#^9y0;#BE~zAU@xER}uDEV1m*8X+H_i@f5>RAEU3eVjEu zjK1q7QW5;Dc0BnR4Y4pJzww=0_{pD)~t^1=AJKSagE0ZOBbc_t2I4zrP2%w`*zb?j;*v(f%GGTW6lPO8i~W&1Qz zJ9~@H23eL48jWs`E2D8HIfgbDhi3i7yaubT)D|-_$YPx}{*oyCsb%+8i^r2=Y&Av9 z=$bhDH9N)TbXXo-Q#9sXE4x+fZXjrfaMWMI0+b&fLSd(5PDH-P=ibL8uKkR6PY($6 zF+T~h5T=+^^ngYuoxd>^l1Rs-n0Kw5;CSu^^;>xNfZ}SWtb(@%FtW1w>R{+gZ6XE- z+v%&uGZVg44*4DK^TrYPhDQl7^@@BYDI{M^*SRfK6JFsB1(FqtzYcFBxR6K$&m~Zp zZniHzodv%-E(qNSc#RMCaRCg{IKWk*nvRC%sT@Z9t{boC{Q_~ivCN5!LBRkaWq{Lv zK2DWgeqPu1H>G;7Hv8YQ=l?m&RM063u>qtyuh~hp!6K%M2P$aAr{4Yz2||9|AlFYob$ z0sB8(UYx&p93EH%j9HpBJ!@?8!2oJ{Sc*#!<0Gq;9NQ={hsXbnBAD9HtimF*CB_+$ zdv25BG=eS@pCqX969D%?Y@Y#&*@GmK^C=8#C$;mYt)!IhpNkEEi2$_r-3_2~uETXp zKCV*-`b+t<4usP`8x1l|nOtbYj>{B#C;udHp_Z!FVq1%<>{^~4;@dgo6PuC!xBe@rz>WQH1SKCpYmj`9>?I}3dlXE;Y zb>Whhs?3&>kR<+Cq@qsoVIh}QM!m-pgB7dHMy_@})qWDS3V!n+LWoudmszs*Nuno| zbn?q-YMu3cdISiMIj&?>8N)=LZaeh_=NNZ3xXKFz@&sC(R{2=?5EAk@t&;gm@rXCqER+`?dJXRUelfUGd_V(KhASkgR6WXgrQeKg0k$1b|U$} zj{uyF4xL0s$cME{fwT=DEg(y@`Is{LozF@9;y~kpv5QTg@}>r(-pcZr`-~tX;hVD$^+QR#JS-=&Ro3>9~fry zYLORAR$-t9NyD)JOcD(nn>4IF{o|IS7gc^svzxJ`D5vXw4Q@5v-K?-aEr;J!RPX8lGB>WW~BH`yOWU?Oo@ede^N2173&<3E)PQ+Jy$Mo*q zItW$=kdcHi6QLB@W)-C1#6O3&)$wT@$Wme~iqK0*vrp(=2w!QyAY&uw%cI1yS$7Oj zQtxp&73jRL6%zXV+6$s`#6fx8*n>N`jtJK(d5uG~Z{U{~qKTS$7hek|BpKuWu&#p*QGoj2cQapu}_X3rmI ziCLFxwf*Wf74>D?a(Vm63yyVL;}CJr=Soxe2jyLgw4!07=?iv`C>rRW4x8?RFqiKu zYrOr8NM(bdtKLgQU9J8!#Zj;|0)?&qLN$J_-C%Bu6$tR-Q1JAy=31fQyTW!LN31dw zMPef&3S2F)M$Xb`5|0tjqM1VRz@}xsPuUbcTY)DQ2jwZ}ehHOIjQIfDnPgQAymAR4 zp&;_^DEK|&n+H_-8HR;2_9S7o;)b`M5DX+l{vE*Ff4zmhKLUyiS5JV*QX`QSwfS+sIj70EC?9RN0-St1zk9jK!11SN74!6 zcYQ>7(tZBng5e~d<=yd_#t$5z-!X(z2lAQ6VSW?ioy=@+<0*(g7*pw~EoAzdoXkLc zM|Mql@uWmVG}nXB-C-6L67!ycYo#`H-Z9;;!p8+v)_3dt^yhEBBL=I6@0GWQhhbt) zZr@SuM+0Ic2la?GehV0{-bMF(lBbNs1HO1eyq9V?U~Y9x&#QJlcME}sot(69jBFEN zoqC-clIA))<>i7Tc*}#f4NHlq5VG(L(wQ1z%QGTVzHd6~K6zXM;b+@-(l+g=)xNy{ z1Az$b39z!*{l|(Y2uC}dW9xTa_^EDlIAGjOG3I(P=6T`9Ob%HTn?b&;dN1ZYv6FUa zW?-#MYng8rd0ylrmL+fX-Qq`+$#7unoEf+g-WE9Ca_N`dza!{-%+Dt8ly`~Whcql$ zhv#sHs($!fHQsFm6$I1rTR7=FU6=BXkhnxNrZFqFh`8{FW3;91L|qM0U2)qk`q7}w zrTcyr_0)ZgO!~PEM)%>Li&%$^=OzVEV2PO-=uFszzHe`p_C5NcwC}G6h=;Pl*y@Ac zRK&@EJq#jV9b>=i3e_<_qYkz(c@G>*)_lOd4T9?H?d#8SfcwX1sd&>B;+En${*QEedkmg$&C03C4&!PeM|LT_HO5>X6|C1 zE}vt}pNh{dti?5M9QJ?IJ3YXfrj+nwomE?^sXyn7HMPWe?APMUTt^@f*BY9zpYnNw zawuPry52o%zR2i;6A!;C88liXaj@x|(KA)|L>ld=-Kr}UGcj7$^FV>v6n4sIj5#aT zGIX|QsSU67^XrH@I|Lb(rmZCI(EN7Y%R*o7K3ewtj-N~<9Ps9SA$?H72=mNp*$UxW z=n~(8c=gn;xRalSh7&) z6gWpk_tT3_6b95jRNQhKIdZ2llQA0aqF?QY2}g))mF6MRR7dx;^~I$yD1 z$}*7_!(mPP@`A)RYdHKlgG1VE|JH_<)uQ#b{0A8LRXP>xi!{Dg0*oox z>JzJbB(*R1#ozNuM*LM^fa0{{HfC2vUs%A*!2iL*pA0LWN*V~(w{Bx=MM+zprvfVq$Q{vgW-UF5+8RsDq^%M+OCx_ z?6ps&!){TL1T&J*s9{6`S6i~xCwVYX+-@mU$roEubB`$@W}i2$g8aq0P*ZB0o}fmx zjZ~D**~&LY@R9-6do?mh#Y(q0b9z*nUu@{!y5^nr--js;fTVy!1)`p`4vVa|2MVZh zDdSArJx^QJSWdRe$*VP`D2PI}y~Vn8YE!yy@s(9p+`(ta4$7S)o5^g6{s$!=R(yX{ zUUF7L&n^Mzk_G!EdKPH_8O z?}yM+L%@#r!xZLY2?R4B;9*0`b=G&Ep~};g=Z$60>qjB#OvZ-|_x<|7&@Bcv{>!qU zy|v9dCx3waUdS9x)wVYGqw_^2-k*Ds4}7TiyHGdAb4bjf2p6=-b+NnT6|c`F=yu8n zz|7XdXKW_XkMFJCN+2b=dDWsxlzNP1_~w4BjIQrHhWVM|qt2scxUBdBcInYjlYU-T z__vHi>bg8~s*K%B>26SRPno55X zBmHZD8-@bR3joq&`NZ*~%pMB-S1F5qG$*c;VcN5p?cVM$iHFtnJh81ARX0 zQ{!If(^w{0qG!Dtc9v}UiGgj=t)tF0Avb(@c+frHr=2lM;p_rdF|udSYLYP5bks&w zmcTPIUJX|Hzn6c=s}l`yPaiUF7|PmRQ4V3{l_ArIW4HxlP%T>EW_Pdr86YOkOa2@} z-hoFY6GyX_2w+ykq_%M`?WOvF+Im#Ka)}-wBGl^84J;b~qrzf5y)zTn8#^vB1}|#4 zlV%cB`otJdeAp_#X|-x|P`4BG){a_2^tRLF6nJ2dc_!zz#*XlvF|u}}WiAyRpX2f> zHB`}D;~it{xJT}_Q{F79$v9>Utsvil?eeNR9ed&S77Cd=YP?~8A6UQh+Rikwm8Evv zE3XS#Ysjs1(9flh>k^W-VMp!xqjIm2Bx`MQCf|*}4mL0;7G4j;SFl%&kuAr}0MM%O z`43ZBcznOHN^+8fl%Wy#1l^_g`f?S$!Phiaocw~dTamN)Rb#AR1# z?~Yx4DPx#L25Dm1+>9BG=$z**^TbaMX!NT3SB>R-0uP6tcymq5TCte;gLlGsO_Y9g ztmmM$_)eIaX-ybTJHqF(sMH^g!+O0KPoWx1rzbN$%810XPK@Wd#o>YUKs+;%k-AS| zP4W0+ZiHEO(m22>R+50nQJi$XUAK!!mL8c-k%ymBBb&{R0+P>@$5Pc}@);Gg7H|r= z94ED}pxBxAn)&1GTIjAXf`E zKZ*3XwdYcP&AvR&b0yS73-+rWaVwXQ^d8BnF}*u1x}FY^B{oq|Pg-!U!m(kxu6#@| zzhi+rbvq{i_RW9;6L1Q*(pOQ-`yFQ_c%E3}fJXa5 z`YIDTX*nlz(k%IdJqgEzX?HG`q-8Bw-CQ5JPriz^;9tc_ zRN6lji3`8zwGMAGk@VR6%fk{)`Yfq^u*8*e|5AgY1Mr_Ql5T6N!hTTP!DZ_;vLl|Z|V}C}{S)xd# z?FL7o^~BPisDm@fEyj)lDL#b-tFUiOGIy_fAYK|6q zh{ESK$PS4JG0(32KlZ*nKE|tiJkqA#O3PbnXsc9ft4ydDrIt{&)mmyMnMp{6u_T1F z4M8N*zN#^`Gt}PLY9@MCKw@q#ytJSlL zCuQg{mS<)zXGIW{J7s2IooE{45XB0chrTtf$vDyU*}D<{<41t7pKD_5{kCV%Jg){f zpK+Vx^ddO!*AMQc3m{tL+LKSMeu{SSKvgYR_2rBNVr_G5+v*s?AhelhO#`nyX^KVu zb3M0+dU>+H;o#Li`5a-C&eHpBqj8}f0)k$VMUwA~molNivlH)v1!y2gbA-OP8_q90 zU{d=txG+3)CPEW)^2QF_YJO`?<6(qD*^z%xqh|Ybp&hm{-S)bwEc6KdnZG5%4R)!q zyI%5Oksn5q?!T=$Nzuc@TZ(dw|IG{MJSVE!6zDVHHw4{tK zaf2dXxyEIKkp4i0Zl;J2erR>CgSMYFZIE@^v)~3I>aF)$OwNn_HVzLPVD0QW)GF6} zaIXE_8^+%Cjrg2ZuS+GmpB8;U9;ULqY@Mcq-)_b4z5C;k_lD#3;w`=CcTxQ{kq7VW ztxw*j(p1p}{1+|c)#u-sLFU)KJv{6s2pbBX9lyj`ha8Ohubb-;s^0`VN+%W+YgW}a zI^I_;?xLzypO}P7zs<$AWG90L`HS_v;()BZ&+c1mATz!W$u~E z>Bf%rQuZN~4k;dAZeL&!Tlzq;yp3Anz~)Xl04@MRbNE*7%do6bv+D&Dchr;hKZ z0#<}04t>bpZ?2iEyX5$E5%QJ~z9o%KUD#re%>6k%mUchpNTBRJ9r!y?Uvh4NAl>@v1I@ z;hH(${%c3_Ge6X&#>tr%4!5K7rzi547B~E*gfF?^Zh^YlB6YJ~aP?=fb65MAtwh|8 z_iAV~&d1ZSYPrcjvCy?DdhPfw{W*9C6&(xrXGiU@-#9I3VC+qQ-Fxp)<*lFY!Q>=? zw|M{VDzO9W#{yU5@93;)%ZG;%VBm0d$hnrCn{oW#> z^yRieUq?_0C{H*o<(V_g6xUK3rNsuCpZH5+=CzVnBK#CY5;BU`sfpDCOe?Qsp{ zpl}s7eFF#w<#HUbK)JBurGo`v-P3MXiM{4&VkhfT;{u##F=PY?jBQ7;fabNS=hXm8 z09bV3G!f1#Q-+7V$E*)k>C8ma8yyH)B>Bfx@}GAE&c?h|S_K7oPg6O}FCB~>hmnv; z-HZ?_@BDNx$TuWv1VlKhudKms;CZSC46uHEAzLmgSWY7a3{{w&46X@;26guphTI#c z*R0+n=AMiV!}lk#qyzDVS9U)`>B3ibK`;w<{I_QHbD=X9NI~`36Zd0IE0(0FIKcai zj3okrvQB&XLiTR&wO|1ZKohM46tpvBwbyK5oCK+AiI@+#GO4(gNL#SlU{yUl`<~=1 zIcn0!FcuXLZ!C-RuOI&1^B9iM?F;7M`9e0yK87Q2Va zN47T|;&F%siwM93)NSe=(1C7L^rl+Qx~X17pX%* zd7EUGmBL9I>|n9OBv}`nNs^j0w-C(LWb5g`GdVs6vW*uIyl#AaW?{(0(s>-R++iv94$==uDnr-sP-2SO}ogq}Onz&gVF>YD=R9YIg z5h`zR2OnJWZ>U`2Y98THJb10|b#KozC(nxqJh0}KQM!++WQaFh+R*c79p1IW;>A## z8dg}^B)#k~cQAfZr%KhU$afYfuVBFq>)~Lw(k6QX4{<>)Da1?Lp84`uIUL#5Uf`_2 z0c)Dmnl@T@>aaD>x0VEduyO~Pt7mPzjqUZS2E_#|jiAIm{LJiII6u~^p9kS0as%6|xibu36+!I{2E0czF%MD=` z%8A6izLmsXHL^i%oKUP5OH>KJ5}|lSLd(jIIIf}-3lum8s*S2nGax?qy8%s#+B;lY zl#;N@aP;pd9(Ph~Tfxb!6x*=UrG42YK+&6Tm4TZEjZN=-E#9#uutmk!#r@eY)--r7 zM!-tSdnkcpFKBUc^A4AsNaZDI;wE*Y=sJ@n^4mu3$=bqD50_!&y-&@ZqGY<(lO2(|@7Ii2;AAY&3@?tr+RGGQg zmAq~rIiA+IVkHWS&Q9y7azSL91E9eAsb+Pmxwfi zhmi@>0)tpz+(igzy18wJ{dqETR*eSw+HRGA4m4K*zI8i0^@?bZpf^ugr!aU$4p039 zoI(>BD1M&avNKiM6s^YF)32LXgT1FmB~hNY4$(NRSraqRzxZ(#?jsV+detJRi;Ak| zR{Ab?Peo_po6-P66mRnH_q5QXu7#_wHj~yVDD-pS0URhI-mlkSHxk^8wdMNA@IOLV zrK%&RQOvnTp+ii!vkAjOz4f z6bo{oJ0`<`hfGpo&e3G!cG`Zb9i0^_rwW~QPgOt-TuK0tzy5X1p}jSgiO zoj)vD6Pi)AI+LsDa`WTK*F@FE?oFRL;za5I6(`$mE~dbYHms_Xv3($t0?RH)Cm&F3 z^Ht_j0q`7H_i852$D0J87ef0;hwDZaGa(NO`lyu=BMdLMyR>6*S&4d?X<yE>^?shG#!Z=ywFRPwN1=yq zKrXrT-L;4l5s44fP|r%q?s+PEGR`C=J33LOkpnVfv-&5y*bK@ebXaDWxWXlcybpvf zUhcO}LYZ9>dtkuB$rQbjui*aemper19-ny`N^ID!6!-fvY;z8l4{`P;=I&S^j4y7Y z_#+C>Q=yX(AIXaE45=Sh%3PR%{+c+_N|eZ$*Pel5^wQZj5valoJEXSVz0Ib8`pMB_ z!-`W#Ezy7#h5=xZ`&RPpIp)iIg(DY{-tWW^#w>GBocnWsZDdWcWGQRKO%mXfA+B>( zUcV{mV@gSEjadwvdVK#hq{W=$3`#XZ5v2>F40>F7KJ^G!7V?+OrWyVpJSOK1@Tb#jwvE}Wu>gJGpZ$!F$wd+1uNQ;#>!0#{>pb?fXP zr=HNa3XrTiVmh30CKsB>s?cl-2=@9uNE_Cik)<3vXz}LK+O1*2Ig5~IE93P97-&HS z1X8_*n09z(GXWVoYycYG@1h8_O=QQ$dTM*ti4JvAK0$XZK*Zax{(uuj$^0gIJz(p< z39`4hiV+grLym$Kws=5>eb^$6Sk|95c4w8?BXy&)j_~`+fvVzj1yy3F8hiUNCobbp zegUO&{i?rDk-+?O%t=-J+@I%Yd~`IEjwd?gv&_nFJhH-fZQb|D|Exj7$#1QrSm0_V zB~Y5+`4zzn8AR%c_r}3#0<2r_ZKA_T2_ndDH;D~At`ZliWQ#%_$Puricoyd)fmyWj zEJ<^lWEx44)JT5*aUTI*zKeQX5=H0GRb&@5xDgKXIy-!OE}U>QZ`^yFA$i+#^*OHw zy*i$1V-@K!%>i*Nq!|#T#Rug(qM=&7=?`l}XeNx1=3ig35GZ?jk`H)wG*`0=s715472c89#eaL>HBEannuvMLR!KS2K;z58&uj^Qvsnz$Xv(2={R(TZr}v`b(roBOq8 zaLn5Vg1sldFdgf)dGG@!PS2kA{1}8ZA-{FWPQSf9Ydtn()G2Ui5Gjedg9r$-T_NGN@;po;fU3I+p0p;W03^D$|Y!)DL?(h%qTc z;L5?Lon{Obr8Ua}UK)!1Nh=qgmFas?k{m5_Ysvjzzu~db zj4WPjKk~@rh8MDnhJKjzS#R=)8jy(~Fii;xTi(FwnZAWFyM9N=nWltp+Aa7OlPqv^!`gGE z;DhXVd##wk#!iFwSBd?h;H;1mf=5iqOr6~5_LW{ypXNp`kuV{no7UDP?%3Vy!)a91 z-VtXpRH_s_J-cY|CEAOHypHh6A}vO{-TN@@sY3Nmi%RfSCCez#;aY>QF$=g&1Miyq{2$_6l{6!#XAfw7MK%)k zT$ZPa`SGK0bkz|%kMP^8!QP%F`NNRayTuB2_knvbLKrzs>@SlwE)xR6H_sET8>6F7 zBdpFRPKdcZ;byi1KkOFf&uJTzySR!^Fx_%GH^twe7E5f<H>t$duzi^_n?r;%&XiK$-v~O+%xY${!EIW6ZQsD{E~bW`1OKl zgfl8!@3-P3AP)OO3o9{un8l?KCrw_EN3{ogYj~!ITfvEiiR}p7bJqse4@+k|NaZcN z4#s>{O?IOexd0=&$!QV^Y;>V(N|h< zS-4HtzQv7GFk=-*E0>zJTeNQ z+~}6yxmgj6y}=8D1A;q7zTHa5-^3J50TYceHBy>1=k~}bu%Q4Q#_NWpi7IT37k`gp z)6qSuSs z#j*s)CLjKUm6n#HfdRe0V`zaRa5(DGn_+Jsg%ub9{^UPbxJyx(907wLiNDH3Z~t0U z`@l{7%^^r<;!vhJ-Oz{8OhjS!#31U#h@xkSDJokX3t4EgqdmNsg~7c#^+M zO&$l_Xr~tP=s_Vad^dUKwS4x==}>d?N}9%j*Q^3_g4<$4s+c6Q&8pes5^Z=xUS%jA z@&j0&8-;%S<>Ze*A$y~Ja;3MUP6l6UAY-7p1&QAfv1lCv4=H5LxCdHtxotJgQK-(M z9beq*-9+D0^MX_Cszbh$nn3cECTz&-j0`{xEJ)|G4AYXYV=@HohkZP@lW|{l1HFv& zx8t~9VH@Sf9GpzlkGX?bI3O48D|27g!>5xN4{>dF@~)*2AsL#@$T^O2jfd%*lQGrS z$t|j}1sa9?$gpwl1!T)^_PN#B(z;|7^Dclo76}TH#m6ps)uvp+ZnbRs@5_ zIwyqdrp3+2P4*cWFV<7wT#}@|$C-B6SD8IB$ntNj!0{4nL7_N`4SzoUTwxk(5(2mO-lCCVmEIiJXQ^Zvx|Yy8kQ2{vq`AHY<{v{iiWh! z^d);3RsR~wC?{(6*yo6z@4$YNVQLjDD&+W3MGAfSG6=c0zdnSys6M{-V92bTJ6M|` z*9@R4=gcXfRo4KZm>m@4rtLS1F#4TsXx~^Zpc_Y~ORs00?nKoYe}wA;Q(26k9|suM zTC|BV%rJz$ld+WJ$LKMXV2dg8)UXW-bnbeFL~@)Z{&+K7gdH)1-D0dCg-XV5vhkzB z-5&_2QP6+zoo?WBeX>NVe=-xcmqVVb+m8v2`W%J~kzYqr;$~>E96SGIUAv2F!EPN^ zwjxL~J-iCnZUtJ=e8ex-+T>-Qybm#T!e1_K0c`{!P|4+z#!R=X;$^60uHmgIGvb|t z9PZIA0oavJT9%Na{TQ~F`^j#vu|@VLoR;hxPNPojljTu50u5DL-G1I%3XAS)$1G3{ z!n+<{PGx?q`!&k0{gqE-V-qyXD~*8o0QXx#W){Q?>A@gX}&y}!Tes7?ix4X|Pu%~h-{IbdB9tXoYsMXZ^ajGH%l6`w*? z?k7!bMJGc-~h+(o^!a@Diw+xHk#~f4K3gp)>AAs8srE%VqLP+nl+s-(?>2M zWYX9LM)pC&wi%0KgusYfV9q?D5{5KvgWhZ&b>9+HOMtEeUkXb|2#w-e`l%wmp$*j% zK$Vwl8>&7T4W{55G_WDck-Ut2hX0Cis zI3MefnM9LvLZ+W4eo`o;7bqjI=uzjIB<;L9agPEIr;f&RA%#(ZrLZ%{J|v zHR`(S)G%THwd!K$B5BvGl|6NZvsNp{4&_dzvcq@Wie2b2;H2!c&bqwo_t2c>*e2I8 z6g4pvb^7s&cMntEPqyC|{#Lht*{r2y%RhJb=-DmwEp^6%w8c$6H%>b8o2Ay>0nbi4oNDO+)f>czZi_^4>4z1+>OHsc`cNpjv-1 zA9(Vqb2A(ssRydyBx&h-I@M7)yGw>kx-MvKA^#?SndBSw8g=32ySv{ChYqQW_~pK_ zW~CO?n{y00?rY-ICbHmv_PXb0M0Xg7Ehu8Gesswuo{@J;i+T=*e$@^429ZU}oAA3> zxJ7OzSaP71_f_)aEIY~-sG0ed1T`i4OCz9dhJ=idij@J|LH1f`hi0AgtbW~fc_(kp z>5&ip-I@+i!DXy&dxKsv#Ei@BRCgmh++gXdQxldN7J6h%EsIzS{YVq48;DO$2h6B(Ca{R=-Tx~aJ6n3)o zVz7&DQli9U#t$+wT+YzeIlj{RNdw=$a8img4BYMXa+E@VN34-v#vxJVAA0sp*KF0I9w#ov zyZcl&?hA>)kB@*@RAC?n-=jGSJ>Qc@>C`FeLV*TWwMnlsn(Y5^xDy%>{c{A}|HF3o zG7URz`4EMoxd_&&^{PwPx7W-uvrEJuEzky7&Tu?4+2ah!{WAT-5+*yS-62c1yBBIF z69qYk>(n;2%G(%z`}E8ZCmcBaW*!ao(0-fM$InglO4N+w#MlvZ*y^`9Hz7^CgCmBw zv6~}ka8#;Ge*=>2TZ8pb5T%0X`B>vElI5F~jnj>nuD`8>TVFtA>G%D|uoHKwaU(W? z#cNcYPcp8P9L&*edZYXr{w#Edx=szc#1hA$Hs)s^XHjZ3VAanOLTm#<486?$bm`{y znlo(d%JCpic@&D82{-1;(8Gc`dy zV8zcJ1`hImb8GMpZDzfag!~XgY<~86FnzmilgsoQ^N*P`w5IR-jX|p!V7ZmF$Q-J7 z=IpKRjNK28X->$EQrkf1V9Oo7F0NhjBrv0431>33=Ec!G5U_z)L7*4uA2n100W=#@d-5|SL945%PS`@LH40m>xA9Fh$FE|KDT)jFz@66O zdwF0moP|hZn|daydGPPh=V?>d@StnNCqf@BB*9kgE~N2sYZD-W9$Viye&BFB7*bPh z%&mq^x3(H$YAmC^#7~7}+H3pN;ZBj`K>E0*X?jER!@dH*;SLW_^KDC%O^t-Ywqbv6 zMVQOO5%>KG>_+9f7qX5t=~5B_x|_EpjG2`1g`w!~PUtw~m8u@kk^%c<`El&K|5r$? zP+cAfhc*9kR}|+$A6vy_FQ|-dvrbvFh*?B|WIX}^rL}3%6z1~KbK(z3D8PVFwiMB#MZ9h478|2tQBPJ=)HnKzm z?an_Y$BqS~x&@w$rs^K5ds*Z~Z~3&?nNHvZPJ2W?Eq0J&MPi$rXrz^$8e9@D63yh; zEtX>^0mBa-)aFf0Tw6iXPRofFDxWr0J}q{vlSo>E9J}Lk?BoJZI^nSbF99Rl%v)M8 zGImjqP^mD4@=k*Dy2r*^9j1*q9HG)6)klLUo1N@6vdIf295|9@?ay zX}+v)G2il)?N#!E$}Vrul|OeUp+-f9s#_XyFAlwss*VVHO^it3Rh2Zu&Kf6w7lNG^ z^eSd{*r||5Iv4~K7U@;+mdJR=7mc?Z7UCaxqvI=oRfptRVvq+9%%8I6#g4r$#DVaf z$*(4l{$th%ffT&s@gR^e5PbpPKzhXgXaM;Sq7uK9f05*IN$~fg602Fjy`xkvH=Fch z!f_%y;A6zlnTQ4095M1Ioa+|GMBs!eXzpdA1L`l43O^OupZcrb;@?I}Gu(GE4FBoF zTjL#1X#G_6Om-syuR0OSFB9*_A_yzpe~Lzb1B{ILaZJlL@3GeAtWX8`_>aIycdOJU zQNfZ3wp`Z!Ss0&F8{>jA@%U?=Xf!y%V(rLd$(oXnN*d9G1U1PI5q>zpI%Smr1g9o~ zf({A?e?yLg`k=pAM*PjI$AkZm3?b3!A=PR0U$|SRTk}S6LW%w>MYL3-bqtD-3nJ%O z+t8){A-L2&deu>M*dxT;037xampVnrzrX>|=jc*@5$qzI!>vb`x?i+8K=ucKL}Z+t z-#yxY9N+(TREFwa*4)KP;(f#E8S7I`-Eye(U_p_XbRq*1b4l4NF-3#}63ruW0visQ z2*@>Wo76QDS(5lcBDowu=yvFF@I}+p3L`aFEYZ;I&@<7aWVa|&lYfAYN*Jk0Wf?1~ zWFxhwR!k|fm?{5aMeQ#a2PGQ+*GUc5?vq*_U0ZoB-%1uHzruePDPG_Io+?oOpl8ltEcxx?{9_) z4^TPNabJ)gmEw;}r;5N-Au^#S{rQ;n?~=?4!9>H2hk%3$6~P1jDQyw*H~x=1lgxQ; zKu0N2miFi@I8(6JJjJS>U{g=ftG1)>yv+MfcyR^(+>S2x42d0wCOoa55vhUaa7OF? zz)j+oTfzoZiWSkE6(;)?bh=Z-&7~AiJh%TFr$QSu*xUHDfkjpNAyEA_gct1p&EdK~ zf^~mvR!<<&j=1*+0X~h<&P{Qf*Uu3&5u=?QLaHJ8sP$*E`7aO>3zDfY7TB&=-ES_5 z7o>6|(Q7ih#0wH)No+D*PvV$~tjV?UG_Q@Ets#Oe*~Jp{IFQiR2&(v$z(n&s4VE^BDg+ZF=l2DPxKrL9J|6EL1e1{7`2(CFZ_e&31rM4@*ev~z;#?;3A(B}UDWJiE zYc)DWi4asqYb3bS9#(Z#cy|q6GC_CxI_FOFKXSmIVdU(P9s&+ccv?S0tKRmQwe2Wf z9dxG?#PdigR>Ymc5f(Y3>>;>Q8J_4)D?C*tT3-VXuEOc@chIoU;Uedz;sI#bA$YqO zvdovo6WBVN)m70!w8!l*TJ;%v74U?d%FY%&#G}tew`G6dRJg+n``+*{6#s6p=pOcA zP(6h35_d}Fh;?0bc8NPBk|nXpl+mm^rLrd1#$CKNQg=$FPhv=kEHLg=P{n^1rfG%& zgD&I!|F8xQ7jH4{i=9MI?~5Mw6NP1ahGC(VkOeNjTlPbl`HrMY@*#wxGd%&`p+9{% zdKF^c6N5>x?qH*z2*sZOohk%Vg~)^<<5MEzvVwztV5^1mTqs=t+uay#x8P4lTGjn* zYWQpe`qLG>KON+7tu=&^gF|`(I5gpD{fy|T)7o~lZaML%;`yi)E8LngRCRWn_20B#; zri!qRcvIdSJ|6F$7)+e!B9`mEATjE>N$n?I776?3gttNjczOi|u0hF46arWsHxJok zO@l`oM(F~GBcf%8ewN z=~as{Xc$a_2I5|&cw)8g-#8VT#%A{ei@RC^Ti;$L`#O`oo5KZtZ5nT}2no%w!`3vi z^%d`~0ehR_)_1#j5?ssM=)l})qUbT6$W+?CPbFA*rShS~!U~>%VBP(wB{>zPawKtY zgnp6@ER`&YcO%S^Y+#A3NjwP!K(c`)f-EtSgn=ALXd(rTeM(@W8;*yNNh0bGr&GDY z|38X9ieNq>#m`Ag*&bOkDW0%pLPUPL`eLs5=)5NUtX zFwtsKuqzJ&33Kb@wZW$dCVC3-5HexVm_VLCtdJBufOi$5Q-xrn5#xgelbpnmC;rm@ zN|=O7hbvD^FrQwEL!>J^IE4WDG9QKvbS_dGA(Dqi8>HHm-BnJ0Pxs)VtO5DST_*+kbGhc=jfR*t$A-mT&E7({S@BM2ZrWqx?&{}a$1=?{ z+V<*bYSMp^P_4-Wn&x-EZEJYa)MfANZ7ff;tEivUsH+Av6#ke{mAtQy2H@Y1cbo z>jEL{@DgmN0LCwWK3Zr1dwR|U{2M`1! z5ZWl{@1POg#XLUKFbm;F8YMk>K0YZJX^h4S7O9u#P5vY3gHqO>B#hZh(n>#&sZs43 zWoGQf!pZUXcS>!0&1`d^xL|00a>;fFo9xKD{A|$Puvxh-J7@Jfq7w#%A62vvx}t0$ z^ntR4P_Sb1<_YrtM3U}6w9gQ2H$s~cDZ1I{ZdeRO(6UHFyJyh8Mnf!OClk-*&=84j zB2$Vy`;F2Xw5y}SzLES5$ow?<|5jpkm-C?7}%QYz{oV!DYg8_HE$G~ z0{sx}gx-qSSCI5DBh9<8n<(E5jdmpBM( zI_a+~w5#|M9;`nDFRh5Dva6x9X|!ff=r__KR3l+`_vdH6?=-jtAuXaFfEP_---kR& zO@Ems>0{OErP9i)$)iHNv>wX73-79lb#Bi=Kht!0(NWF|w)-dL1=F*W>45flLdGy7 z(>%Nl?PA9D8GB+gb6S8qJ=&|NLgHHi@)Y|n`r}8jR{y~iqgyXjj0()m>lbFTKJb2$ z+FfRzf4Vj+t3gW)VK0|;+b)&6TSNwlHB+;nFL~u!$0^ zAf6!Ma&e{2Pl_g;e0A5?n>LMELb^T?5K^0FK7)7nu-E{eIN|_hBO}RY)b5bk{1@d` zQear%CYZGQ!OHnHnv2Z}*#_qyADkB(w2_g5K*i*7QMC>UMI~8TolM2P&a!pI+_M7c zZa8w?_7$VL$Ax|3G{Kv5T)o=9vz$M-UtcZ6;xRd&&uMtZTvC;R6;T`~;j87gpDWPm zy3`A&GKZ3O76k8cns_JEtBBIMW{8bH=zV#V9OB7Z+9T*I+X;BOjSx1; zOFmQ(Saa7l<#d}u3E!Zd;Kw{2Tg1!%9jAHWk`g*P9m)^%w&0|(L6F#Eh$md9c!jhu zfeFVcCP?Q<$prEhS1d_n$W6p-t0WVlvxjy+DEUFl+s7_pj?E}D@Ao4uB)E@iKMDkY zaw6P1tcTYa!P-Co-E|*j4PN~r%x}1zX&KAuzrt`Rl~F3G#3+?xfxJs|%w#ub!X{M} zS9NZ7vL_ZKjoI^gmQ2j3*So~hYySwbl@%u&%$D~dEd7%NB|8g=Y$zwfoiX$qx(`UD znsp;m#Jm7!Cz;#4VD#)TfEalu!BE)saSgBYXMSO9=gn)#2-bG~0>}IK29W56Ms`A+SWJV3TU;Ao*9(uM zcepzVG|aANx+J+DjDqSG_iOS$@A}#|UEw{iFFb}k8U?yVJoX(Tk|P_VX&&w~i3Y91 zHP4l?Hp6s2x$Euda}&hYHhJFrhs8ohLK3CXKiNp<%#jZ0QI_tf;1ZAGzZ8`(sM{2I5ou!ut^; zWt5Pr4E>L)47yg}IR40IkT_RBL1%RaX)5*h>`c_BJjO(jf=o|g0(l^@%o9+m5KkbL z8P=zyQ#P~m(fOQwre_w(eM+@KD3I(#9X=wG_V9_y%&JU11NZ}%;{jK$mwqQg?yvIC z$^o~`kprIOBL}>~6P1|&Z>+(8mps2oX5WR-zPZ|9Um+l-?Y7+>)is9t04~= zDZ*%7BW`BDD?^Ava0IO;g3SzZV1IZ=_~{-VO($x6k_J$)A zBclk_D(}URaL|_p z*H2eZY5LWTM3R==q=m}$wz#Mz$gki@ewLtI^mx8(QNoYGJoUk6{k62_Sp7gQu30g> z4TYSPtP-knlFj^gF7v0z94>hSS9HeD&+re*Fh@T3y^!lAv=4OJ3xegG^m*o(&;gPB zs6E%R^MgJrd~q_caqq}!ggqiy%Jt&+W?F3g%Y~lH*A|$TXl}poktpz#zM`Jqm*i_& zZ}XZc2P#qX&y93(PEOe3ZER1jTA;utm!2^bQO9Q|iBwnVGA?O; zXfMarX^+<4(2w<3O(b`)I6j^2B`1JSqHKQcIrgL7M?rU;_Ief;_?2fs+pdPK6QMtQ z@pSdxN3T-tz*jHxB7o(Qn%ijuMcx%%M>}-TO=NJL{>b3>;-w?SmR@iDE}JTT@6ZGh zX`K8KM!1VP1g3}mR@M`zwwdLNJ$xik^XmHy7e;2F)ng^DA|tC-go6h1BN#=xv<~-2{Eds3D*9I`?8mn`AH|l3m1P2jlFFS^7AK_;VWA(DDUT= zrekGn*jskC5Y5=6g@n-ZHJ3r6ie5NG5s247UT((6+Z&de zkNhi``FGbwfG*$Fyz^EqJX}jbS$+agcfGP2A;y3b!Gp2n$md3hB3q{)ERd8R2alPa zGc%ZFLen9U;y|29)eRE>Rf$;~AB*}g+MkAP*8ADp*+-32_|MnBDUF^Zo*gfMURuZQN z8{eFDmOeQsvZS;sNvN6m0_CCzR#MYdl^AI)`o%lBK^m1DEE#cc4CtJ< zNIgB!rbM%@`f=%h;6PqkEu}n&$VA%^%UDMo6>20`ief?jN8COg2Kl9QV7&^5BO5l* zk4V@cA)j)D#L~<+YdWUyIU@&MqOw2)nG!#61P=`aj!Nt^;W0ZB+2HgeO-&OGZDIK$ z-|(5Wm0y2)L`rRzNTcV-cNdh{>^E(GM@~L?`C$uBSC7`b-P|UM;eke|vJ%f% z!IAiC@9@zr8kS{0%l9OeOSj4PB;}8o$}%*J?q>y(sD>4-m`p`f6PIr)zB|lTJex5s z3qB;e&&F1b7ifSvEoTF47*WT3O|3u4!|hp% zhF)Tj5U7-<^?VumzH$^qPNJGETj57D7+lCmzN-@r3gH|FOyGe-pNneF%lLN}0UI{F zTmGj9C&E4wy(iMnDMQ-jh z8-0m6c715Fui-h|Fyj`pVW9M7g&Jp@Jz?J0lNgx-1Ry2gqodIY=J>~x9|xzKiI3}V zRoCUm&Mm+_8VSb)q?CV3_9&GpmvvhlwikuYfIdw6?BddcI6Vy#s^dBSky zAv?MM9{J>{^TCmhOT4Hfvy;n(baH7{F1HuTah>C$0nJ#%2A)(L3h9dM<{MYMae<_1 zc+jUFAqvjqg~)$_niC<6I0W7Z?;W4HmD$-_GSDS8GanDJjn#FaHtW_%xlbxCjYm4L zRwj3q!YSTOk^AA2sRbs#{)~E)zj%4%VUIqJ4v$S{6dc^v@OUPZrigsoDK}t+ef!IO zaK^=ppmTdq?qpETy^b0tNvkbe85+B0g{3S$-*#e)dgX9k2MED&Q0AM*O$M#I;AUh^ zBv}>IZaAOtMI+y)BNA*ClT9vOzro)%D#!Jfkzp=Cw-^sCa95;BvzbjptFrmm84e@ zNVJf#8ppd^$m>zOR#rO0yIZp%hAz?JnRMRqX&ml>tB}UEkEfE@V3&Re(DTxQ(Aaa= z^8LwnX=uU_IIXzxAzG{!@$3>gjgfS9ec2@n8Xy)gTw?!S(G{3IbLdn`yLcy@82J2N zfEKoKA*Q7;=aCM}ep!l9!>&7`-zj`Q8s(%DW56R1$#eb1t20r+8E;W|aT5N6R zaz*cP1fgf0`<%7%q({9E<;f$T`BxC|!&g|qKRY9ze8vX(y=KwvG!cUT63#BR`bM~{Nc}g9LvLilH9wMZ=MbS*kpt!SH zF6uFZQnLd!D{WDXh?M`8bn<650vURQy!t*v=XyP1*HiFZ1`}|+0k%83QZb2CNL&o2 zrSd?OBuPX-S7gH;oJ(fAaY<^=CqkMqoZl-3!^Es?BXVh7k+U>_~QYf!Tmg zc+qxt_HkDg(HKsD?<*$TkCV&9l>3c|!3*Ix*Qk0cvQXN1si9!8T9FcFKBqCKVt z*|X3mJi_E#xtV1naHynWbjV)DfgFo$_x>PcwrOO(BXpQIpQqaYlW^wgG>w`*>ykkEAGq#r^4*j9dV-{ zku5*Y>)?`yA9ai5QN)~LOu9GEW72Fdf$1pN-#Rl@K6$2_B$nQ~6(flf_hYz!h}>gE zf!Q@GHT&=h7aP#e0QHs85QlVwn;8F4)LX2pJ! z?lyHqSjcu4qZl8EV$^6**o1h53bTF^G>jObvuLdBwyj~K8mSS`bp|#;oWSDb8Im0- zekQFPL9nAW7j;ubHR?cSXE(Ct|Hg)nVD%`K*!U8uBn>erx~$u#*fMoG6~Xqo43cSD zYY>gkGh`3I_?_CtaLe~<9NVHOsI|oMR3GNDGrtX5k#yXe4_%Q`%}I+u=mNdwsLjpZ+?qc* zq4Zu}re6%jg1WP*#F~O4)b=C9r#UqQ?)%&E!A7L?6-!Z&i^U`S-FY5 zUvjIJ!mZsKDYh>Zi;OHFycB5({Jryw{?{WrKr~WwnhKO#l~D7WH|Bt(C22OPiQsP4 zcJlYC{XWVI>5FxDXSDeT>!$2GEiF89ok;U6IB0jx(d^I?pu0GG=TtFG$6z6Gp~?Ox zI(@DYO;XdgZ^>3zyd%|pq?|BTTZP9I1cZOf8T(=cOXv+vfg_l~4*H>Ujto!FlLdi%a3H61>><}i+0+?4%YZ>A-a8F z-JJyeH60I)k!d!3r!X=*GPLAGjm5t_i()Is0F*Pf*W0rkwT1wO=jshA==_Mt3HURs zy<8vo&yW!pB_jBsk)k?C4vBsJ))3})MkbR6lf9ChU5j+8%6YFdmZZ$$s+CM4oJE|) zfr^sMukom))rgr=++;=ImB^KimhF$+Uf`TUxiqA+)g^QlM;MPNo6PrU$ zO?uAOnbcdbhke&EZ^WLmS7-ooz>_YDCwi-U$YMTb0C%;3D;;@W`p@BJQRx%JyjE4c zYWKwuJ9BzsgoieVnmkH#UZAYzUkY3*J;ZDa&%ut+NlvIRBgYodX^VbX-nuh%s^Y+wsKR4)!r!C#Eim2O z!n>c}NfUkd!-Ag;HGl_YlxtL*IloY;!_q1EcY34QH`o08Qwg2$*VkX6E{M>#4m>oQ zqAqOzAF5FNbagrfTA&JBidoogeG!xI!}m@1S+fd$l2Y%x*tbuFF`E^9YgX-9(yp46 z6$nXqT_q%!I>;aa2IWkm26jIGlq@WpbWOT!7%(mH!mlJKg4c%VL%Z*QE+3FF68ICf zVg>|ysoqBVI3qxK_NL9nY%4&bDheMEzE(kUU14j;GtKdu61TuJQkcJsU9+QW9JLCl zi}*G$fE?Z6D;i-5&;A1a=G9it*CQwbLhX~*wme}DW#5@2p6%mHvaJHW*bD$5*5jJZ z#U%UjBOqPoNGX}1nG{qAwiiLJ*-G9z}2WsFqqKWV6>a(uR&L76$9haF1fHgp^D9pgi=Unhs*oQ0wq zv}wmKh`r(XlD7lX8;#I_y%35)s7U=>4hc@SS4jLPQ)Vb6U`&A&Hsso68Rc6Q-TGul z+F0tL@N|c>a4m)^xiRbq<$SyU`|CV|b1d^zHHhP!=cS^7mbGpTCGk2ml381LE!@ad z!*VZQ$DNjf7pnVcvqaADmFt-kM1O=YIHnoiKYT@W0?VO$6Q8ahbOX9KK`SBhVB;5k zPU$%J+>gAly0oqSY_2nfJEmO`tbU+V(`>31{QELSynwrDtDt zy@Z3j&o&$ABYvxEM9`yFKMQ$86wU0}9Mwqf6uBM$D(c);9r&YL0lI}drO?6quMJ)# zD`2)o_-yU3^fSUico!8+;KeBd2YEo=7|j8K#ZCRlW3uU=O%;!U>5!4hEOWSD?r5?w_IRYcTt2X0s04eF&Dm2NC3PxRRme3FT9S1Yq3oPxui0& zL8ppX^Nx}RvqX&$@WlyT6$``h1zx0P)Qfy*AoAxf(N7ZJ2r_y(rx13cTMS`vCMhr|HLx6x zS7b&EznB^-)E1D7`>l(+U5F3KvKXc@=W_UXENBoy$9{$4ct7COmQa6{XnG`>>pw%4 zhpjuk(ec0l(K37z47qX1{XE2Bf6h!MGYuo7g6`S6fmtI*Gy=if*yI{I$8wMOXe4ORjgopo%UfAbZ#2k+f zsCZqt6k=y;4>(<26|A%p#e;@Ph5AtT;Y53noh+&-!9LSuI*oc*X`dXgH8%Tpv056| z?NZ~KW^hR&sYF{2p|>FEDRDBz0d-wfQ>iA!@uRp1aDgF=nnlp|k=>*!0kPbffNPVB z6;5SXf^3oo9L|11{*9aOVnueo`#RF7!ZhDWYq7zAu={S}$ z)z2;>HT1NR9P)hZV25bi0U{j|vrJ`(ty@J1T@lr0PRJxN9ocbF0lLp>%+zb9rtiKZ zLsoKb$idBqBnY=7diFJ;v_KGI<2XOLklfxaRyA_Su$T2I3vSmEuP^Z*F@;XtN2Bm^ zIIW`Mh`?M~;NbMp<6RY&Pgf6b6Sg@q(W=eDu^%HSSi2q~7I;3GR}A$kz!<4F{!^mk zkyt7o$zd?s-hX^211ry6o4V#F~Y2Elts9jxWlF@8i#TIko;vgxp9R z9BZHANSctupKHy&{Oj9Gp$hz(#h2TJ(x=YR8|er09*;Z=4#8E;kZ|6+^~Oii(V53P zY4y+0gl6O|Z}6YV+P`Ho%u91%l$x*R4kg_==uW5>ag|I32fQB+;R9QC0?&sF=@=S{ z1klU?;hAaK-lG|bSXkYt=rs43idizR)F)Ab zk-7`i%`hmBh<;IiCy1|KY%{G4gl^q@Rk>d`)4N9p5CHP z6rOT_5;Nja@?SP#;>lcp?__D*#siQzAZ zkuM~vnS4BqEY_*g=D`sPJ@iOBW(A210JquwfZ#TXg$w)E5cAr5!Ul-g7Q4aZ5&E0p z4ylbRcfwHJT-qRrH$g^+w`cVh)D&U`r;9vp|Nfij#oZ5zYO1(Mnx!0jyJq?Dqiv*e?~4#_kaogR7S3WfZ&#p$Q@cKxpwuCl536+ zlw508?Zr7HS@J|@B&906=ghefVrO!soZ*=S8*4eO&wa;AGrYD7hGOvyR+{1IUN83G*~o-mNF!jGjdV}{k0gf{k0ROsv{zc#0!EP&<95g0w4h0af2WL0vT>C z7X&~6`qXDaf>fk}VnSI08{X?)W{8>6Pf!AXZ{sqPeXPmj%6mfQCzL)%4_b9W)GDVH zU#;&{)?hB1tL5moryNikin&?=w?*+v+kja3RaHt1ANoXpSgr}W9;+eq8vUsOv&NU zIpuKpelv2(-oJlBVu)#Lukw)2DuWvEby=jv8%->PMxQ-~msr`P2ql6sR7r$p+sYxr z@8ys+?xf&6C=s?Bc221zw!uO|w}EqSay1yU7gTF*oei-wH_`1>C?{T3%J`{0!r{HB zzm3Pq3_`uK2IB|NW(A~~AWk^J@kQYQG5vyi8LIm?+kXkw(%X~mord6UH@qKlL283i z)&D9ug&PapB2im#+2rx-3fig=FVdkCIcKQYHlx(Xd0rE3L#aO!xJpos~3(s}AB`49?uu{RKd3m$jUzE^RF zt)swh5G{Gdw;7G(EE`J zO92kE_D4w<qX!ztaCU2(lAgYUWy}VD zU`bTspvh6P+kA;ehY}p}+sSzA?YYfM>_CNLm#Y4qX+((Np0cjqencXNkf6TOOOAO! zxD0bN#*c}VTqDLi!<7Q7Knfg#5*E9aoIH!JCse1-NEP!ez`o0n7Gkc;qm96ihKe1B zI&4;-fDJuccJ=}B(%TOpSGI@TAf0_&-x-RaehvpY*In19uB%tg0XIe~P`7JoGn&6@ z&|eif?glN8@U!&rHqJ2FhXFebSSEWV(Mh_X+;{L=r$8@B*R6OkaDNuu=J4??t7|6|Kj zCyGxGTQZ%2(@4YX#yS;r;H&0s+^zOJ^+r8@6Vf4A2ga=~WUCq#qP@fNV>-6-ymVvx zfx|UAL(86~;E%8Y`DH3^o1tG^(IIODgf)g+yk~+=W_I|s1*G;)3to*vvO!w;&;7ci zMEUEjtFm7a35OgBfTek~5*D10oa}svZPgH%Ns$TAkxeLPphihuI{Hg&e8(NS10HoT z_r(-K5aPk9!YkLr5;SV$-Vtl-c_JI@C7tpSPw>DHUn|yobA1hHuPjQxtieL`DCm1$ zGa-Gz&*wS57I$jT8u2uvl31tge830I=BRP4bOmbq>25*bk=w);d{7`5=4so7Lvl_q zQq)n#=3k0Y0MfwQv+27FtHjJ4&^XNTMX#Tk4vt7{v%0-0+&AGcDrZ5p=NoUbo@=pkvLn_Ah<&QxL@sa4 zU#2$tdK=-h5R=Eh=lwcQqk;OgP1+>As=2o@ho25Y0MgTjwu!3LbvV*{V!|2HO)Gt~ zdPs_T+SkZv@WS#L!=0yXlcC$9*-!*a@8|K@uB9ENhUisEI#uVcC=wHM^5K-&VzT#k zxLP~hzb3b2uIP6_!#SrlVze%OgwE|Ha>z5-(uOo7V}T^QUI{WpFO)Nqs#J|bf(-7; z$i6$XDyb&hJ%w=1STA!J*QgC2 zG=;HSvLKX7!A!9xRNz@RpgHC~Go#)8_0Xbd$lVFf2&zi#tH|IrInVQx{ z&?7;nvX*hSmX)bI@g|%AU!fen=7CGcLqWTcFzRjI+nXRJl5f2MP&9d!Dk5=^a!SB|11V+J+sqAr%H|TPZq%k z3KaRxshsaB%*Xja!O~6=E(8cFF)dv<+Y)rR^AIKX-$;_t=~fYUf`f+xf{@^6BsapU z&RkywJv}Of#t+uKdd!6os{if8I|2gnRtSf2g8ut~eu>T3IK$R+jFKn~gwqj@C`#jW zOS)x#l*zzDRTmCI1PZ&wDk*%+_5D~e%pm<2D_xVodl=oN-{7I*9j-{?YO_*sHgL6z z)yDqb#yKYY1(U~R8()(>HCPAV`J}3gN0CzNt-*d4;j=RLNFrfS3Jz6|YYatOF(9E? zk4@TDdR0Ad<3S98ger0}}Oo9!*dQO02(Iy0!m?bC$lzxVHv!s)evSaCzc+X1)7`hPzU+q~qMvy?d zBGh(9Y!MWR!VgCd9mG>HN{w#~l~#@wWQIZpq1Qn{W{T;mBXp;(#}h=cu1%P4{wXe( z0M}lG2|o-~OgODU8$LP}ChR<4kef)t!HlDwp8t)h&jga>!j*0II1WexSp0rkFb6zO zcaBSB3byHIKDn~b0NGW-0Uh+ALpJQQPCE#&;W1Mr>C=TY9-+&+AOp@PMV)s|5Nd(@ zM&{Nz3So-6^YcOmko!ufTK%lB;o&9D=;ZE%3o;EXJGM*4vb(USVj6~V08bV&>LM{a zLT(q!#AwSZ3d#X!Tq~MaP#aic+K;j&S~^@qBL6*zh&3-`fd70US4^1$n0@l05;I9J zUsMuc&mZR$bWbk!-6ghY!tb`jEfTH}D3J8)LT+CUvHOZWnK*0@y;nLXdCHy%0X>46 zv|IP)#(LY2ms}Wh#4%=g-m@={dCgMSYIkoW>Z{vrKpex(7>7!sX;`8klZbeQa)o9y41>}w4z>{ho%lS3LLY#XEN!>sX1 zoN|pm*QIOh`+&QFRcsDTh~rkB7AsrzZIj14hyCB0k^(MSzVPR zS@OGrByKf!C`f|f9x<1L*OOgB!d9TVoFYK=3gO>>uw}S=zD>VHy`E|F=dv z4UV98BLA~GDv?dwpybUhId6KG!<)R7O5Wh2GTuy^0sC=?!j{3NKHE1uq$bgknTD_i(WLD;t0aepD^`88{jPyvAOw-yw=u--z$c8vx%v(E z8baE;WtjafpY+*R1_BnObITAZ`AMG+(8xv@3$Wb!rI)32QeG}J3Y#Bc$v-!<`+W0< z*}nU8@((^!rghrpcWvKpZWB=0S~>Ysw*)xrTJrTDx~6Jx?Ck~Av)d-G^7akS=Kfx^ z2-MRUa>K_zF<(VKOfc^l5VnX9L4`_Wo_Ei02CnDsj#tsQJrpBd@U%z|EK zUErDFsv)Cw4PFX#CTNUgZSHv`QkBRQNA%0U5LRBQOB%q z85@Xwdd1;FvYdmOj!K975%Kwt$-b&`DRfbSb~JsK6Z2$H8v$PE*0s*$v7{|CKQ^WM zFkLh0#gFtVAaZz!(*?bB=EA$XIncpoUe__2VY(7zMgRmOS=pn(IKi$TDEBJ1b84{C zyyw}4rf$`XG^h19(x9vdBU5_ z%d*XuPpLSyQsJx6xM}{^N%_akyPHMCpBrV0@y|ojcU@ z3e3p1x=o#`VE43)3~Cw$0w$|F2j)^YkgP84P>5Ze0RB(?dUF_2!1$4$&5ZDn+3qVm zP8ER-pF!uL^~QEsz*+1OHLoiwvOlGlxy$CGQek>r_@T`m<;WIZ0`!YOCXzL?cyZ-c zkjf4VZAS&PQ#kHo%RD;!O*;D^k5TKTk{@gMb39pPrt(UlMG3ylGaZ|oH3+i2%Ig-l zf+8{rU}Rz6EWr2u__eL&4U7p7VOs zj_7XJ(pn~zf-PnuWzc+Vk)P_LZR2LG)j$U4)-RuG&T=ZgOV25N_>Y{D%&>9#mj8|1 zKsjIGWDFbFQH^Lx=+HqE({(iQQG&c~C_UYDQswVC9pveCkWts>rXi8% znqb46H914KI<*xE{)jsBqO-{)U$7j}xm$9)r&M%?-|{>p*TJ6`Wcs7pps4JpU}U&O z2zI$O$F$ayDna*P)&`#lYp~dhS8~dd^n*>C`|^4-f|E^-uwYD^>Qyfi&$XvLG@ycX z3VN=V;6wVNw?-Ok{;nGdX%rJ4)y&0eAczCAj^{_#jcB zNY+K5hzwlCngH&GG6lGK*Ewg#&~kYxAHfQ=ydQ9DHH*EC=ha4mB7b&?W7gF#9fR{G z5=9Y_U2pQ3wHjZNqmd~VzSz{Gp2e5?xX2W$FE<+I1qhKTm0)krPrGBi45}a%nPA=A zmcg)B{yHI_hjgRi{kOiyJPyVL{C}^$FZu85*a1~^^pr6wq8c_aPd{biZdK(voH z`33p=8Uo(GW@J>5uFxlk&q+{Aza(Onh8&4V#OUF|x3QN@AyBZ$4LpgcNk{ssjq{do z!IZAB8W`Ee)8|U`Haq*Sd)_&G1YAN&x~1G=<}DA1BzQMD<(lI=krKIut%CHUlJ=Nq zXQgE1qHzj&o3wQxYfQ4UKVGza0OpDX&{0d-oo_z}ieNfCb@o9;5qw zr0)7C-RF80kjlR4CV`=Kh!g7ZM(eV({cG+z0gaOY^mxr2Q@0HU6rUGDlE{iF+KzhF z3Ze%s;&%{q_Ums5lj(0LCJS-OChM;We)rG)IZhL=K`_v)2neudg`)JAjSN~h;wVKX zL9`-mWFUbL}!-> z(PMqoXdJv`=*8OI3MjjLq zA)f*dk*Z&zC_X!(K#onao%-qOG%ljTSQj|izpT>Z9Dhgsz)?5%1-h>NvHO|a)-ES< zJM;Rs$wDTgLtjsBjsX^M>QO_{sUM)yjqMMwtCe?8 z<|+StCBS<&T?DTId`kGoB6%s2uoDp=HbapB3ZTS7sHKSOZ*LTFt+zvjYih#9rt>}I z)p?>Nz#*fHz#$aKCnrh?L01(`!kuGzRRxee*3war>!Kj)>d1N(H7Re*8|?Opdb-dr6U*QyRp` zQ>G$DIwnt8(U5nP0A6|YoYbYL8yIz5M8*_OMFi;PDdZV)RC5GNYj9Ku{kXdfl>q&k zK-2E>Bwo)X5xpqno!q_->rAZ#1_Nzpe@}5cw~-=Dp%nk>B>cEnf@`LnOrN2oEQA-S z)Al|J1U4UlzZ4{4Lh2q@F!2{xMzfN$j_CHbWTe|uVsoW|D*Ay#Z#wyddRoJNF@|}u zf1PZbnb78hbOV5V>^=gyXj0P|_M2wfH<_e93>0)?5fa+PaT^k)7AK^?>j!FqVsu+f z(%CEa>N=Cuq2Y52upzac1Ih4%`C+O4VE|>%s)KWUr=u?0{>NrNoNac~>25+B5Q6iz zh%~Wt`oJ9$+~&aXUFj{GA2o3V~Xp zG=kD^4V4|ZgTsQ>pvmdoa8Hq@ya%~xC*zwuUAin&q|5e~igfYtSxPP@ zo3PqY{{tf{YaP8SI)9pMS9&6qw^me_9A5~LLo&W)z9=63{t+BauE2O6|8zs; z6>ZCgYhS?fhddxvVbmUYKNsU6ZJP}}gxm2}9pv`Un?Cz;geXi>S5xGK(BSmEpU|nL z5g#l9t3ks;QjVdgR{{-d@QI-s==N2!0ZS6v383;1sK`Ps)sVlSYIsswP#>#0xu+vK zaYIB_s8{rEFGfaoNsLVArl>_SXDbotv(S$T2&HtLmx%6@pyRN3;mb(;qXzU25De8x zX(&z^DbZhcd1x|xpl03SZ3Vz1tNU~scLmDXQV)egL7|)G3(*ACSmg3bLQ{t zvErln9d{-o2{pB?Tlgz`&J+w-q6o_S$0Gc%f!k%WVJh06z>m!i)`jrjAY0sM& zx|*a9tlKea&E2f>PHQrMA&s30WSHcKYB{bcjv$A#h<__UycHPhTjpF{k@I!GbZAW* zB74Sa5xle*QR%)dWx`u@A5VO2U*dQhej$#x?+knQ%!J1??cIUSgAXNHB*Z`#;1+iZ zMovik0@RxKiJN?~!!_Rgrqh1c_{!0bl&&O`nw@lsp&yO6J% zP!@*8abAEhChn~ukOxx3!fYpnh3^v-7S4!$We*p>*$I#3tXFCI?({N)X@bRIZf_Th z<{^BaDs%O0jz#H#7x^%RP|u_L3b|S2nf}g~(+a{$R01=f#v54+QV?o{n#7Y>8Q~9) zb|x~_CMuRwzsvmtmERhH+t*>)TTa(`l^AtHL>46Ijmt>x%F@L+baWlwQ^3)v{C9o= zAFEIypH<2kUrrs2=F+=uxjZ6eJaDUqlTX0OJ?6q^(J@aw zt%;bUNvRlDAWTSgW_w4IJ4yuv^(TM;ly4h~4KB4>QdYPKVYxB;4)C zq>;NGERPM-4ZJm6-9aYpYmKUQug_vYVmUw{zA}jwPdh)stFaxN@Hl1^=o&f#e3$)e zl>>2Mw9K34wBH4p!BvfpkYgvvk=VBT$m}%YlF6YVQ;yu<0;~y8;T{T-3Z##hE;~bwE4`GB;^b&m11oP`o`<>$hoaMX3&|Ug2kR}9fdlHY5 zNrzS)0yl4gNWOKqlg{YUqkW)$fAw}90wZp8pD_D60%q=bPw9NWox3}i2p6Sx*6NiC` z+qf~+A{7HOiPE7};O32l4gd_d%e$<3b-dzjyHOH5#g8E*Ci_k@7wvmeyziV=WZx5m z&P=>90k#3Th=06~?DNh3_3lS=FsgCm392Aw1BMV7$zDz^Q}b4vIVBM=<=eq^uVXBt z8oDGQRKo>vAy`l~JW2@X5K9SHeUai4$HTB~Jb&OQAPSVR6Jmh8$Z7#~58I*g_p93o z`qMFI$4b8*vMUBAfIGXn?HoSw)}(iIqC>0jZr*sizfL~c?-V~4$d&ZR!`a91eu)#j z$4Qp}N1+DZ=i*dMRkt{Pzi$r|_q&q(2=m@PcF-T{13)~M!B1#?!{q2Q=cHw-(?MV? zRH+{*Zg=ttA?}d}9a{zN1nv$TU--Bfku9!BEs)y|Zo4=h5a6Jijn716Bd9`4Ss_J` zHzrbnC`r(K6vNY>Ky_4sw3B0bP9l)-Z5PK#f}a9FkL7S2$3&3<^az|2(5F5k9yn-(sJ(T8*%6QQZqw_J}9r5Hy)je%m_IZw6nt=;VjV3xQ9YO4qKl%dZ%5~jxwxZ)JFA$8Ohte}(P$g~NWWZDn6RGW(gg*mMV3MbyK z&Ypux^jDmgZbgQ+%w`(D^fn%5o;)$E4TW#nL=u zTkEyF6(Yh5*K({D)Ua1^j9o!)F0C(ZOvSpHdUT_2$Bs0{IA~W)%!%1@sS5%F8G15= z*7kdYi>RqiOX*_s5m7T9f93Q_xx#W)D1obTZ|79{f>W$CWC)nI0-?MW|>d`F? z?!fmW;P{Xo?XNxn{GL_wp6`D)vaH(vQ&#d4>d>z{9duS{`C&$E6nfpgCG~y#z(IJg zDIJuzHKUc9e(K(y(k1=X&-Paz=#lgYd3AVAP+(UKql=}>Hq1Rn{Q88<_{W8a@7q57 zCIACAGuIGpHlV#S+zW~J3cYarAv@%hH-$hJn)<$T;2>-D0lLVD!oya$in38ZyH)zN zt9`Ldx@4Pl*~Z1k_?Scjb&BO=#C^P;eKCY768mCp`_2c!{?bykZs5*PAiroN^=N2= z(edv|@bwUaFF10FuJSIYoH<;4vjj#v2fk|XCkVGo{D3s4pwQG&5Z+~tJ>rc5KJ?lJ zjX3$aTskJ@<04ph)>?gFYVxB{LPI(5p<|B-4ve@lI{qQdITgcTD4sM$H}I9(9QHg2 z3Pc+z&T*QUrrj@fk`29%a)}?C@OXTJ)hK)(;wuMJ_s0T^0rE7-L!Nl+LV;A~C0mb+ zhZb%;876JBV0?2u`}SiJjJw*m|HJ;{j|cl<@YDEPlR9u?Gx}O$=>Iy|f1k^OKNF0{ zCA^e8RGg>wb_@pBEp7{JCX+Tp-2OrW-^2-)Fkr3jhv>TeKBlXEtd6yML*2k(h;4%i z`HwtM(G3KU_ag3g#KfNcu*g3&b!b}NpJ_e^?Se2Geda7SOUv8ivfz-*rLjj4cuukX z)AAJN!RvGJcA$j{r^by}01gpYgagfX_dNLZv0h!hU2$%yS@E&)eg?;E*$-*gG1dZb=<_J@3!!h_J+Lp=f>Gmejpl z%)iz>lr%d#-gt-e0yDHyrDY-AYdqbH8-a=sY83~$ z*vo;Bu&Q+=uBdaMq6$%ACiLTMp-A^?MX+X+GBsE+8MQ zal*!)=sBY%3RJjJeVI3pV3ul-g--S#JM6*si~>L;mL1_O2&bpmK@gLN9fW{Y6BdW2 z5))M?&1cSd&OVFmB9CxL#b#t@akaQM!vG{;{m*}uSIDXpLxJiA#@JrfKq|(j^RQFf z%29?j!8~isOByilR6s3stw0U1f(v3yyj<3Yfvf!SfRzPs1m-2Zwxc1Q@-Rl67faNT z9ZqpvU_rbYL=n7eBt#Xv#{bqgL}i(XUL?Ztkn-<4~U|M^D*|Z zy{y&sbOXm?4@h7=@<2m35VkvvJm4<52iz2zIy^0J9P)s7Ef3C!K^}01+(GYm zSzw!BJRUjdL@af;ChY{TC9&Uu#lW6A=-XZGcK|foq~DExZ5}vsR7yfY+77%QHUWHf zNpu3XgSMcOuhib!BZIxqBNhyHR=n|pcm&!KtPsc}ML92sK^|!a?=yy9&l`7L+q=$v zhm*y2J8s7t??)@K%;LRb=w6B=#<_N#=Z*g|L4Sby!9~*B1$H|;rK611(Tnu)5H%OJ z5A4-nU9Ur6%PkF#O_;-#o<{XoKL|0i#xfGrq8b(~#Fmf`bJ13drQdsn+g_+wyImNdMh%sLb4+^*1t*Eh={zlmnI|~ za-l%lrkpaXsx$JP0toavD?_0M3mpQ0FrP9N7h%LQ!f_BBEPosb7oj?D_k`j`iNN6k zk%7ws1wqATbvTK{iRjik!pb~0CR<4|K(v64u*!mMiAblAORRwnhzeF%Iwsr`gqH(`@IJpLjQ=%$EkheTis2m#YYDJ( zm0Jw$vUW`JAv7X#@--gG{Bt5rbKzQu}W1-_cmS2Tq36@hy3MjeHdoOS&L1*?HPtVySOQG=BH z4`hCuRFI=$TF@L-C^~EcO8kl-0VP(X*1c%hfJIJ_%hIi?t}*c&HX}dVy)~2-Xv$4e z;K`uD95%7b`=#YULT?U+1%R4}JWAkSamnC#GUHF*M~){JJDyt;rocdf-Q*%W2#v<$ zgu*TMC=7T?4HioiS`Rrh9^L=aA?yeq;Ce@POt=2(tx*YQbo^AD!OT8Yv~f!+_yQm2 zwMj9e{pU;JCEvnWluyf#oG+b!a=CCb8&hgm~jD+LthX4zz zg>b^Am)R!yyK_wD1Av4uFgV$$uU(z{yVx7iFF9 zYCjqL(d4@b1{7VMhUgN2z_Da3Z<}Crs4)A16xkNVGRJtm4Gc|_`m=qU1*r<<#Xhql|R+DBw~P6%fuFzX))~W=}AJr~rb*JH?uba2SPZ6M26C zRPb>L!LRqF_LJr0tAVSE1O;c~NT`RxVu-N=iCYvBv_YB=l=xU$MWDK3OU5B!7%suB zt#DRM(VY$S_IbGaM46NbO?jfcrb^EQmibn>%deJQ7Qk-6?87d5P1?~ytDgO2AO;qc zg8yvGNsH|hPVe}qJ;{Rwmg?lu0VjENO}>>4&pRCRYtWzz*hvBj0p|OAOcsy^gsn3B zBfVCp<_2Whbah|(RRPk1warJF;P0gWd2NI9gR0R(;gh^HUA&%29$0Xip}a!3a_iMn zjUl2Vx|gp;A9}|LHQP#kif|rMNV9~3iZS1X@(E+*SH$ep4K*LVYPN$=o#iv3bwyg< zLOJJQ>YKxBgjycplDSp$DPJ`OjWP(4E-&d8$YBG5nyMR`S`8&+KHwnps=`;yVnR&< zciM+KVgv`3U2zpCk!spLz12xP4UxEM+k571N4kbR8uki#Ft6o{6!CUD_q|r2jGDes zkpS6)Grfee5hCp$c|!sJG&7+Av*{c-s!NFiY=$91I{=_<4NwGa#4C|$1zxyli(vz5 zG7?0vujpyt^{o??jeR@Zkr%AbLv+g&lDA)q-oZT!wr z2@zuwBEZbT#qOLn=;xo&D=RnLyhak1THWYs#uHTa?=z>5yva?KWhXcC*wH?gblchJ z`pG1rUE(QHroJ^3HO)b{y_0SU)`D?pHKz}Gd2-}|ycZ7O=3m3PX2Nqbste)S&u;ii zkO8pF1YVI}mCNlY~1MS%`~ica_XSdxAeRH2kB&EH7hEL{0RSo1E2p8ak*NO%bs;U#H+0PBairyu=X3pO{QFhRy>YK| z>blM4UXS9oMFlAi7x|Y>5htWh``)eF^#Bc_XP_CB@z7v{`63QaoBQ26lY97s8!h<< zz(WZ3k$4n5dw%y_bDp~pUf|uEciIY&WGCVe2ztW1S-D*HuWoBBpjtn8T4WT9Kiepj zH->5kpT67kpY;N&W2J$&O(x$)%tNp1u~?$F1)^y^KaG2>X)uGO2wVdXC>szfmW8d} zPl@a@d@pW2IytO(rP2`;#2q|QL?wCJl?=xufOXscrr#VfxyL(P*}nOR=q&3rmSyJ;~`+JK`N zut7r<0CPMl-hTA?MAV<3Jcc7Hckas(W4SY_Zv-L+`uBn3>~c~L+} zX#dndPDooc)F59l3%)N65Pa|n&A-Oo^r456Z;lZMQXa()e;^c?7}rZ@dkFXmkI{BL z>$^~-FB3*SuOncn=+6&Z#$s0fFg>^-$B z1Vf-eC)3%_gMd*nu0z+a76EqtSeIi8I4Mp;U2)Jy9K0fr)mNU~S8ybPbyXd~5IjA* zqt1#k&{f+@#PUg~q9c$M__pmR^Tj3D=)+;=B_o-alwfdR5|L_NI8RCwz9}FRvf?cI za2I`mNM!%OB=wY}RDq1;-#?i*N2m=zQo{uTWT0i0=kupd0sg_9G}!e!x? z`_H^F(D%z<>KbF0Ex1?Z{oFlwn9|!LT3ai!8=;|WJTzA6?P(ZV-vkZ4Ktt2*jel!% zV_^4y;<<58PD@M27(1T15VZbs|3$D}Vz^l!Py1`F`>I`gVQHG{Quvp&!~6d0M@(Jz z;L7(8UWvZ0g+rV=m8y+;?q{Q>b905-DVs+wg}*t&(8D`wHzF>-wV5%06WT5<>u}K8 z7gsttD;?{;Q_HYwu&R=t%|Ywmn^}^fweq0}zYlgLL%DPacAP)w50??SU!r@>q;TB7 zb+K?18S;doD*Yw{>qQ=%|24>Cdf|l1O^76RVa?Y6ZkU$Ym`vM5SB}fN7^D}HrhIHt z+v-8{P92waFmCD+su@io>q8-n`F+*rz)g~r^Payy{QkqL>kjG8Cv8vXwlzHPu{=v- z>fax9_Rdf6{KNg_sW}AA;LQZh)QlxByS5o>F4cy|JNHY-u$+F@b68k2X+wbMa#mb=dy4e@W-cY& zZLN0^rWv^u4)N?%TCxA8Qg>-iOxC9trEbbMv+5KL$!~jlogTsF2*oCE@hjifVIJd) zsRXQ9(#iSxL-jC^2k+!Ev9wd^z$@8jufmB%9pJ>HAG_EzyjU-?Lc^eO5XjhLgB%#R zRxk36#%+A!EBT3~L-Hj%CRfOIP-M17*DG8*qRMwkz;c(!pvy}N``Y)v*zv}|JM$Nw zoRHNKRO$GX`QW_e1-yEDDevw~SvNof%iQbF2Z5jO7m$eyVjmxI)yE>SVX1lb* z#pW)%E~kA{)h!Eg9jx>;`l(Cd#Z{fQR&-SX9a&k}r1I0ZkUx#>lc%gUkDNR;tb%S9 z9$l}FPey5|)vjFCI%$TQzVEW$C3vnG5}bA+<_}3QLDImcVYB)O$*HQ!Hc5Z@RD4Ux zzMSAWWN2{qk`|wcL`(~&Y;EeZd!07ckKCbD3QeuPUjG!@h}(XeX>j(aXM!O`{F`;4fvj0|l?cI%Mf`Epor zT6Nd4b+rihgy5-V({Mul z$O=nqU1=yL;sBSzHG!Q-za*JWqJBR90k#B;W5n3=Q-Fc6yo1zVbsR zz!cR{Rkya)9nMWNMbpX*j(b`mt`G1$*rbD0)#X&n4gC>TcQt}AR)(IYp(l#HWm%mu zh3@V&^qfCDxZj=PJtHJrvG5g)(&%5%`NqIwxv!oa{5+i7Y?CSyq4_dv{>X7Y8JE1* z>0owdS`&7*?)9eG(cdCdKK@}}LKJMM{!q|&!22}Cd)*YDj16x$x5EtH7SUFSsEQ*69pI>ZqROvZ?uD+?O(dKf3=Y4YuR=#Rm(qV z=FrJDqO5Ci*wMxzS*qIRhL5aPt-P!5ujV#b>1^~I)2I{ctwJ)!M%;V$zdv>*^ViO> zd4%Szm~Io*Tg!HmX_OV%NNG;pkjvP-Q;^T-y{Ud88tXIv#WJkSiDuR-HX;)D z?%qO@fqb=|nYE3-S{jge)>KRt_wZ5vvalACP$2QWlp#?)kg48Dh?m$Qt?a@n;TUJ- zTS{)JN=9;PAE_#vDfL1&krEkrJ;`aU)%0tvPqC1kyeb0tl~=j3^b&8*A*n0rYyO)vPe9S(J+pw>sZKXCS}UpEBEP!`7QO8)*At|F_<1 z7SL2?b!pHg2nipB-Iy zU8x13q`@kp6dV&z4LYm99WYocmrXBx7$9>CkaaOrdhhjP7z!Mw8gSfJ+LBX^OhtG& z&kCP*H}P0&6MhUEfj5zr`*{gaYj0nrwP^FJ5i|KQtQH`PL5BQNA8+I8;OwujX08&? zJEb@#lBl{z-uq=N>3n@XA{0b-2o0=_uU3DZBvi)iq*t<`q7%HH`z2lm&pIlqH)j>x zinGP4-F{H6BFB1~c!k>uj~KqX-U|`gcdho!wsB%;?72nL(E0kUcRb55O?uuzfn__% zt+tYpo7CoOn;;WolH5Rt$m>@G@7ZDHH$M&x_ z68)aGofmlogg;Z?gp4upUng4E0xZ@HV}Q2@vf5x2Hp#-;NJ59N3^+B7nkTXnOi@~v zej94oER@zqY9bF48zTTD>%P_Slvm=VYNL+&wT44iOrI0g8^dOm-!^S-$P*uGVx6K+ zTt!~NxXk~A=vXYUB7iTarQT6k8ksMEL_4x)VxpC@1u>HW;EQyk4~K-V^gg3-zyU7- z-K_GTB|0Vmh=0 zT(BOiqx(bSu?Q(JxzBY)+$y=C&2s@jQ%iHVT3YEZd-%sR=;x-}Zw=yJ4p#+;RFY2ZP}PU#HQ_<_NITmbJDf}+?DSEyyb z3r?{mM228KiWb6J@Wma#7cYmv%k8=(g9PV1xS#W{qZ6pdMziw0hIigw!o(s760nL5 zxA0yZV+v96UN7O=E`zRRidG)gKV!b!5e)VxUww{92j?#w#6)O=aCi%K7}46kM{+mg zGKQRRAsJgCQiW6-I-rv z5I=;AMk%g?7cc<}p69!DX@DYy1Du5v&bQBph!T8OOG%EZWC}s!jN#OM;$wwjF_JiLk*Qh-(P&;J8pSMKVwljgKBNU0`dJtq#c2z{{MIEzudx-V}rwqPO zktf>vTmVKS>w~I1iV!fKO*jz9{qB9x6$#*1Ph-)@ZT$fQPQsZua#bcu`Xi+BqL9I! zy0!_4V?}ax=d4*tkOwaaAJ3+18hV!xW>m;{)AwOrPSzJuWW@6MDI&p`yuE7qM+=-o z+eCR1!;n9)W&T0YyjO3kMF{K)H!G<`=>iV;sPgS747n@f=^Kqv3QPsrJC-Y&cMxij zB1GH0AGewWRlI~kEzTraByAwJN5vEe6UAm^n@}b^IN<|hQ(QYEO9s5pp8>SIrrt5k zO2ae?PaGTZqGA()&!ccd3yBU`f<<%F;{B;K>F2c2#>>AJ9~eYA=8&vqmTrX%(48K~ z9$q6hImvUFzbph~BD*U5P?31%4)2n~UPSSi*ch$1(m)<#(dbp(dlFiojc!K)I-|EV zr#+!gPF7PbTMJ~F%PhkOUHOvL6B1hvpk0?!Qt(8i929aOPgN!_%LGVYuR#NOjuKj2 zPMOq>XMrKAD2$#ywRsTFDGcGk9^JcNC-@;aN)$mpIOb~RaP5^5^7FVM5hfQ@bbZ>49Ue9MqaH?#tnf1aJ z-U3KuhFoO6p^fDGgf|Bx;|qgM&#Sl-asKVF838iNx8l=-lTkk42WhCBYqwt+SyQed zw~5H^W}<32iykmckFdP>bmT+ing)Af8T!q?LTk~Qapy(5ok?)~TkbUrD7Q&7EXoPOLaoeE@DyX*2J3h@y@%*pTW%N(RIe)%H7S0JCyN2w$Zb8F04hhiR*RMqaHrDuuWs(S4>UK78lAf5m z;(EJ4|5FVBpH7CB;y#6dMDmm?;wQD+)!dQNT4E^HG{c;gUXG&@xrAd z?C*UmZrxj;NeEHDn?gikJKZ0x9t#jf@aC2%z?*sHHN!%}{mv4`;A0E*+ud{Wgq8|$ zS~%k;Kzf^iKl#R3UZQPjkTP<`CMtsG)+zuo-0=#|(wh*Sbja54I>%^+y4-aJXDT!(~*u!rMVf#zv?ND2qOmGMNt|k)`M2 zDpE4Uyeiw>L?B2TA-lysj2GRltM{JcLl8tYl*{sn&u@5F({N&W={k{4LG1h~QMgd# z4k<&c9Z!pdBm2(!wVFKQbqn75ji_>c$;;!*uK^}5whnW6bE;&vL(}llf$APYNyZsL zg9>Kl@1?kQA{Z-u(j02%3+r6q!9DHxqj}__J8bx?^!`!Ruzar#i8K}`Bs#tQd-KQ+ zt7jn#9UktHXqJvDWnJ*he(h1+3F^m5p4(eUPWSsZy4S>#btQA_AgMX}^vuXLYR?vb z^UHXkI>FQ7H(W7a;?c5G1EY9Uq`SQEzzbqM$)HvA3;Yd|* zzhkdjn>?)>jL%uL{Wrtw?MM!@uqJb+xdYHAWxqIwa~Xaok3#B+3}zK zpa{R)=v0GFD6J$juV*1ET&y|e+#)cq>Q>qHtuCEwv>GmCrcWL2t~>rJxu1wCuYG!Z?2UN#9FzDn=ZNPHWU! zl$*F@=^UZRob{|5_445=6PK@p;#VXQ5SJ7JG;x)yZnzKX*;zaWS4QAG*3gPdrv^!1 zf1q0D0WY98)WnCRcNwDO@$MU{VM6AB3C5jaP_cwYo61q{^xUIUE}WsFSy!_CrQT_M zkdqGIn(O}d`NYbMk80Wh+*A5oqd~!V|GWKKqscY_5Jf+`=)*R`=C2vp6<&RwBTpgVDf~B_cR|LJ`ErvQ|cPJ3@ zyXRC4%YX7k`3i9;M=)6%mqEq2OGecx9`E2_03Ytc_2Xd-(jqO_mRb#te{3FEdSmJp zWz+O(jR9L<-Pk5=JhjmIYe4$^E0>g9rz?ccU)2I9-S*YI`6qOLdQM4nUdu5 zx4@u?xbuTvHC2*i^oG0kJ;A2tH-jQn)%|ww3BF8cjXP1{AM&EzkKcXO+}c9o_@~w0 zeXlJuyocvbD=aZhpQ9}4u4db{MVU%sLBLs)t8H>u6uN7@_BB;%pl#w*G)OwwZym_R zX1Lzy8ue$V5}o|>$m;|59{Zb*_I<32i9Bhr`7ZWDyM83`l`)-u=1+xxN${&9{h%P20MLi;pkV% zKoR=HG9%1r88hqlBeYe}Nq+bHW##^o=?hYt@R062hR8J|Ks>4Et)W`J8r|Iqaf&{x zjJ@ns$bf#oQ0Kt<)T{1eWW~7)8{lV~J%)y|Db6sXU5@!W2cE0uEz?l5jhMCmT^1l!Zm8K)SGpw}{*1JEY|uf?_E7gyK<{UhZhcZo ztZo@}{5-P|#>QSQQfg=u-r9DmgO%6bVAHu<5J5HP2xs-$^8Jroqpnds?lpQE4OsZL z8SGS~xieV+tbZ<|O^_8VoVJ%Zv<29VB6u6sV56@tPEaXGT6!5uEJjps2zX#in{IZYPJROJAoki znjsc=J4k^+Nvrn^c6#;ZW23f6Z9NKq?`>PKH#8{Xq}hGf`kRqtBze|rEBU3p;BuB>F*i~r9u0F4fh>GEbbx&LA!;R-kAyXFzMfMi%M_AWyqapM&0ezRz3_8U8|v2MkWte*E8K`wq5$kZE=skHfCota>xeCO)84$<*_f4<89 z@Y40)EnDM5K$LWRcV&L}w=atKC+FfJm%&b9$@ZQEi?g0|w`=NNrDpg z6XzABdlLg>bpq6uoBciP+V|fFfGBOyk8092>TbQ}nmxZrjy!L1={898bY)3BFnJfR zSZ4h2pV5Sn^V9&)q~$L`aE=}~Zc4Rk5wQAALtsV3>cqZCXQw_UtZ4aF$L)FETO~`v zS+q8}L$$(Kd8;&JIW&WbzUTAg??aySaQ|Nd;^&k0zZ0Wl^kmi55f2jE@!DO`_byU+o7TLA@vyA`WsLWf>oKs+b1OIr zA!UpttFC4^tk|8=h_`%bOhm19*ow0xHCl!of`FtK?u&Q-W}`6aN2bE0zgCEMI)+(~ zk6Sj~!Ab)}$$KQyYUvc-9Fz~Jw9HsxX5htmn+w`vMt^P?E~ZS?Dr7KOM{@T?chT-L zEhWiCA%4TuY}ZhNQj@)*Yt(PTjhc+Hsw4MEDaWw_u|vf1YwQcI3xLmF!T?@tWt~hdE z2-2!MxqCuLZU7;M?_Wq|ZmW`zz@S5K+XFL^X~~oF{@Qh;1rks^2?Dcrl9p{HV|yc$ z1W_^$P55;X?7|BPlq}4Q8j)!g`PfP&DESV5AX<00o5F!QyZ??5Zq-XOvn*0LL_M&Rv{#k1F*NyAEubhXXMNbS(|VPW7V;ZVj@heZdQ(^_#JyYk%UCOAfe)GEZ# zT&Dra6*%(MOod*Wi@!G(E;GHF)c^-}C?ukMh*lQPDK~+9LO7{%DH%#R&S7j(ov$ZE z7$VwP&4gR2s^4qRg=rMu1O0@{tnEfD!a*ctS({~&w#ey3;msV1fq_I1mXg2Tr6f{{-KCR%o!U#fTo-g z!*g5V)!Mmfn-6qo7(1zdh* z+0UgcznitSh%2?SU{mW;n`MpVvMAK z)@Ko7JaEuPCN9BU2Y!K;94KW?97bDUKhbeQ`$_1)noo3EFUOEoljO#Qqn3CUg!YUd zB`~qh!Jc?>#<=`5t8vwZa!X(U3D~Tv0odw&ZLf~B?#3HVgs$AnESvt+%Kokuf*@ms zdBjZKV^N?O<3fRAtpt(3{|+tx6Ds`_?4Qvx{j$Zz^6}$&14Pt8;AsCR$bAVi5QrQ) zZ`l@SL|$ahAIFF4dY7}IW zG;GJ}&*7C{sV)?!x~Wy^0-c#zmZR2-v*gmn4SLn1-=wPh%W6&ekp@B2s8aJ0o4MAjYtD%&#J?~6LYhcW-mTU=E@e(vXt zRL4mL%Oibk?6K9{)av=Ekc7P<2{<{(kA5n5jvFk}@xq93528~^p6%L79I$honhbds zuGG$*8RZV{*R9zY+b92OC34(L} zE`bUgAVe=H*t33s?9KWCvNx;Kgv@MCLdb``C6*VCqO1cwMG{zN2t3Gj1LcIkUevsI z+0IYP9)7V@9Gc+_q(`nQE^PW6y%Pv&!t!~{c%wS%W`%|mzyH?qX zPMlc=0O#vj|{7Dq&rNRW}@FKZ)5E1A%o_K$(CTK1mhBn5O%nz6v?8(?)Wy7ozxey&Li{)DAFKV_ezoLH5>*12Go#bg> z+rC&@0PI5-?(u%FWzG%zk_e3iM7dW+%cB-*!t>P%4-$Kgoj8&Gs!Y-Tjmbh9 zvk=XKOKY)&;@t(4zT5F70^&u`?Y)SB_wS&J1P!^ccucfwzlwKu$mYmvVgIb8`D$@7 z3fTPImI!kj#tySE39=Rn5>rO#r(p0FGX6LI^7X#9&3fBz!R9-~lT^9RMi01ag%)P) z*f)N$JR7aIS*C-0FqCykq0OVP_LUG*P+`ZnQ4wp-># zwVxS9X?~DN1PRV;)`zy=G?+;P>3O>Ck^k>^DrDiF5PBYKfrwx%z$I;z67?er2`Le4 z%xXKXIq!Jz`4x3TT5|PWtc&I0YlV8DbKypzh$xl&TVB5@6yM08Wi5V)rcIgtC9DyO zu-fxrR$kP)eFY8>%K0b8DN~%^F!v%9=M=sKNGDz4uSJL<5yW9c_1bsmi`tYipA30F zgC^zguPWvfL)Zz)Lf0oEO$*5_N3=p-l(6RYG#zubcS6B#*iN!Vn{2P}r7Yqa=_C}@V{m}&x>qS&H%hqjH8*^fSkn%MgSvOI6B|$y(I~eMYu<_fZsty(Bu=j7atzJK?FgP-B&a@kC zay<*HrW$oyv5uRiGAjK2hsBAPn>V_br8V~Q2~TcPg^$9ddT6IHNirSh_4lHGc;_7X zSbzGY{w_sI_j>a~bfas)XI@^Q^BMtl-1C{$&;#oWrEA60I#xOKGPE#u?ElEB%L{$#BtvPR#&{?mOp1RRC#@+kw7Fn_bm%USAr$XtQkh z#3~habQ_ks*4PDQZ%0E)O4Ci?!3IR`#w{4w9H)Ckbpmf;ylP%lBNWapy_B^;r-8<{ z_Cv2VdSmmZt;FP5g^n}~TxMY4k{dH~PluFzOSYeG*B`IT`&jC&W8MRWH$URUpR;?geQj5PjZYJDq^&j zVsu;ef{|@~lrnlxBQg+}c=f|(wM(cR(@{nRh9?=7;M3!M#cHFzw0lU;%Vk+-EYk0Et8Nq+z0M*%PYgd)`=6aN z6PxRs)m+e{0VDy}l+Uu1*woo@ zlCeir#W{}&Z4{*11FO7167>l~TDN`|tU%R$9fVQ=RGoZc7*AE+T8Q=eP`h2LshLS4 zYJ*}#j)ugvm0#M52=?hRYqL&k_-|4N`?C7j_EvJM!t3Buxz-cCLDZL9qwg|q``XsI z83=3&h@IbNwVw@9%flNx526oHO#g=L$JEE1>F;ZMdZwQO^kJLKp`p{hdyZ>6 z3EA!pgn3nettKT5{*0r?RjXDOl6X@NN)E6QP@VkPY784b(_2M0i6GmPRD)FLft2aKo7KulSU(v8VG0;jYVJ+q!!LFvN>Vs3 z1nONUbi?^8p*Z`v2@^a&j;-fl@RKj+ePkkN1Z;kb3o-OU90l5wQ8@!NaS~s@!Hn0H zj+!GRkK6g8))L_mdapc{f5C!|Z1bh*8thEmbzXA_uL`rt`EH=>hH zsPkDC23|dT2Xm80?qZDNe#SJ>Q!px?Y(9X=(3m_yVkuufkbi=Nm&tFCImU`}1_BdX z?5BvOsD;vixm}=8t~}BJWyl7+GzfDP<~&?Y;51Tvpz!vOGMP;^ z$WCm5g+k8UHB!jamno2(O=F1qvzJXove~LR(K!BP*knS3HiOzL$e1EA@z)x^Milx$ zrB)_rD59ds1oldRpu%6@aJG$oqeR*HbD}^2U|A7=>r9Mp%!PcBc0j1b-j5>~GVf@M zm{5bZTMG)T0`8$3R!Vg8tqWJ0rL4(iGH4_l84j;*GA~guMJL+rc*tkHRErc%8hf)v zcb~=FY%ww{U{}#t{DNg+wnaL14fM4pE`w0QyLl{bzCvt6YdDap;bQLeGm8}yzC7}- zzyyJ@SJ6ll8l2WpZ`k%pz%gXoRr;myba=KeWFfpfGHb>d?Ii3wR6?$x?VNq*fj;jI zS%~ZK;O)pQ26#I>mJZh#upueHI3&XbA*_A|z+72C6CH!3r;D>PGHbfo=h*Nh{g-W5qtju%tSothbaSqk%BP~6hquVTjIZ#~1R)$>sVCAaDzMi= zxmtIkwXRw~@-jPLED$l|s9AScGrq#&Im-eZ7EqNfKV~JO$x*?x<67mCc~?f6$<`YQ zNUXa<8}$mh5iVkZMfI32d@U9&gNs}?Qbp_buRef+Iu`E5zNxHLC+D#je3S=lyhd=z z8_T>mYu)97uzyHyiVxFUXlJM=I!T3saBF=|603}dYR38_g~d5 z8cma1>3>$zAY$?vJNaiBd=Z(|-Jz<5^ZLJ|y&>^fYmts_a?m?pdcEwB3>R2r>A+j) zZXA7f`VB6y@I8jgxs&pXTJJp}CFE}P9=-QY@@(GQwj<46$(=SN!}JJQkI|(h!OF=R zbl1uY=ZwF0s&$0l-|~Ckjx(bMV#ih5+XM^?CO>y7`}&O>z&>!I7%WX1%v&S^?N8Uq z(5=h(FZ|sJ?EV_AaAuAlB-qOf675Oj3Ds}{4Hrut;dug^^pYX}(+}l$Jtdg9=m_nj z|L%x2_SFFs9x&-ExeH-qadN}O2746sH}m<3u+~XTM99(=865(>*yxa**es?NN`Kic zrlH8!vFFh{aK)RRUp|h$;{5*s=Tewj_#$}jiZw@Q0)K_#d*^LK4H)=fhAOICvoBAX z+g)sI$k%K}wjG~ZdC3in;D(W0II|uftxK$G85hH3Up3DX2ENFCWURQl)ljIXYa(sN z&D_O%84T9E#{5M%z-3zfp$fH>V7~VvHc;9OStIISDM{J*LGijA$#t8`vrHw2(qY9B zK3S#0&pKC%^@2DBtl8*`_=R0I}x`@0sl7}WrzSjrr=ytNIr!Dx66Ih*LLd6 zC^WXI;&540`~=&hkPc-;d2gyFJ{V#sUyJl^$Ok+4+)vQdVv zwKX9S_N^0f0bF1t$Z@#M$YvSO0$|>W7=#Y3nNS#*Z*C~_SRvnNksb(dBx9EIuRCB? ziIa}Gc&`+wH^jvl@o5Ht(H-*p@cz?*7587|N3W#*Oorlx(hA|%hP9HX4^xAjiXuPx2P>#pkOE;INm1Awf)GDXpLtn> zB>kao-Xsxo!O$|#cBoLW4`=a-f^QybJ`X55MgasU$T1%dQw(wG5P!p>yjg|>Ojr(~ z2eRQ1lY`OlgkUp!ngTX#^i}Il?3D@HDL;0VMjO7ikA^Z1njQD_(s_MyvrMj<0zb7^ zu8B3!iv4_=XbbyfjFN9R^L;o4lznQ3=wcsU5O5YPn6(Zt;!3v%$3Kci*v8 zU=Q$>5cgJ&-|Q$8RuefA1P!%mroe~SELy@h{l6@uivw0U(@Nt z{O49)jAs&j%R&5--4xXA%OZVFJ4yH6wut?19wFVm6=|cO!AFkHXQcPDUL5M0B9;l~ z!4G}VBkyC_ifAC$3RiDT*kwrW9C2i{sZ~e#Od6sy6BTI6(nE6<(=7?lTO6=2hiQzo z0ep9_d1Gwb68S}qmeN~*UO^M2S#wE_hZ`~t!}>qCViWcp@HHy*MLOU96*TH8TeM7Z zo((h4m1M><0*IBvJ(`-}%(zV2lZdfHa-GdGE#w~|Ge*#%Xh-9&6-KskY40H3Um-vu zKkKhu?T?-rK#iXRnDv?zRkxS?_Xl{$>uTI4)Y^$wFA=7~SRMg!-@&wUzcPAD*@S^2 zHVIoA*T>wE)^_J~F=wvywS_)bh?G#e!dIs#sRAyroS{yQ5VAJ*F_R+IUX~BTuQ&MJ zg%>A;h=ST2Lg=Bcwx0ryZ2pT0EvP&aps-EGRfKwNB{1}RU)%d^;ND`hY%M%&bY=V; z;M@ehl=$Os0i9jpt>!olOFo%~6YD|MAl;a^S`>K3eE_o!p=O`}eEzuI=n*STC=its z4a7kF*2~X78Oa6LH7aq;MFLSj zK@l5CNxse>y#)yI-#L?riSESQZP1W-yU4rfKwBm3TcE8HX*jZ};@&&)tcj@Y5w83vd2-!^cIA`K zFVM<~boa5S8sjFKWuJ7&@V4Cj()KeY2gM8BJU+F*E;_SUc*^Aq-8(=tz`nL}U_VUP z;;%eNHVWb_jLZt)C#OqWn+Zbmy(Q zMw%E>LGFv1A?1%VS-=ZKBng{7b!04nVm>w&M>%Y!W%$dJ%KRfP^50D0b@HbbI2xd> zYgE-I8uI}N0<`a-s#3o;=xH|B>B!BoC`m}aikt3VN^#@I%#+Z(5x4fb|7H9<|7mZa zk?jdz8EyCFzPw{`^PU#QFZwxHMUviL853T(^dODAP(Mf9C``H_FpIW=eX}PRciPfg z-KvcmZk2j_C}{w;y`xG6ia?g$R=4d!T8AY*nAkmoG+bN?ow`sTvh1SR)^2~|p0#qo z+`l|fCJn|=yGY#Z>r{D{b$lmQ++WOL<Oun%!>Is%nHTt|C?qqro zLs2lXvu00+l@qUumd2g$<|OPU26(sXiSR}}Fe&_FKOoCR(1eb#6pk~g3Y$Gs*v!!b zZ$_E{V)rucgSq6`dn680I<9*y>V}rsU8Q}ba0uF=F)bUhsJJV=tsqej*FP@1 z=*K9^H|RA?1nQ2bHTpa^*l@0vEA0a3uyW{45p~LCEtsB{l!p5=M6=?~g9U?Lzo;YQ z2r725^JHRJfg%0c3mLM#?hG2;bG_nbD-sdR`)HhGLm^B)ohe28gpExW!6=b+K$k1G~LBz;_^SJx-8+T1tQ%%>6gOz%0S6zvL zxSc&Xef{8cwUwZ#y5&_Z_WPC&PCv0y)_A2_`7UTG`)f--LnvU0+By$txKbu5?|Sk6 z^~0*omKc24KjNunI;f}d5%tewNKaz| zEA%uTJXDiJ$e+g?DA-S)x4^ookH3!TA{;^jOt(UhSys}fCl~}AOO|&f4fqIY&teMLn$q$^#Or~uOjor3)&(IVu-K_MoB4G=*Wh=83xFbB2tF7Ijs%)#zh(^sQg z3UFemrfUFjqGV8t4<-S$VxsFHOH{&OdKAL3VHn|ox4Pl;&PF@jwX_F%!pE<@k0IW} zGh`3Cmu|*A@n#vi=g)gLz+`|XPI54yi4#T;C%+Clc6S-L~MDEwb_D6iaF+aybJ=Up6z+rBdl;TCR9O!hG+*d zNooq=4z$4j#k~hqL37s9dEF;+5U4HpuhemCmKkQpA6TIE6*n3$6w@3P(m2Jrd+rhH z_4r(sSy<;KX;CYrdHGVNeRmkxS1_g{77_P`%%m=~)XdP|wbhVwWW?$-HW&bBMjlykRnf8_msI9B2y2*OEk(73g!V3jG($Tt2Rqgq%n0Ofk7E%@7 zXa?Xes;p-~FgZU*-{JboT$LrzmDvXQqHgGJj&mOvJ;j|C1>~DD@2C^ zSbJ%HTK0tRf=elZU*Jr&vOg7^uqPOgRqkGvK8=qe_8y#ud!HwoiP@OEuNy!Hk)@U^ zoYe6TB+UdVoU{;b%Z@K=&h)HDn;}ca?WML{2|CRSn1)Y8x+cmFxg(! zkDo=_0q?lTGPL4?+7Se8Skv6_R-QyWOUn zW%%JR(tUC?T+&M?vES~K=ZAcm6`p8+z5z}BpA{|Qb3&y- zLq8%pV{T;cwydw&)BBL7DSxGKw`mz^_{|GP&WkEeK1mm1ccyqj%4gXq4HnczOpRXA z?(Lkec@D#__m~5D`He1^)snTUiID^OLHC)6Rs;m59H^8NT&0JJB|JFQT%fkIUsn8SEdfvmWKwzw0z%tRD+vb;LBH0 z?%v8nj2}ha>wAcL3fw*+t8j$|Ku|^T^-!<&KfJP)cnD(V4B|}Dx>G31yzCUgZ|;ub z$MvZ_m>>0c`U&CJgoYj5&v(SWX|R4ijskekg}Ox`1qD0H~}?@7lbRWfeODVfS~-Ub~w8O7t_=-Nf5Ki^c8-M z!V-dLVYsw~Fc1H%&V=ueP1Dz!rmNuQ_TlfzFHIzQHdK<3g;SGTVhD1wI&_U{kD2UM zI11AMzQfrQybz@XeXhPJ87&%1zC7@j9;P}ph58ekLP1?@mv+842^1ZY>-oxb0NDH4 zekOj3YgdFB6KT`W;h?*tD%uZnE&DtKF(Q6@Ie4kw#yqnLUh%jG^#bgBFjQb*OKC6 z60jw|6Ru3ImDMBb=n&L${F>F3Sk}jiLZLL^p)B;lP)^~X1h%XtB`As&BQ-S&{PrO$w&;43O!lk|&Ry@Wp(9 zte#*96F^mB*_j$uZBoJPY`et@OLU;TlQh!T9%O z&MzsTRzLZoQzQuhIzVxNS}a2n01SZNEug>I3dQ2qj#v4 zn$9yqUnL*ay`(?rxBA;9C#wfNI1{$6d}Dss4X%Y>Z*CqvvCiV#@LPA_MoXvYM^=mK zS~*KkqE1hPPJ5E-*MiH{N4Kk2{kR#9x-)%C?V#%-I}S~Q5k@aJ&d+Xg0@aC zpo3CN)Uio2y}u2#PJxz9OQB^G?ay>u6`Bt~JE$qp4r&eQ^faR}G`~ppgacYV?*uKR z_?As*U1QW7N`_`y7*9!F4ZUp~>7*=ZM?*G;zD})Ce+=jVCEp49iI^&pj#Q}CQ!Cr5 zsuC#f0C8K-2tci#v|b}Xk9$r=t)8IQh5_lYWCXoDf_+fl_G1cZ>f~`TYk?MO1!VK> zY%te|25l}4d%skR^jE55bKMv9cai3NFeS~D>V<7lMje-+afmPJJoGz-61sROlZHsp zS;qi3cq&}gnlvnGCjbcg#F(bPa6Aw24b^&`m);!u#27?XoW*@&M7wuU*d03Bh<4vD z*d19H)Z<2kE_5amp$qMEMCdkFKo=V7FaRx^KGCWSgaxplmp`dUH%m?xWjxLOQ%D`$ zrY4-u0<$yu*%(vYrbbnQL`vPJVSwybfEwRx9{ou(L0fg%6(hhpI!P(mP0`LPbT_gw>F7L1!n*Y4$W9b0eS_rz^m;pzR z;FdjlwjiE*D}e84|0aR;Dn6JIrZ&WzL3*;LdM9o91x<-yWw~aKa871*!74q%(*e^8 zjYE7kRat(Mp9azbm}QtGPb}uH?-V=KHwS2-s(wfHLQ5jEbM5+%LNZ&VIpw(L0&S{AXsh+94&#Nh z7CG*q9i1>-j?>A?S@6p~#vvsiaHldnl;>K7$d_{5CaR+HwGFgn>tbu{9RPiKT1t>z z0BuI>ftL>Q19lSdk>*n9mxAD8SZz2ugO~!Hu~t$B>QM%Q4pMw--RMVNu`Vy9&=2e% zH~%TMu6#9cv?wrLkgUyg!(5Q$aqw|xE7QLv6?6qwUeb@qI z7cQ&-lef++{T9SWC+4#P<1#Jr-!{VKF@_S6=vr|AFQ27sSor zvMN1jb34+c=|?`LJM`H5aZ}!h4U8{URoEW4(gIT}Z^K4J1{yBho=V!V5tYL2|G<#v zP*s)phXV@Iws=f;CsBJipq99Y+|M_9W;BCqbO!2bxoke}A;-bq0UmnF8#w_P;Ky5; zw{R(*MXK2;-DXS^-9Jh8b zgpc`{Qd!L}$B;ZLnbmQ_Zjh4X6nkM+yN;UQc z8^S%LV3})uUzu=k_&54#PkiY&1fNDn;7K@otkl9+Hq=*5w|(*Csa6`Nf(6z*S-GB=v&r&FILwcWxO8OTqkDold=%!#PBiJ!pB zL4a-n0#vR|CO=?)+*ek|m;T)8vUa+{Wf{Xzqn%(wcP&>;Nu?h7_TmwGcgd3*C1lW) zn7c~cfD35sFL2Wz1!Zr4>7e1i(CO_p&SOe|TxS}lLJJd0un;BOmLX-L(eqSzsw*|i?3`4)G+nP=E)zmqa&DB|H8N-g^(1Stp2&>Ov=yUK;ZoQ?1(pyRl z0x@lUB2WTw{P>GGlLb<^baL@MKTE*xX6CwvnS&bp_MW3LA*~OmXc6$NhF-$fLHR2_ z`{q*Vhlm4hjSH0fa5E(PRI;ifE|#wl^cT7NHY)?Rd6Nc!R77>*U{_Pbk@ zH0m~J=7%jc48sRwBJ=rWQ0jw;v-KpQ%iH;6;Np|oI9YWA;*ifu&w9gR_}pG1ZV|$P ziI73<{G7N*aPG~mAv2{$uKub;gz7=oa~v<|x2gaifk|>=aC_`gppW~PaDHr~k#=+_ku!L6mW+KGv0Q&7 zM;03qD!o7CEXOc}wEC6zmUEJau5XT)v*$93PK4MJ1M+SNEnqmsF3JYWS_+ZYVC);V zqEag1iA-vULzF-#kzyC(7YL4~Kb_be`<|UL6_zWtBBL48uF|R7F80g){ZM#wKN_>OK%7;n~_CWbp ztF8T(`f^cW^!7SePSzOXHqN}bHh?GMNy!Cb1ICki5(Qfh7X+SDT)@1j$4ux~ZeOX( zzUf7kKwgyR186W1rBZ}n=ed4lC33y__vauQ+g3!e;Sh?YNHGM_U}7`KSJ%5J`GUK$ zDG3UQT3+wCBJc;Tt=JJEI3Aw!!51R5(Wr29%yzcrNj4=hg>#6#(RS-_rX5PI+7Igb z#=j*bh3%4MX%fPZ;*2~Ww>k>Ix99C7Ee0Z^ZM#La$3aec!QM!HZ$;3hN6D&(T0b#* zcsD2QZi5;f%x7-1h=&w+YiNq3=l(jw)GsQYN8#|cTvV^NBHBg5A798v92le(P3)#9_ zK0nvG^tPGXVJ_y6q^<@h)VGtdY@J&y)?4qz$?Q#6nubf+K~?CvLxu4;t{MA7`gRq1 zUBUTkVP6{8V+zBWh14g`m|>mDuo<&XH&|Wmbn`gp?6`ySEh_e$biG|l_j|@Q@F6>D z=nNtig)dV0bru${gT^g26!;VZWpklC<^(|g!nqC=Emj-;sRU%b5kSGgIDzL0iP0wn z%majR;g%E|;&g~OE>@+|#f4=v)?!kbxnU>94_Xvy(${enK6x6~$6e-s?1KkagEodU z2RiRC&&q&KNnlv|0HQS~F@H6T)T1OBNCufWDJ@!QhRsXZQC^wENwtjfHWG~kHV~>< z5U6So<>=;s*7rll%E*+r;GrjosBW>i!4<{UC#hI+gRLxxkypbR$RuV)?xDuekd`%Z zku@Zt*^StN7kvQqC7@j&n{ie9Ax%`nS4spOfJjG0ctM?32?rkRXFkyciT213NkUYv zd>wmMXrOgJz-bG6DFf0_3QwbD8`yIW*rVZ=R!pwy@N^hchH`UurId1z1{r`S2I`WQ zH(QPN_Uah3*FiKWZ0fUh8N?|(RefOT2V_b)=`+*CVoJWO=b&WV!Ri(&nkj0n-GWz} zP&bxbHcbtb=%WlC7y>zJJMWheD$=_r_7SS|TSb*OUbb)Rooa*A~s}9K-!7 zpUc?+OrY9W0y(Ugx#UECsCbA1IgMvPNcN}S`J<)R$;q=L4_EeXcjgdOuG^u>FW8A_ zaE8*}Xby-!g4tTlzc<#^_MYog2<4?P4KyC>m30F5ES8j^E^A0kU>8zf#v!g1sbsdW zXQR+aPpb-`iFi@)0|*u^gR}_%-EfwfB-f$RQo?x4W)1-Z!;dQ3a;XN~7EluWU`F~M z)vDl_1lYF0lu=e8*(yac2{uZUhlGCT{)1&NI6nM#zRKfA8f~OZw$`u7ZHBAq4A%&= z65XwSA&GEx_(H}W9$-Q2xrRnsT}UJIff> zGFwK5SSCw$P-5HRYLcVqCbI6c|EuiK6)*UnEc6;8@B;?kBmIWH3Jp z#=O62fV0a~=ZJqpL1QKe@F#2Jt^!f`k~A7#k@D+Q}< zcQ-5~bxU|Mi zS!Q$+r*Q~-BFiKjzt(1~we$DFfh=T$M#i;+uYvWo z-x1s*4l9Cq{j$|gTdd-3cN1UZt8E}h433S3^=xkgvzJLl9A(JOM~&;3Ct{)~0e8U9 z67a@!RSf+0Atjbbda&i0HTGDuJV#g%Wq}PZ_#xL0QiyNhSVW#FbeRJxi=Pj&1_gn* zEJq(n1T_lk_n0S2OE}Dd$=mZpjL0QX)gF*oJyI zJ_S%C?&YyNgL*l00AupNWMr9nCBI)`p@x9)mI8us|~d9_`!%!EaS4V0xj+&Pulq^uN|dXK1n^8$;UlqRx&> zTagbM9t9C8d>cIjAe5==^&VEH?-K@pE8ztmy*k3LiJAhra{4OMj7cSPB?kib^im3V zxC|VR_72|dVY-Td%Jk2}I!h-tF=bFij!ygOzHU#prH>vjReOYlaaFT1v`(LclYdf@ zfBQct&xULciw(|r!vtq=BLvYHP^ekN*#jg`XlNAX8bKproZrKbW!ylCw%0WLct8jP zB87?6?C)h1BRkl07rm}nJg=+!E*RIuH42e&+&5w{k8(a*ri@ZJuQ86i9 zS~i_ixEg0-s@W$H&?PrGf%wXC)4snX|DQe}CSKkR#EIWs;^uqj-Uk zt|F^mlj1%?h~OX8g%mh=jk0|2zb^oRB<$4mh>K51C~h*tHReX#cn)shp}QXWZRp&C z%5AmSc93`xhY#?ed;g*tOn%#gGm}Fwd$WJ<;=Cp&-*PwgY;EHd3{2>pQZ%9Qi$G$A zp>F$RIM@pS_6_T(sPIT78w1Rowy;t3@$#Vk4sI@3FNb>e=UUqshP}ggy=>dvu81!LQn}n6b&Dj#;apP+hl3VCUOc_A(Fc@GuU| zgsa~}85+59SlpN010KR!-T2QODmYHLqc98ki%@U~vBC{+GvXv4%SBF( zE%_AP>rMa^fe`v!aeqQj`dJG)HRZY`f&YhJRigC`aevfEGv~B9SV2&s23{ z$dIre-#C#S!aFgfw&;rXvn6YxLRu@xF=C{kp}%K>zop3b*#cj%8gGFBHn3QkTo`vy zWEIaR4qm}@O{ct^gjF4NI7%Smu@rU!_tG-qgg23?j9sO4e&OF+V=4%oK5`dB?>qNQJ)c`I-F3d z2Y!d2B(E-T`sN#*;80gxV80Sg7P$t;`^9Q5I5{0zcA4RQ4o2AZIuY`-0q`brgImQX zp~S5mWqp#a6-;obC6EsU^;)E|*TIVz_>3AygXW= zUSDgC@hIBiUJVnirKrhG%uQI5UICM^wFY=oSFm+x@RH~QEmP9h!mmcT}0`D6zEGTs6wm}~rqq82`V$s+e8!Tok%wL2KQBw^NKc4oR4v_-z1GAYjbJ-B;r%$$K#UV!Iot4tzw1{8EnqG}*AH zgqUjwulmaU#VMr5%RPfko06&0FiuJoBC$LKi5_F_^oz+QL-%PLvFRRwOKDP}z^DHk zzp=N8brFZP#mJq&I0COblST4T17Uq!lfFes>9Znxl3+^u=VrEWX~)BTG4fm!u5|v} z$!+Z0KT`kkoiL&QBd3W;NOe7v`u`ap%Lw2}V(`)~7rCSYS3}&I+#*EY(SL)m1m@xf zS3{I6^duSUxE2hUDBMaUALrvlIdPB*i8EEA*i2GVvfkHka1kbdA2f|q->udUr&11; zc#pZEKy3DKPrPzx+JB;b@l z_g_jewEw-@gcAXjUI||V26vwO=i|oPEu?ZGU_PsB&z`%MF!3tI;*%)~IbJzW`M;s;9 zVdHlf&a!X$=EnvuiEuWL^7r|Pipb5SW}JmR@|TJvX;wZY6Vs}our<~MMU=s|Nkx8! zk%9+%_!y7eT#O933BWI+cpSIf3{5&4z{EZ#^BX=C>(UuxU%}vXkb@NU7V@wADXHxA zhH^195B6^J0Lf#dG00@b@JwlTe-FW1A^U5&8W-t5x89=MO-&SW+VZu?5#9EZ*SP3T z>*^&bh>qnL-wD6(-??b~nW#t}$C#;YIa-n)OdC}(&!L>paCTFUIym)j1vNMUQ$1pC z1q9(`hvd=kb^MR8LwN|6Q7$iWPwh*elycQMbXJ^d+#o3(tQmMw&75{j`GWhRixN(P z?)jVgDPbsB;t)cygpw--$)qtyfsi4|g__L;IuecffBVX|f8Fk3Y^XV`(RgQTt&eW*Be5W_u^?uWZ z_-a$i)KPej<526TogqN}}DtAN=g46^m5wEyYAe3JWV! zx@`%>R1Sc zu*WfIlvJ#wTa&UN2jEQ?#d?uVp{#_qTxq1uohW{Vncb3GN#K08lETHYYXFxXaj&PT zWt0;nV$^oc{hA@{#SCRChkubwiFW35Cxf)6J@ z5eo+9jf8X5gH%V+zX{QsIKH#C9MqWFapGQ#x$})nb)uY;K_9-sddju%#t^Au$vqo< z5ip*&pZ;cR&?MGey1GPi~-s#^Wn4EtM9h%vY}?!)9)t_{i|YzJ1+Rs~6>lbQH%FYMX< z;rI+&1NI7;#4%DT0Zo6$EOutZQlrAQx$VqzE!o2z+J4{T6k7y_&vpJsbU<3#BP1cr zoUtc3mQLi8*yykPjba6(qVLk4QrT?dryA|qPyUpl9#5colyFy*&UAW^?0C4(@6I=- z>v}Jd+p)AO9pknm&n7deFT|fv5WvXHm(*BU#BPVFIlMoao-$pW(HG^KAp*0iG1o$; z7-?$%e6^Z6M*%r#p`Rn#r`djM>8wLftxpVF{bIYC@n^lVjb+HCfs-q+rQ%e>R7R57 z$mx0?g69a!l9fall5DfipAX@%F8j-uOcsoN-XIcPm|+{M6}JMbyO^?qm;R`5p=-NH>PoFBMiOp!+uWY9;u)}?1u)( z_DZHw{o821UX8hU0bw9dRVOBFN>jOY=}4VzB^d*PbB`h$FV%^X-8d_3f%;{3XD-4&*j&K@M4QMYzl^ zy)SdwXLdwqw+MF;n$@~*my+8od(u%O;E}cibKz|W%kBlT4uJ2}-(kUj%gq$_G$fV3 zg<`>@G}*bupFjRyiF%Mjx&jBeFiKtr^xfM@Yw=SW^Ahkg6SSjhRD^acQDaIdIG(yA ziz$)qAW>MIoxgqIo>&(sQTkZQ)Bti)pwviyr~~XYZRBdFbj7V9iarw~epUAS6diD? zFE}CniZvM&9dZE9iW(e8%60fwC(|&3Q8(>aq6wP_yjY7NCb#tL=$yhPry92F8A}iX z`l*HlQe;p+O4uRREI7Y~v-bi6OAF6L@Yn<60DboN%qnBY-?5mcsc}n4m{8x8bizNZhzf+0~#^#N6di_TBtfIO=LmuU}h}S zeTh;h!<{4R(>qOJ1%&L`+~`yOxPhxvcvp!%vllGA-DZ3PY#l^z>(c6yIzbke4<0-Y z0pJ`K%yWq;Z0H^&srM>-KX&tS5|@>aaO@3Yepa%0bamYifTd;u3L&|dru;16rftp* zcr0@1g_L^KiZlaK?kaIy%#Hn*0U+u932K3{(@E*6XgKcYqHKjz*)TWT?)xaKa1K+W zWuHIc<6+SsBR4?m3sc1Ms@ZnrwJ%Eq2W<_4N$(Kr%d3-98dQ+VPy}D0xDd(saRz&o zu0co3(F{Mv@~);rnh~I=}19 zYubE!J=-(`wgN6P?B!-9yd(K+$u$HObU(p80*4u#{E$VLi)JNTrPOJ}G=@>ub4z9E z$ZW393}y!q7yIlLNAUW0?zXlYw%lLMMFL^fbBqT(`|ml`7#xRhHgJm9`?7#K5pu)U zjP%xTT%yFUpg2FoI~}(Yb8}|9?J9Y1M1x}`Yec2WwdKEQKlg{&viq&WvjUtQo>%xz zSw%u4BQ+6DHaDLEV{n*jZtXbcTSr7oM8tkyvN3a13iK7p{tHW(M0u;IXyiha9 zFTNtb`Sr-7y&DEPG@S@Mr$m*b68XWq7%yLs0D4FKS+NAk%e!Wo3tzGB2V9tX67^}t ze0YaOpgw7eW0a{~=OW0))((tAfKNA1OMPTPN6ChsnC^wR_2oNxPUxTLMG0!%*zzK(kq|p3LRd$#!@D&((O7CrmHy0zL+b-3 z5YOH;@q-5y#bEfFiMyFFJd5lH<}85N4Zr41%HNRiwlrrae5q5s0Ki@_tdk^gOo6%3 zm`nuloc(D{;U%f?q*@YI1<woQFi=H91l|X_4=VXfp9ccy?E1P zRSN?32$do9EC2b(n#80ouAhhjU~ZldMDZ1oQ<(rk=0ZBXvTG4M)JY~h6tus!yQ7)2 zEz?iiey*qiEh76Q+8>-$gy3WldM)7d01*Z=&J*HXNJ59TAFn#SZ&?@t5J>=6-IC4P zw|!r4@D~D+XIj?8r9}WZ)FP3hke^rnl!U1&N3cX+zNYH~nvkMC33(-}?|e`H28ms? z)H4?;88ZAlkN}VB`pLvKA^?P_uuW6( z^fZtP6z`)bJH(0izmyO6Lk@B(&Q;U>_e>lmX7dV?$V$;ey1v+@IB6J(3EUufRPpAO z^JJ)88gv=l{HuSMHZeR9$syl!J0R| z-JX2_t^<09(7Xt}`|xx;jXkBuCN%=iRnb@9EY4+PX#1Kk;%qqqKo-dOFZrTna1F-+ zhPFZKmL7BL1cp?pvSI-fzG*WF--IK~Ff$xnF!WUS(b^12u0`%o-NIdMOpy?nRZTQH zlRISN3M~s+z-N=Oyusx3is)e?oxxlMPWM>6L?m?O&tqai!MfFQodxE_f|Z&y%0#;& z5WfZiFN(zJBI-0sHm_x~3qiuwmL5u1)EH%gfRUhZB5Vw^cA}~NM#V@@roviW>l?(@ zO|1PkBj=^q;Bk8iU@pz>cinJPgwf6p=F^CAf=7SD5R+VhmcjsKj&GQ7Wc>tu+z1s*0zerPkWA-m58JLJ3fi<2aBG! zl#8~MLw39R#S^f*dNqfwNE5M46G7(YO|6_#3v~ah%Wh4j)Ed0@k#T$B6u@dNjyOMO zM8uAdh{eJ4TE;X8I{k8K>Y^B(>5#G&p@=r(!>MDIist;>X0gMmyQo5+YSLAx@TUG@`cW+s161%2@<2_#xpe%gVw-{IT{HJ`N!pj-X1! zCQYrLX?g!tMT4%2@_EWO*|CUzT3acztzsl0v0iSX;(gAF6Ri{It!RLaSr0cx;gz1* z-?)QE&l5`u93e?zY}zPl!8Q<)cs6bHh%o0YdTXo?4geUAmkWjQ5Ol^Qo{$*$RaqxR zOnR@Z47`?R8Tp7==tk(jEI?7B_?;c8qb0WZ#UcuzD~YVI1~Zw&lBi}11r1aW85$C}CW&_rtmL@J+4g&GYwArNdVJw6 zlkGCVbncOKaXN`HFUVxtIQEg5VLF2v+l2?o;Wx(L4M{F*p~RD;*CcQRp}wmph6qpk zNMA2050nOob^Y-l8b=w`SkXclU9QZ&1BV$=Q`}y^@(;#a$v7FyqMVv3fk>6g4##BX zpXSILQg+ypGaCkxWE(vUWCf`a4N;$R6B4C{8)98UD-_4rN}oL4N2jkrv?HLbbA3*?dvf{t1 zbQ#ZIj+Rh>S^rw&+bFhieLV{UWER{v?Foxsl@DI2z0Cx?iVa+`4q4-^>^vkXXQm}> z+y!rvVEbfdSuH7qS0Oypv16H|y^%}!dUgd9hD8Tr&yBK>(Z}_%uI6tan+3{Z?==fV z2tv^sR^EUUpI7tcJ!v*L_iX~)wbYg~Uq}%ta?wEImSJZz3yvo?0)QJ{nvfAh#6Vmj z9Ie_=l)MjQx94fgyt`qwXXd~Rbt0-EmlZ|96VUR<0S!qv-in-9)R_X3Ka`lwpNOg_~Z=e$7G2;XC6$(pVh>L16EjV$@MTx{Daiyql35m9; z0GWsb_(3wc?hLA~M$5QZ%pYL2;iqs?L=lz2J+>s9SXXLINp@dGi08S?rN|hw>B;5Q zWkh%-QdXiVn5O^jfPpCLs)~quXxnQ*S)dW;xE6n6c(BwlX|NMb$n3JeZ2wrc zgUDDphfMXlY2(a;+qsK||McS{Qm-B$vcKB={g;m=@0_^)RhQdRZCD9fe>~)DU)`lw zL!x!lXNv@O_Szq7G`moeSW2?jgVhZHhLrxDp+6DloM8Ak}Pa*pD>xBkZzUCP+` zJW+bwhq~E~~`!5X%Gmuz&2XAvGzSX?IrNs;~If zSd`8lR$ATuO98`_G^Z%jE@V;K4S6}i#AJSXq$*C}CCONn85YrXwIIstC08a|$mls0 zex|0Y{jp{rFUeR)wTjc~s^q9mVI}ztZFd=x?3TZnNvxnO>S1R-8OzBD(CZ^KR_i!N z>yTZ}i{Fd*MWNREdeN&2 zMg3zT)ooUDyEQ;q`R*q;0tkqMY94QD;@|=uo`6_5+>6Rgj-u<<_(u>gBiORvn>8eP zaL=Joc1GoLLpP@_fRDw>f}FDN{NqA{@CPeoh|6ijixl5Vcp%mCsfs-$p&H3P74v|T z5)@MBxuS89hKoLE~Ao6g43v}+fPN^sZv5s8PO;-;HKdA^FGP|4bfDX{hsUn zBNor=ZFl7)0yc&@>`5Hjo-rs1(amss&C(2^8kb&`#s^PtP2!@zbpP>yJ|gQg0Ch*v zaSu&J3&>~#R<94mB+hN72tn*R*zi#+AD6NxE?pPUNnj6bQIeo&%>6g;9BgHmaw}41 z<~UGc!bZREJ1Bhmv&cchH-a|Dc2 zb}dGhjLO6*xdm-n{v$c=qQYfUz&|0 z7Kt}5m~sFRq=0YXqEusfcF;ea7)m7jRF6pjAEyriI6+`<5&exf+DW2T!if&^1!5#A zfn7xNNtD1L;ydaifTpz!P3=akn2^&Lf&bC(&+v;_yccOT%fP|41}P2+p_*fzDggM3 zWzR$eEB{-7sYlAL81D{Odj^&(8#WAA>iIxpo_isr6SofDGOF3wBRQ(lxY%sDAbGaZ z*qKIrNr`Qj&YDzjePVRblx6x6B>@y46&?-v;|ET#qtt{ZZFk(#)9udr8SDiFiYA2( z71}{;&xOaF{J8k7*K2Xi4y5-dLQ&BRRD?s}(WlSaTpMLHV<-qu=oLK z3t`oA4T+N-p}Y$e8fk||T8b1f&hlINPMl)x`SsMg^k7|wISM}nh%!R`W)Gu-JmttN zJtznkpy2U!FWIbbQq9%WE(^+;I-*6Mqd}8;zGR~?X4tM+Ud)~)sd4cZHJ^mZ{@v=@@ z|3`MALCfKNlu7&_D*a5PJXiO4PhzoA)a3@UFR3oxa)*8u$Ua4h-cPyHj_h%&i@6Ct z>y}6OrsVq=G+}nsaP#z478(o1_dx`Sopc0Pe{(gfY1)IEg)1nvdA{vf(@)ZdZ@k7T)O zS;8(yARd)32hdW6ck|I078q2@=}PO;J5NP>xys19%H~2v*7q@(QRvDoz~fSD3kVO#5GOshO*8wrMT+U7x_XJm;kK1Ikz+6g zBqK;;5j9=*%&C#3K_^F~DlDri7v)jPL{CcVM?3)$QZHCMB!62J{!5~mNy`7%=|q5r zly#)gaf`yF^D5>-cvD9L1d6=ZIK;}T-ewDtR`k6Pkp zdDp-4?ia9WSk`&*`J!;U;`NJu6&Le74AAG>la+P;^K!fG3Vh8^PQGw?BWEFWHvULO z?#eflNt!=e6ig1eow=&(|lQ7_b1JC3#<8~QX1OhQ-cyO&(X6l zo*7hdnJBpvc-U|E-*uKsr+LNBztXeMDC9j6P_T00WM+TN*8f9ELvD)lB^H^#ReH5_ zoqJmJ@(JN9cF3!*-!j3RXUV%w|KCe!2d+Kjq*3APnuB>U^jU)PixT&zIY$V}8W!)$ z3RVuak<@e3|6-XZDW&BT{l;UWg;2sw_ezgvF~KUcwq1Da?Et+;@PtRkZkJb=U9=^k z=t;Nmi?wz@F%o0}hf_m|uH>vQ``|G}moV~N=VQ7?4volm^b_2@>@{exnG zcGf(+(&NUB6M%ol<804uUy{Fj+_=ODo^i5J;^n64x$nU4gF9VaJq~K(|8(Yg?QuI< zv$<@+^Fx=u9~=`3{w^~oTbcJ*$W>{+zM%018UCM_E?P#PalWZNrZup`uXjED`;)$# zPs+^RHJm?h`^UGEYsVh^yg&AB?AME&;TETyv92q|W1SxY2M+yu^x;-u?}$_2Sb^f` z@Q1*`aHlb+vG0LHN&Qg%rmS|PmsUISf)+S3su(ab7BKea*4T@V(JQs1pJ>LT-L`>) zqeDr7hsJmUN1CC+m88JYPqkx>y2c};wzXs59wm*ohv)c@eHe-{9_{?%ls)uoG|G7N z&Ax!aPf@jj{o#RQnj_zw0#-ZS`gK0Xum5|_=->~hfg#2DW6x-T!(WmD$4218p|P&G zjSx^77Fc#GV0biYtny6(( z5>@oSwb4%YlDGZ-jti7eTC@0|8`njnKPdp3stqfUsFe7a2XTEce-{b6+HL^D+ z7If8mhW%)CpEl+yKU||-o#$>S8#$IezgjDN>VW2#x{faSn_au6<+%^{C)QtHTaA1++OoNSxXp zUocH1JaE`wYg3WCs%-n$usNDTHpBT|dc#8!1B+^N{mPDLPp8$dZ1Px^#|V*P4}7 z)R>IA-phUOEls05`Ya=kF;HXI)9N3f=UTunfwesq!E1lx)j91~bzdG;x z4Vql>IBX?q95QpsrH_gB`}1pCV~?$DZjGICNC*bL^S^9NNpV5yN=)s_t9tc{hpm=f z5jkviQa=Bd}6^Qld_!`ob1zOl|BjsZp0JYdlJvue?oPjfcK^_R4|qMEeT$ zkVJdj*e!$BmAg=DCCa&;%a0E-#vU(8tWgzJ9V#%|)pR=V+3r!(sSKr6`M(bE&g}TP{8yLzuJE|Xb;m!ZseDSS z+VlF^R-<1-x2?UNmS3E=>-oH0hvV-4ijUe;T{-jT6W6yh=T^;px%X7xi#L983f=~r zJ~mADSa;kfO~p5@%J6li^3TcJqB?ypFEh+v`atTVA#`%e>5o_1QDRM@`?{_#oBR6I z+}CX~&2AEo`wsc(B=|-8zMY9hF>}QGT#_b~E_nX6cWua6CfTFbu_m+Q~^+WTJFZr!(UYiWVAmakoY z|9Totq&V}3+G%wubJy3WU0=89G)qbSJas*Fp3c@%vJIc6Xfq)E zDiXz@yKp4kMZ;145RqY{%6-M&b&T-MyJ(E zPSZv$M?KSieTnk5*q9r!F6&B6E=jM2KgFRhkIr_TImfl~jECAv(H&9{r3v!i&k>at>g}05?N#Aa>; z(C~9aV7+Q9rtEBun()c|KjJz}GZ0Gx?X|I(8(l3;3L~c8&TR z2lW>>V?(X#2Ve9nI~zQo^JnZCw^&!*5_)Rq`K{`lD%BV5r$deE|15>C{Klj)^3Y4nWxWWwpmrBOW%Cvx6jYK9u+2L zo=(hcTUphF3XOT59V&>_cU4{D`YAE9LVeT8U!R9nmc3fE>PqXjD{edZh4e#VfaeqQ z%hZ;%#3r`J?(r-!zv8~IaY(Ky-1whOMB!G?5>r;;woR%nv8P*OS%n#^2eezv5)Yh8 zJkYvwG45BCRYrgCiR|BoAi0oZ+fM8#}lbTCCd+& z?7z3@;_3%mI{Z5qFRN9rZ-3U)XTC2`c|+*#hR+#QXW>3b&D~l!%hF*taMsK~G;K9hrw99{qTz~ zFRHo+=x;hRdq-^id|$hM_%f$u3U1(8(d3q}!0Wn_oBLL8E@K#OKimzKM+WHM-Sa*S zC8YPCUwe3G_Qm)0tBg)Gy9N2Bcom-Unw5R>>b?~B$zSJG8GifL8seAYZj|=WDbrbd;YP&r(;Fx(3V}FEW!`%L6!~V~gecd9G8tkQ8uLVBW zony0p>-LSspS+{|yH+!VX8K5^UMxJ{@#ay-leYd!dE-B><&F+co?Pun)(eT6_VZ2M z>`MB9Cvy7=Yd31>KfLBnLxNUz@0>2j;hyb&`*e-^N^C>t2yL{Scl?X!ujXmL zKA-h-i%+_?&OizhxU6Z|{HtouucuXUP8qucX1fHP?AN@xJv%-l{gj*V;`80Y_g>i^ z(#RMZRjK9GaXFb_?qtwAac)}t#Cvr)+xF9>-p5zT9Jtp!+3jM|>t1U_`{`nJg^_V9K$@kXttKXER`pLd& zp5FQ}DRY;c;Ezjkdt1LFMd;evG+jbVNVoq*$9R?M8fLYeq3%B13{_ExF#PeNO;$6Rv+by~?3V=qr#kN*JAOWH9%9p^uWnDl^Gx#Yji_juG!IM9tW^kIG%o6=i_Mkb49`G8+7YwUhHmQwgT`Sg zOmyKHlT@z5^af>Gne2~061-yA`mZAs`0Jj|Jw6$UTIj%yBf*Ko)*0hwp3{iRvMQd4 z=f!M+Pru@hj=yv#xaX4GT00q0wa6)U8CL=Yr`qLCc>Lh`&n@|~^XKqOhl{CIR^}9n zsf8E|Jons`qL53+8lzn}@mFuePCcrpi01Wg$4EU0sYacGsi4v)bxq*bb{5pN%N2b5AmZ1S{3-J{(#00rjhmpM%`a3jzDoKJ`k^Bh zzqBr|rrV7_o6F-Gc3qP0LzX0uKikA(*)unHo#4oL%y+>&{%GCeM@MA6_74preHwf= z?sMXJJ9>k-fmGwq*LE}Nkb1_7r;VF5^Tjs7=6DxDSHs|jBfJwg$h^c#8 zh_#;~|4;I`N$c}vq#y8VZqA!rG7--?$zY8PUQN(MU7t!*hwNm%0Mnp(8N6C1`GZ0F zGeroM=H22PvBj=fR$%`h^diimH>U1oBI6nwH-ZQK{|s^^GUCZfFh}UT6vN~$!-DSr=rfJ1mva;Y}Fq%4O*GOYoazz z%+W`xFxrF^=h0vlA$rh(&euzn!o(&JW4I7)`bP6uQgq(V!I4!vm0~r*?BqpLa%Zof zut?gSU-QYXtpYP}Kl%dBd6NH(kC-Kd_$_ly-Is9PyKo;8YkcXAXP1TYUyS(iT&3nx0b5(;d^9qdUVS#?)@ zI!}sM?IhWJ>yBu7k}EP3fYC{ynxBT>v+JQT%ym;Td=fr4mNL{G`Hu~KIr@YhwWC6T zqpkF>l3!<45qmLn>?(27`%|`aj1$=Vux387xj$eCAt|g{IxmIf&y~>Wi2OebRo((s zrbaffI00w-%>LF;dT1g<@icp+n_|VG;vlc&GySM3K7`sx25-wSOG+;n zcRa8T@24tXy#y!4=1KZDBxIaTeJgH5PBu08(o7|OdOr;b6xQo_J5xE03f0+qjJV`~ z2!4#0nynF{GF&)6#nuZp&$%i38|a~1GZ+`r-%6gy*~U@iHLFKc?w;*htMtfNI~Q4v z{i=WN7%FzsiIv0)Tia4~)9Q#F^wCpFr*oD4WGi+l=m>6Exn{b+dnX;Y3mT{Grp-#B zYgKMpX&^NiC$dp>_slg#mg(if_l`)NF%RzIDk@`)suVnXJ}B_6OJa6Y@Z67PZ7yFJ zCd8t#-(<2|#jFd0Bi3OjPd}Bo7NY!?e`EPE4J}{3_M+Y&dFAHm4pUR~7t#IGC;r{! z`FEPcw&l`N?_;Z8?cd25G!fo#X2s7k6S-wF_deJ`Rk;*>9lC$~#J@{|yLKeso%<+j zw}A3njT3g$WK)7QDrY3G$rl(Dqq*Sexbla{y~s_166STZIJ|>4?ssPBR~j5xXeJwE zya`*X=Zk_QTAaI!t9JUiT@YVZCt-A=X+fEDche{S7a6_b$Dj!9ZwqJ-g69q|S2^bV z*gwDT`9*Y|#C2uxa=Co}jpLCYyF zexcKDDM145ui&|@&*!@s*SmCYTgYhHDKKee-r0Ap zhr*J)>7sb4dSl=&bT32o%#`38Zg_$iMTXhcOS`$)UJ&%(9QN|`8S!h%N^4{%ZY({$ zBR_zv#7Z#Fi>qh{J*hLpJ5z{$NSYy(Y+^JIcI9qCnjFE*?s00B4T)=X1O^%5B7|_g z$4R?&t-K)UoxgNKki~%3#Wx1Ig7?;|p5dJ^xo|Vm+w(Xhpx<+xa6w1nB(B?y*sDlb@wB` zex6Kg8ePw8f6ZsS$NS6kq|j9>gA>;X@N15k&siYuB^_u}WRhMkc+XjNQhwg?AAR#? zozT9+M?WOO5K43wK5VZf|Co0&UOr7CgX~hI-11h=W`s=s(1yw0Sgb8R8|eAC{8G^L zkAlQfgFiivK9zlBLgyi5K(7+p$pE?YsB>8 zmthH7&q`;2?)`hcBxhkydlz}xxTh(>Sk-nZ4e)L}T)1wwz$QL#qE`#k^iIKh?y9|v z+Wb%RJaPdo~m;y%G))z5%g195Ijfp{U>o5UCIEc~*|W_|6hd(p;d>g~F3%VU!f+PG8m zrct@7!Jmp~qdh#dAeVRJ&PemoBR_5k#oS=MD!yu@G|4YRL}C)%W)*12~Z?XEw)kFXq# z#tGhwmKROWJ3hpVH-ok>8T_Kt^JGq?#u%3O304sn;Ly04aAaPP$^Vl_7^z*~{>l)( zXlLQ)6~zioR}G;9blMW-C5wvp#Uj<2TI@obViG)erp26!?~3T?Ci<1q`j66R!@5<& z+SB@y$Iq%F`334O&CF&))%9)#ww>zUTSN+!Gp zi(5^3EHgsC?lciSRvi_MJqeUDAy0mCIstiR6CTFoJu+RWcHom4qHyll2mGQl(DNmO2Qx2npMf$Ed6wNA{ zuk^jN+<;g{#TNw6RVbS85+Ei-*u^V(OqDAe_TPQRcj`qX)WVB9u4S>?ZTiDj0gh@5 zv}rwUQj6@~8|;kqE>D(l>(Ya@b%@b+x>xMnmuU-j@@~|Kd|zpFVEp8BguUJuWS;S~ z!E08lr+1~1LwEAxMnwG6hMgyO*L##^_-D489;^=Gi*Y{ww4zC&xP*?hh$uUQ%Je_v zKUcBXN!aUC1ZL;SM5R_3MZeofi1{{cN*hm?-V_g>%^G<~R6+7%$rZ-pr&BA8qo3ks zWNL92ZORCb_Tmk+oCsl2V)5pwFcFVStuWF0+zbYyD5FtUK$M;*5tn)>KXel6SnJ1ByDta^Y^qjP4 zI?4IiU}YnVshfmVok|!oIEbL#~Td={BY5G!mtTW^cf-6$El zFqFWQ1)-@!$pTCMP?0>m^e}Q%; zS{N`E73{00(}-2vBw8raOQ4ML*q<&;Y-C1IvK~r)Wr-LPR1KNT)@x9@D|a(gn4<)2 zBu4nl)BlK{+p4rcZK8z+12)_Ig1+Y)1YW}M$?lyE>s^Mn88RBZ1VrugBxv;su$Z}B zxDi^;9EpKcpOnHP+xPUHk)h?&Cjsj|imX#&C`^cIh-zki6|HJ;msq3!=DAdNG_=zu z-qvd;A*^%!&@%94iPnYA@}-1o)1ZHad~7u8I|!#N23FX+7t+CXXjremz0!cAto4H{ zN6F5+;wPv@(`}oFNV-GH<@r-g)$|&s1KmHsYP>;~M6atEO2}}E1G8lsqfrm58GlNJ zY551&CguhXn#W(C07HSD8f`Z(c@pc62EkBny(lLRpvW3f=F6Y&l09!Jxziez3r5Nc zoa77c$`bjcx_kP9B9ooCsElERjHHo}#sPj&oji%LIvcQOUiZAOInuv8 zMNimrBliqukVl^g{7b6ca)H8017K|L=huJ)D>Ch2umKx#Vl`*_u zi4eWQih=~(lh1eR^eW0~i^Mz7_u=a|cal7I#n;*ed?g?GYi`r@*90r~<;~wew$OWX zU~jn*xrv}sQ%$$&0S`#Kl4PKd3(xaEd{HN(@l2-rxbi%|YIv92&3o(wvw~gAOdS4b z3Q>5?Z)mOP5pL9EA{Z$kIxWLA=2jKy@lx#Jw<(}~3V&4_+Xj1Ykztd^zSr;O9s_y9F3PHur`z?5{p18Qvlz+Lq8Tg~&aQNO<#;{4u zr+m&23#YRcQO1U51S!3%9gGLFsujmhx%6(!3u!;X|0L7rt52%=3o#!7(5caQF|Tq{ z3Hep?E(rdz4yzm=)#+k(<*)OTo2UQ%hwk4l=94wo-&C3-V(7Km(;NvsSSy(kHvfwMGZnuivz z1>^V*x?`M@2YK=p=e6)Sz9Zjnb67dys`EAxm#>(spTd*UjW>)ao@pMq(#j?iV`FA5 ze_ZQ=VE1MPI=S>6FK24^0{ZUVmdqUj#}OJopWpghgkTOqA@82jh^d?0xug zaib=Of#fAHCwF&BHa8?hUlgebxv-3u6{6q~&8N9)Ui5<`cd#@?V{uteD4*oF2@$?F z{`s&9UF5GZr47<~B0MULp=nMsobw-i72s?OyI)?OCdPBJQKCLr@XM6>yg#HD(4Ib`%niBIcPY-3*nR@1iWLN0V*aWWXOOt~64TWLE22E36 zDwj-@dXLNj4WII9J;@;pydvP5toP-{qrhQyQI}2AQP{Ha0^^_RZT7&VVbr<>e}~1e zZ$XsWWXst6J=x^Jt2`v2-00#akBj`(jlSBj_H%HmDAv=P)q&z&^zHguf$%2NGJ;d4 zz^S0Zkq@z&Tj&GHJL*H)bNNS-gUqs;7_P86EVN?JP>0R412QzOJMwMXh`PE z!#YjN^7(6mXoIFhM?HXk@RTJHBf=fptj8MJWa`N#)#s!fZbyXQP*(G9l;vd0>a9P0 zXUy^_jafzu3sE>R`J+YJanqh7pVp%j;pw*d@;%Ov%Z+Ai7J+dV9l-l$QhhT2m(V^5 z(2)mD37I_m8J&5>`TPYzv}eL?%CDc!U*&V=4{c=z&0NMvR?JT;7mdMW%k#@^5?TDp zKNLiYpmXWy)`Y1ZG&Nati7!NNQL4s9yIE|dzwg?t>_Ibs z57B16T8?T;dGq*cc=V;PG$apHhpe)r2X7Y1;`f+^9V_j5?qu2Y{ZY^7(9qJR0_VHb zWCky6I95)X;hv1XyyB1i1-EH@+d|@;ffs=*0(go0sYrh)@&@45qQr;^6%XT464Bz<3=)smay+NR(8?6g zcc0FvC^wy;1ZO1c`Gw-c9>eyf zDXY@O6G}%L1WXw*6D7iUW{9}+AGlScEBSt^VQcb@a4mV7i^&qNi0~tYBY(a4{!jT* zSqGYno`>!3tMBq~{wknCjVd)+gGq4)c<{XXB{Z4&Dx&#;N-F9N+q43*L}d6YBWVNm@-@lmK(k5nlR8+M^mc6&Ant zOj5yU;3!#C-bT)%LaT;95XLctEI*zi6lGKI5vkTQGf4871?#IOqzdeIKl;{xV{bGq zpEfUjuo?%7xt9JqV>E4v@=IG;qB9c*w|4G9&sp zH4c7ew{M;h~5YG*XB5Ay{9gcFB%4p0VfL$lOH7+WaIf##szMj@4^T{lDV-vvIK+7k> zM}JJ6Ba-v9NNNgx-{0qgPQ=q~WUIt6y>lAVz&=L7}B)IltmDQLG#=ym>?QF9Shsl1dj1AuR z4$7e!ytX)=1ioH)hZ{;jAZ`2$Rh;;zpU57O!rHvS4Mif5R{l9EAax52SA(qZZ=(^d zJVq)vi~6jsg(55I%rY63Zty(MR7Q->Q0K_D&t?G(lklGX0-GZ_+1 zB(ZXqcw7SN=$tqD_khB$^g9B``$y0^k%*I!_X7&K>34P_@AIK`LJ%zhW1L}#{j5kE zBb|hs2@<_L^}&x1v0O8lT;zjhhMm%TB(bVGOz^&Coes>q9DkA?51RJtxH{hLpCAkT zTYp3=B@$f)Ke4+@BW7PWVX%0J+NP60fmFK)sB-rCe$X0765J8DzTKGHD0(4%ur12z36kFh3 z*VOnEEXo4$EDdX3^fGnbw(y@|+paA{ht?r@L9{v9hK3BVkQu1hYCuy$rDDGo@j5s` zf)Y&|JZ__UDDOQJKwknYXMu+&pt$h6LtnPeQ|*R!V_Vw|D#Wwk?Ihtoh7{EeaAF^Z z-iWS+@H@e)32a3k!NKblws7>@4FkcbBth`n=6XM~KVtt{1Xfc&K%>Zd;PVc&qqX1< z9B;WAN_Bu|5bz6alle8Ptj(5{e zvc*4yz4)+RhFs*L;0Lq6KYS_WB$t)M5a}w3T`x&b#c6fC%tdmL=dTU|@3J>R+|5v) zhFFB!&RVX2^mRbx4c@;D3+TMoP8etTaeRhQ%3ubHm)L{B;^JKt);*QwA zt`|1Dtkb!Fa9c*Rc7h28D`$qs#iLG_0RnhK9~8~7-0u_6aYIbTfKL#+RIt?GTMqE? z3i7P#PVwG5g$EJuBEdRwtlU{VJYGLg8;sW6{(s(X7AE{)vBDsUrCN$Zh-Yk%_r*Pq z4~2%%ZL*}5%J_~((zjLOSbyytya4LN58bPz5kWhlhb7k;p}~6nHsJyX`VazLhTCTb zV>#MoMdC*p4uQ!Ci}zK#KG6oA$p}+B1V*kKq6zo3$uY6J#76t zZRNZ5!o!65QuSuMM6bZ92^KIM!-S_06FD89uFA(yOc(4*&Ck_^j$8Wtz_WPpl@Iu$2VIKWcNQAkKOET<6G*RlA~=1> zqXeISf-ju_5^)k40;fK(L>7uGsET22p5lh=5XdvCJH@akwVUZ~=>t-TVdc)?adG-b zwUzOnnPA9nW4WIxpks$He1g*yQ^9OqsH!dT{#ZtwMDZEC>k}M8EF&y#Tql8jFHgKg z@maj<8gbO3#vDnr^EwYDnnt&1;VxZee2TlXVG<6VxH$rE^W!A;h+$Q=bM6Z0TtK-0 z=UOOi>bDw}h6{+s4=ij?aQn^xs8YUx#O8~}7jlVX{UEA>FJ3=;0Yn>I5RJVoY!IS= zm=%+ROW(L=mr@)x#QJd^W82xC?g)`#0nyjm#sp?+4F0|H)#nuGJvc%vSlgJ$dk))c z(BUfZgbRbM*3S7ZfWjt!0}mfMVDmB@HAMTuL4o?Ub!(f`nfYJ2dP~dBx*XT>w@OBQVUZbr-3zVhi=Ercaj`QjaeV@!ZU~5!cb~j7sD27YAhNZTp}dt( zNe>DWENrA&_O`DiK2MO=!ui9NK6$UzG7&Lw2d2lk)k41THPf>juIwQ6fv8xz_13V4 zk#j$u^uCdVq^LXMOx(sw5|qwEThzdF+bQY>RCHxTI zPQKhM0>RU%5MESlWWiT0DiB3*m(8UXM=hBVmhdk`g+gd&o_bOQl2{d;99}eVjZ9R1 zgeVf&q9q!JIEx@mS{Hea=@>I1b3+i}maxwSsT_2Eeqtfl0j!Fy-CeY3E&{d)4d#GAy2kp*#2iHU1z5Zn z>63~RNVbnS^aVhmxc^*)znfTP4Px3905Cdz`kB72@#dgj{O#_#$N>*aYR2grTOmtF zNhdc$QehQZ8Vlv%|E7rTGyKuwiv;iiR1u;Pi)8D-p&dZ%pVngk7otl@woV+{kzDJ4 zEb>FL_2AIXc-~~xJyPxT;HYIX5XpcoSJv3_pNatfGFVw>JS@2xt_KLT4(z`d8RL*@ zf!4$)p5#IbL218DQ2#BunOukxl#W8O^%D>yTmkV3iq<1^e}Mj;4?z5{igcbeU;TmG zA)67p7Ny+J_YH`zQOJWoaA=oxV9};_@-FzGQwsOUVFUE+R0Tmhzy5{P;s1?@>GkrBH9x=uj89%@i#X!jNno>MK7vG_zj%(=m8*GML1n~6(x$`tN8a{5MLi75B|oXuR`Q) zB>l45e@lele<>}}N@f0UM~44)_B9f*a{T?7pgsl*hK}HRsL#1?4oK zsh!~Od_Zt{Y>l3sB}8zsSrWk^(crpB(q@ect^_K?5kDqTC9vcFZxIjQf7c?%{rer}%t&o)f@B%!9viFb!Tc-yG^a3n7 z{_OH#w69D?kkRoRRE!S6gzwBqbo`G*;3!+8qc}vzXGch*A%Twn&xo=Hcb+686kv}; z#=dTH_7j5?e@@nf&iw{Ws54C!eDWArwAO^eQ@|71to2v&#uN^<(T8&6r4B^6E-B|= zSN!`H1hK)3yW;nsc*W#pwN;4yrs1$z24m^Z%9}bOhqWETjWi>6yQ;Fw`GsbhepcNi zqD1uVVQoOjiwHU#)9Z*tzNkkuseN{#zA~Z@dXp@cc%B`F@_tQU2-H(@;T~D+5xqfP zLDZ$n01#I|kqe%9I)*2M=87#pSi{h;b~uW=fGPf<`<8{+Wl5leM||}|9_+!1I|Cgf zYg)nIqF{3wES26MOb|TUK2*83Sq2JNknq(;QNT?qL9QyqxgJ2Y-&Pd~&63C2^kf*4 zohbxe{g4UGP4rii%?%;RmDQA}O3xB|9ADXKaajp~G%h54<6Mn0-2)7{&b0~tIBEhrqrA{2x zp^We(kW$@0ghQJ}?q-s658Cw-GBvblI_W#|1wwEb&GlMW#u@pd6cOy`@Ad_{Z`$ys z_l}VLo3@{bZ@Al6kZVS8M-HiUfVY)|TV~+ZVP=&jphp0m9ap+C`1H1`0I}m zUuS}?J89<>A+DP%%Dqhu1C|(5Z>ztazVii;z62m4@!ws_3OV}rIRJO3cl?d3p-wq zP8Lma-dL&DN@{gvh^e^~A4t~_i_~R`N+n)@uZJCSpAhy%^01d4k>1Rc{DQ7ti}L4i z4)`}kh&9ikkQ)1lZH8nM6hb;T;kjm0M&R#li4*fidi|!L^gfGRU#Rt=@%vw?tequW zSRYuo2mA`+2ZyFroPd4q2v;F?{mB`TaU;F=XBypAiHje`o(lu=hGWrA& z=+i0Yw_#KQ2eE9rSf4Bd9C)+>(wcsmhn&dtVAs!Z6H78IfgV>8!leYhkrzDEK}y7M z%ijy1KcFH`VGv)iv;@AGyd~b4KzSk9{3EaEkg>)Cq8DO*S$gZPQ5*$A)Cn~n(sKp@ z?;{-`Q9^2@Hc#5#SB*JvkXWvSG7K47R=*pfy7v195ZeJ5;NM?(IuAZoR$Z$(fQB-D z$v#Ld#u|B(v^#hcduG~O^&S4J5bl#T!wHoxrmi)L(Adr$yfFxlZRHRGsQ zu(XN3;0DW+WjmRPBh7^GC**H2fi@-GD`SVJOq77@LZ7u%=xp*Ogm8&tt-8gR6K3BJ zKn(}{iqe`ZG4bLVv~9TChRB>6hIaDsVWA@AH# zb4CRlYj(-WksLYukLn?wscoZ~1>5!(7ez8X*3(-${oCYrimTwr$p!ZwNfFb~sFS!0 zw?ky@ixMjSQR&LhL4RQ7cy8O@pQ85G576dCZr@HdkHjdGI?WW@#L2mS5JHuwuc4*St?LL>k zAKJ$vX{$RMN44KmaXi7$gKpfv^Xp(VfaOIAS4!`&pZWWJ3RHYY9i3e@YZDKMNOx)$ zlvqg9OYY(jc8Sl_=KYyJ)a8;K1ZCuclVU7&-!R>Z$R9{pND>-)@2JN}ay*92@Es(X zVP0;CCPv~w@+Ose*)as+@zM37tScls@$?ypxAYFAby3!vsP!y$!T<4c@@kl({flQ@ zwZOmE`DaX(cex@eKz>`F_G>UexoG>6`{Ax4go=G*FIUChx&Hj`vJxkM=()tJ<(m}W zt4W!@K$la)^wBTMiF^9Wr_yIdj|j4&8m7;FQM@G;FQJ4#5<7Nn4$vy^)2CLO1dPe* zTc5hr1LsT`CO~@68$A?bVsI&_AYkytB{`UY!9~T`p!x5UUEu^DOSpa$eEecs#r5N- ze>~)5d4C8a!O1TFLDV&lGRV@XSg;qt(jT^-ZNtNU`rbX2lb4JNN_>^*tGNNx+O;I8 zDMAXidCTU}GJ%X@z6&the-edV5-jh6QAy(bEbi66W5y8Kkbxqyf%=!qXr!BFZSsL{ zrZ=}uK#q@yxiPvVt?j4}b|fTEGdM$>cXcO$UsAP1e#w0@=h(CRJJZtX!|#91uz7~? z9ES7GYFEvjk!R(dEAUJPyhbq}iKJE2GC#Z9bHbdEW~!saG!MT~=q&y<;NKiZ3a9EQ zeJ?N5^8twp?;X{&D_-#0kvUH(i`V9do}47nV<}ny%c~K zl)bfo6z?^P3VzFXiGgUS1k=&?^^qW9JH|;R*hzwyR*z$#T|Zg*$5g(V6J<(*zaGjG z<3;}&u_D54JL66_S<8AIY<36(HiKAlERDnxSH$yx3DRcpI%2Mrb;=^Tw(s1ocDMr$rO>E!BIQ~aY&M%c$Q(H4p9av+iP2+G4#_5y3>&}t0cbNjN$MxSsO}e% zQ57*#jXY5u{pd}q5eHI@)bDh8`G-Uww{RkT{0bsHo|zMQcK$4pKK8{W5wk{sjsxG5 zPW8MC>tY!KR91eJYJOyREsATBfiEq7c<&f|dX?4;HF+IWwuPCFB!=U06V)Xr>(Alx zLo;kW;lkt8e1GzRU?hCfWgOT9l|ING;<@Oh4WjU=_UZ2fJn^eaP_>Y7Sv@zSz{JZz zgk6Z;fQw#z)MVzeiV&7)K>3_bwFEf(+M1|&f{6h5he#f+wfOOs*DmG2=tI#kLgNUR z46L)b=lcBIGh%mY<{+`%>%;TmRT9SBeZ;aD$Gqq)KSJ#Kkr6~tRH_F%XMBk0F~pM4 z)90w0+k^fn#WXK%KT#S16F=9SiH*fg7s||Py7v7ep6Pa0oibiBwo&=ssdGwIAqVU?uWh?*^wv6N z^V)swxCp{ozaH6azKd=>p@#qyRd|AbO}XtRlJO^6&Z@74=2x$ncU9%D?Q+jCUFIYY zqp7~+Wy!9A{L&J##S;-Rl1GOLgUqPddcej%xcQ*ddU7Kh?roL!f7@uM+Um>lw&-90o4q=Pp<-@Kw;&u`sqrUztaWApo1XQZ zvjt|?R^E39ne;iGa^R1Y)|W=1HN8~kMLChpBBtl7kKC7ckz2L#b%ILfi@;V*+cx|7 zjz*z>Fqv*<>VEN(ZH>y1d)v0S7xhx~22}ZEdP37ubFuBj=6Zd7?aIqvPqlwr$2l z@51X>>)@~L_vP{5cCV^z-Oi`J_2!N8i0D63VFT8zZkz_?Pz^pU*$RS((a1wGupWOT zfaO6BzbMEYXhdCMWZP-~i|tNgsK8kMzq;MY`Ki}r>G*%lyZ>Ua!iEpefSv|MM?z)% zUx4Yq;7I)qr7rN;bHS;Oj8IvGYW`wMPN)Y2BL6WWBa|^9{Kip$9iUSk`=~(!!V%@ zJNyqE{C9@Iv9lGxSNl%}dFuL*MrT5)X_rT+Vru4A$h#V-q3z}LeT(gzYt2o);+u+b zlgYmTZ0GAui6Q`Tnrkx<;QY8!_i7kS18cnrq)LIW+p)&>?XFp)wU$aKU~{Uqu6?Sh zF=t!~;23Kbo;v1plgK4FIsey2!=MGq( za^r-`U#q>Fj)QQb&y+=Mr$0|5&crTSkG%Wk5x=f;?lgM^asA};-_y_>@~mWI?Wjq= zTsU|cp!ZYG`Aek;oZ&D1LH~UqZ{ITtC>3FHnb%~6HoE=qpH`M*zgXR6ky7s=1uGh zfzHGAoB$YpT}Sn$Oqe{N!<0N0z~M9I#Nmd-VD+r{j8E*u zVQD?X%e$I~^EZ3vras!$vX}}gax+0zUV?W+n^5%A_~-0CFd`>zG5m;oD``kW3b`JX zQ0O?_n$UmY&gHmAB9FG>0Jzj;x`j&~M&;;;@(8jDfDZSWM2Wx6*n>};H{v6WLYs18 zgaLIXahRPv%@550idawa5HcgC<)F-J<{UW467UQRa50Y-p&DJ|wJFpZT0O*|QXUl} zaFeLzad(Rr@YtQ4=?=s><8P0>%YPlflF`3|G=M>EbG?r92z8ulex8hOM#PC^6R(L7 z$R8wwiez|mM*fYSux^Ui+F=eFoDn7|4Hf3&ys!E4qg_I|t@rkCDx3bW{I52F=^+l?8>mIFs8BzH$Ex6KL|?r08MP zSH2TEABZi65WiB*<~~LWV|Y`2kodC|Wai=2{0OqiNWhk-#w^llU_Z zCO2|V1cIv5Mld&wi)}peKr0Q1f85q+S1aMln5O3XDejL{;()cZ8z*3%I(>lBSMyzu zZNS6#R9OTK=6qiKhY;-G-oxO)BwOsJ-f+QvuifML58yCcS45pV^{uAe5)-i6kZqFE zb>aA{?-jeEr$l(m2M=Jw%Of@{UA$#`uQRPaqTRm3RBXgrx~b7_T{4St zSXkHJhyZhAQ>EvpXt3LhVg-@R>V}SA?x>Sy3yWx|=r5^|`6AjW#T z)Tj>@Rt_@?yC~_uIf;XJ!>;Dn)zt%{9=A=|!6hQ><2vf?{^849lUe*2JQKmTn^Wu} zaJJq~Lh70O-WwD_D|-CUQrk5(u++66h!{1=4Pdko%qO;+{b(*f%JSF-v~gQ2X%0?P z#arqWM`qbHYZDG^HZXc49zvr;fiJVVzT?+*X&A?g?z0dYU6W+7dtZjeF^|UmQoAA| z9;P1S^Ud%m6#y?)LH{H3mH`8K>$K)A2+BQqOHdKUX>{keqSjnKvB_ITb%x5sO5!~Q zDF8C zr^lFtb!YF8<}gB7U-)jQ2R#ymUWpO*11WuaY}XC?bMm#s_eKQRF5Hsd#rfhYX%Hf2 zdGB@g1_|hmA~7#u8{%Hqt$}aE97s!j+^Yg!W+?4`rLL~MoAVt3-ON9$$b;L#t~K+iqT3zkhP%VE(J? zDDb!u^?{In84w4IFGej_4o zv)4`3U#K5PeON1|z8pn==tLb0AUW`1Wh79@k$iwkG+w z&otKbH67>1#1F8yJB`l_&3t=3FyN$A;Wr}aLgQ;j zOj?Da*=V=d>a7Y-?+4ii9`pSxt?e&;JcGHpMY{WXmluyaVU!fhmcPa~wh#Dt-hSOU zusAS0cbr?v%j1Q|)UR*Z!|jefsqDAnXA8zwM3q*oOkaA;|7@G>UaV9)=Y4(Qn^I-z z@`;s&@$sn<_SJ>anQudEUYegPJ-Pe3xy{R7mQ}8P9T-@3o9j0hPdn`CS#j855#%;| zabWRK!Cr3f>z9_N>SrD=UiI;C{qcH4?(^5L0D_Tj@6|6em1XZ1XAfnc#;kfTi*>K~ zeDA^Khwc}2)m^GZEQ(D`%5^&($(6sivSQlkxI3cM+v^DfmAH9(E0;vqSf%)7r*xPmiEy^L42)xTcI92vEfS8&`B^tJa= zl0;`JeMx(e{iySfpqgWj%L{|!@jpAGd(T`f9c5_8%FO*d7Ti1j`pfNJ_lu>y42LXa z<{s~%3JS;$o6-o{{j~SKeCOHVuj9`h@xbgmt5TEQdU`9DClId!xH~ERKJy-B4qIHGp5X-qtgJJKSRfWR4obmZ$_l()U&w_uqcA<74PQZD2 z`C6hx9{rLS9gXE^9oNs~uzTo9rlb<<k_Q-06r*4I*QW?I> zs>U6e&-DAy8#%Qw0bcKL+K=_>tK6!$=tX7UgsFw;@_NV8y1ofIy3J2=F!rBM=#%-# ziAA+S{lXEH1kI-ut61JTy%UuNuGjJ1@`u%eRkP`TE4-6C8lH03J6p)L;bs=SpJd^T z^f0T~)i9cP?q*?m#h_+kD%0bwB9WHaIo-nB*?HvuNWouK>3zsIc+w&K>spv<_V13y z?d*Kho;fDjc8?7{j@B3+1@@kGu|(vMbC-aSkf1VCg$&$`zrHu&1Tolb?&FgC0?r2XYDlaz7XPpwM zOFy~GXgk;|{$QM8*iMnUB`wLEn4s7q_#>a#z?HjJv6gjOl9eav_hn(TL@7V(P6P&6 zlgpGXbUd%ynPeG1KKZtQH9#xlYd#YP(tPh3BVi+wfkH_J+6Yaheu863=EA#AZSNXU zjH`MYH}u)2ai6t_QNz#E4K%U-C7z75^koH?yNdKahouzFrxdAV_jq-muhFY!XE6OF zZ2H*XV5PyqLDsT)4~Gunjz&l}GZNji%mQRop2`-f3LWoJEMb_3{GiIcHi+t7qJ|V}*N}5(FK}#R!XEb_>gc4Nu7YndwSsre03H(qQ&G=G$1zo;A(i{ffgeg<pJrjV)yXOfFSZBPDJ@|sB+=N2Z&lS|=Rn*QEs?8QQ}S6L9}gc=!KlVArvdB% zrT`WIGkelD`2C*Ynyq>UgW1VsOE2EZ#1iNpW3(J{dYlsjf)Kkb{hQVE**`n~6%|i7z zE3FRr-zM49mf5bA1`9Mu%WP$feOI-b%UdgF_lN~j z!CDIq)ISMlb_myu#ZadBm#{L>>SQ(**``Q^rARI5ae~Zg_xe^zZ(bSLLg^R!QgMKM zH-e1r@ZYjL>Az)*YckqrC({kaRfl}5YO@lj>gB9i<*nyZq}F8b)?^DQQW+$@nZ&8L za@K6})?~6BN&j=%a_rx0|5s!*!#4qZ8Lr9}-&Y#0+oVW^r|@Rm4KSaf#>6t{=$vJe zJ%T^ykw2=K>RqvnL^;RKO(&CvS6QeuC9ODK*`E{O(XyZLML{e*R9$yxo!6 z7Sxk)fq>I`+tBFI@MNCen zpw5dD6ypAll#sl1>jypJ+S_05KZHAODX35}-}4O(ZREGrC_QhaEp(F5_r&>`9%N9Xh{%$;`p!b-^9893L z6UL8bt1_81T$&X3eiFgh_~)G@dwQVryC0(ShrO@!D1E69zOndf9H@;ZCJUH1V4V7o z+0PeV?d~|}TYImGL$l(Jx!Jp0SEsPE6_U=V4%MY2$4zs}(zwM2Yhd2z`zcs%A7&Jo zzv+ElQ|U`fu-MY8kCgmw*(WEDF8{h;0nb~2<;~qFr>bMSTclGmll9^ern;h{>ah3u zX|U3bU-R^ztQWXwSCliqx%DUi3*`88*OtQ1rIv!cqzo9`@;)$?n{&t|bZ@7HWi&7U0~(YegEEX!IqssD zLB$~|%PM|Njg!pEx%|Fxw6EyyMVlucr8HKD7VK``+vj`AgaUDv;&Wj@&IcYz#P6sW zn#kN8C`ty@?yF1(8?iU<2BStKZ7^vZlYV92sL z)B{$O;XY-Uh;kLoPE9pG)P86p?_CUCWG*|3k^@BnlXl^ekVFVYeWZ`vw+rRB3zZI& z#`Aot9hn-MUJweTy0>qehVnMrW{Mj)S{)fjo7`<0v5b*bj7${pU6RZR&aZS3ln-{n zSWqyShBBXsrS93ZoKVZikIa$#_)&iRC=|6cj88)H&2Tg;GBOv9q7+0`QA?i$B1CfZ zDb~n+!YDsslm(6SUA|AXx_S55v`i=;ynwM(!C=nHd`ciJXHm_Iln=hcSO#G*cjZ2I zmqEJ7NC9C9lp$6bW~uDUWXG>*VacK@@IVS>Xrm0XRjy*Ts|BKHH38uRC_{T?n1eC} z(#}c?XdM%Ha0q4StPH!PtjuZ$*QSkzS)DxL|2jXHilvYWmaoir&QiBCHPToCl$I8w zh6N*S2kb@&Lgj4Lb?H{N+yyEY3OKAvna@^Lp9A$XoaKE&8{2kP7^QVO^Ff|^`pB81 z2-~+8=%`u!C=N7hBr`psNtOibT;MEja9Ecz-&Iv6E>wI3ah*Pl(ltFwktc^i=KOuJ zQ-KKnNCfO!AM_0rk-uPgjxMpC{8%VIKRq&rf$pX}L_x7=AD6`Qf zQu7<+BYfUI3CwlygFE{9YBz^w8zT>K#=h1u&AGs?;mc0j19$EG!jpq!x_^uqjlZ9- zelsGMiGRDs$4uOQoB8p?!RbVX^C#&t43zWt5)B&Dz>HJ`i!62PC02~B8aOrD_D51k zGf~jVJ>O}M=iYxYW8Vdo-vv}Un=4-A6V7lya5ypqgnu;&X>&OpIb= zt_Ok?J zOK8(D0S!a#NMCKH9wxcxd+b#Y_BZ{^w)8*s299_Or$lBTyB?z*(=>XI?N@3m_RP0+ zeI)pV39%O_@|@8&IHZ#2=uhM5?;qA2I#E@t$9wm_qrcHN_>N9E_0Ejj{TVsDOf)(G zlV8GVeo5)+ysj|CPdEqpZ%H3M>Ne*lr2}CVud9?Is|nmc9D+b`Y`-s()flIDe;ay^ z&m|F$I1`AJCW(T1!sv7=AKS0ET)bV-jzUnVkT&HB{ZTf* zQfn=l^F~b+J9^;MY#F!XGU|C{ZrQjq*zMG7rqI*3V3zxbGfWhwlqj5>ZYZNdC8OeZ zbnu?FP!a94>P=$3ZLDm*B1a@`6=J)ns-W1BsH32jndWRZsqYM#G!-H`d*)SQspj(~ zJE&6E0@%%&U}1UAKt?6c*`MgYW}`8({q)$hdeD7mf1_SFnY&EejuXp?5U6G&2(%uT zP2@YtTMJc9#a33m=6%WOl*tf~Em8nTclng90gMZn0$<5Ox5vM1%la$y_nDxJkZA#c zQs|U7d0~v~x^YCe7yb~B*tLO1`hI#Lki3f-8_@dixA~&F8ClmZ*j5pI-~y zud7uF1R!_aZ)*U}6LiFGMwa6D7U`SN0EK$B!b*FSZ|8N-zP=Yrzu93bOwUZ~JT#rYuy3iP!E?PB$sef9Kx z30#wa?cq`-Lh0%ci)hw#)5kH-Ik}Uod7ZtWTkq&uB9n!D0_4hqLRGXWxNS!{{N7t; z5Mz~7@zWdRR}jL}x}xZazBMDZOQ;I=sxYgk8<-H&0Ia4Xd5Lytsz;3Rj-EN;*-wnh-+^zlZ-QI5OHb~lSTZulNv-pcDWlA~) zpDW8=Fd;y^*#2w{`J2uPe5}5C-eyf;^L~Du zK1xui9+ASe{V2QN9~iO2E9>b;BIRUR!^B}J9|;MB4iw~stVTMZPqABaUh*(Yd6X5f7}At)S7R^@~q zDp>Wy(Viy#doKP)gr!Gi{kXyoT=Ft}JG;X`Rwd8Hp9ZojQJ(=CkmQ@VmQ#Aoxyk8% z$>}ITdKV$qbMT7R*apOzSfq3$lJy5pg(2{6c-3i#2cTV&yyGBv=ZfA<1g;*j-33py zdu%_McL9X(Z{8#U2gOBN>B_ZrWqM{Gk#Yo-Xb33z*c|#V?Y7~ETzX)A22@?w_pcXH zGXnUbqhnT~H3WZ1qB$Pbi`6aV_Bg&p)al69nt7)MaV85X4N7DXr$Q)^0qT=$q*fNB zhe$p1;m5Ut4N|8_Xt-@6wH!8*KjvI>DV!mxdQ&VB|@ae%7PpqQe5zX-W&f2r&t)uRm0?}Db#^YXo|}Z%-0g! z(BV0sU8k%)1kYwiE_uKPqG0 z`u)$_7`?)MDHfC|76icQv2eMkam1s6` z@8*hag~V@8cdh->6S&0_p)9!1fW)o!Q19kKC|%6hfcNEti(6bP+@>{_ZK@^MGdmX` z8Ndc362eNyG2<`fyiJl@5Jp)@(RAdx)z@}^S(Q7Mv;nZ6=xhzGdO91Z8Da{b-KF_@ z?}og_Z>!GKO>v>N^Ktl@)n~c-gMLmV4wD)d&esg}bK_XOLSMbYod-%&XtmGV2tGWs zCWD~6&Y942+h~2a1T5W&Y`&B#_Nw(*=}klA_ON*39*}MChs&cvl8a1F1PmuH*@=f< z95_9;zSQWWa_kt-Lqz7G()V%e@mt_j7DAXKs-VZHbwnVEveGm;a4p9oEa2{4I&0xW z)bs-XvU*Q=#9wMJ>NPg2k$}@4!o?G=+tNnU#=6TEuCDe@I?dkVKJ4Y?J~2PJve2F4 zUHYk}FPo9uXL(>C*r|JUXd!!bxMpgqCf?j@TdM-{)`K-(x2iLvr+~B{0eHIy)`g?&URk78@VD6RqWuK*XrKO+4?eYsd ztXC(x-Iq$ZD;H|wmAn@*J}dK;tK(o{|4VR}+|)GtaP@WC%1bAol|Nv^iQr1FnI*>P zfuz}Xr|#~(^M)R|%PY&P^NeGw-9C$7rqVpwSK7NPyqDiq9$t;DTwM(fN4lUL^#ypnnEg}_X_&-B#DSN(~2^Y~}fD}tS`eY{6$%vZlnq;-3_Rwh61|1Bhl zSz6g+o+h=U!Q|xo3;l_vk5pvm@?Lt+Um3b+@jNcZ{;A71vGxqErM%}r#)+x%xuz)G zZr>kd>ZmL`_x>zZgUY-If4};}PS-|Vq4xAnoX_R)84q;7&BIQYMlqrGj806Y_%oU~ zQ_bgwA|>Bkb~o%0D(RKq)<2dK^Yy9AX6t$Z`9lRD!`1J_f7@k6tohJw#o=CH<9E zjO1w;@YHJGxvzEvPp1ymz1OW?U1@x;DY-OODVD@4q8B!Q+fqU}EYo&e%G#jD;bgvy z@XzC6DYyOE#oH%l224XLo1Gfj>T;dzsmJV7!u{LDfOxiB(#+jt;l0r%{kPn#^4q8d zXNzd4CmI@y6d!+2O{f&SI*Jezmn~P4J7fiAO2Oi5DrGi>4!ZfJ z=${3lDfa#z9(&Av*lV?E8ei3howr;`=#WLrl*CuZIV|wJc~%={YPk}};fOFZ<@U23 zp5w+o6ENzG{^_I{&@LEu-i0Q0jAwBSfx^P01u;s(FZq+5-Rtp`p8Rp5loeo&dar;L!=T*6JPuGMOQ>iE1GpZAs7x7}d zZyRyl{&`E&)K(?AuWxwFfBJm#4NZ}onp3aujTEEaPe4F;&U`Ks`=?H9XeDmC-Gu4& zqncqB_r|BT1})(REz80~12G(q=YoYZPG40_iZ)A*9zCw9lnq~<%d2T*aTj?+rq^?H zxvke4QO?&{EId>vJhT!seU+`&eE%M^xaQq>Mbl`r<&TPU9m{7~%5o~@L=oljpIaHb z!nIqL1%?KqrI!x0Vl@XJzD*U=#E5Io#@|cRZgCEm2YRDgQU~Xm4@N%y_wh=J>@*8=j{59s$m&D)POS3d) zDVv$t`#Cz|do;a|=BwxYNK6U%xx>k)?ASB@Op+#|>(|vAJE(_dEeNt!^Jv7F(+9df zK2%=sj?1%e?_05DTP+w!_13T?huMD*7WgRfHQJ;zddTUGLJ8dbj=4cEh7)6A`%Iv? zRG_sx`nn^cLaOqO1 zYja8WekFQ}BS77$`2A(wUFETdix1qXJ8-A^V)b~he0hL$lcc^U-=Eaa$#1_W>-gyX zl&cJ!e#xYSsa9E+p*_u1$1drXriHUzxABk)_b6IYG$|Ey`{qt_zlFcR;kePI<8hUO zbhB{G*`}&ird7^I>$1^-yR*ITfv{kg(Ltd+8KFk*80y)}A9i0FJ{xnB`}a2y(-_0E zG5weZ|D)ASs|EYVJsBt3dmGrScd}d0hZk9#7%azwu6!?(_VeBR?{`IgPOx=09d%+$ z^~>flyZ+GOq|v35aZ18;=)f+qv-=mXCFnNn(`(p%GpTC%tQ%w16}Xj{`*APpq@u8- zq9t9ELgDG4pPX(haT8zciNa;w&p>$d=PTW6`+}5<4dRXse-2sK+;28b+c zkl-@5u{5jizQcb}mJA{roqT`Ln*EUVVp37B^>#11-gB52V-B{ri^6Xg1)PtN5Z-gl zspekKn>!u^8E?U$C|`tDcBUl8c&CEG<@0#?_r{7%bK4oDD=bXp(w-}@6b+8@Ym^?y z3*Kd3{oob*TkY(CcuWVo-0J{Dfz6CnpNPztIsA=`)_4pTr`(@E4Msn8JkRWx>7Mh? zsJ{G!oj*0v)q6Zv_uZYjCpOOY6V&$m2f2RI{S0zMzQ&y{c5j~8ne6IW{exaEV&4B< z#-UV+-nRVItDe-a_m~&TyQTf44$VgI`Q%~Uco}{8A!qV+&uY3|3Me0y?+@NoMz);4 zRq&nSjfl+LoIhfhj7p^2h3^sP@p&faG6vNY_ddvO%HWy!cyFp_K4W3w!NQ=iVm_1C zE-!Sdx$)e-$vFI*g|$4j|Hn;EXQ?sH7-SX z%}08!;x+kNl%96dlx5% z76<1PQ!BG?1wlURHXZLdeXB>?nZ|sa>9ChFJ;33jyF0yk?!dT!ObEt}h1;p80tIOv zZ~Cr1BT)g*o}j+f*LShA{f?VAZv4hQ(-x}vlZsK8>L}0Z{qwFmY%ERJZi_3n7yxM; zruw<3?5(y#a*ucTWeY4H);j)Ed&aH;ZaYQIIM8=v0Lq;7(9neEgVd(@9^Z-{gqK`9 z9dJU|-Cf;0H+Wh=CJW=HlcqPT`u&0C?bN*=<9}&-A#VPnOKr>EUlEz0CHPJfTJaYtPVE!h`3i^(K(CE-K&WZCdVTZ=26@j|Lko z!EEO>sh>lzJkYr{r9Goi3E#HRuMpWi$amO}YCa4T>!{f@-Iq3@*=P~)-eCU5;h*wU zEo>DE6#|MKn6}%?ELmW zr9wW!Qie;DAXqAlkL5&f!__1Mup4eG8G3sKmCw{SQxf13v z&V@1a?~B{lNhFDplcZ>@fs$oO5yQ1NR$17%kD!y(=%ZYew@vqt?an_qn&$iP16guL zjQKIGq8$=rGkfZOl_lG|%Ou6fBq?5qwLh@4@^eGB+`vIfQZ7wPTve;pX4|Ra>le(l z-^CR^e!YLWxLX}bw~5qZ*?A$4VvFPi;n*l3qIhxEITA-(R(pU zo7l{K!-fr}TLD&w7nKvnYPnm}Np!l47`^>wyBq{xk-m$H_}PghstIX>so4DK3qbnS zPXfH>Q|#-gNn*4lnuKf7UjvA$(Z|rZ+!Hb6?3iP^F;9%jM(Un6bvb^C!9FV;T&fvMtJGSFHD zDXNGeK2=M?m(nwxW*6U>;CNO1>;?&HgoLRdYjK_Quk`kp>c|%J#=ACKP zwGV%>8Rc4%`~k7GU@+~_yc^${I+cwNLs_}HOtLuv zYmKO$puk?!?Z}?k)Ve==F>}#X66HEc{6b8y`psIFLhG_sMK7+~avPqeL#TnZ> z=^dsaH<6MIW;)etSv=aHU#WlVywfMr*|(C^Hc8SJ@do29>APC5lG1+NPm*#QA+M_? zzp_H=u>`r66}sPYor8wNSqmvDU5d0{ydgdcre4_B^~%Xe;_PxMYLFD^7&b~NTqQfo z-rYPY#yn}EZsx+;7a9@UUM;w_&+QpKHM|r5QbThjWunZGFXO(JeVt8` z7(+QpxlQqfBm8aiM}`aKY;x6O$)jS$cGAPI`vz8gFEN!=$(}gQo<2?{RVH-jN4@xQ z-E!9!%}tt^pv6qk64POi$xq2lY#Nd|Ww_|7if)+-Ih0&ACNRw>nj+s&O0IEl+DV9aWsP zc8x{ev0|2liH*2Z=F!H{C~t@mxt$KQy9c4vT3Q_lU1K(X}Uf;d(8*EpgKo(nWJkrwQcqpIqCsT%?Q*rjLG7TIX-r5 zGWc@ZH`b$+tWZLhG-h^gFH$WfN3UJSTU@SkBG1;CdA#8${H2M0s(Ck6wS-)x^ueu< z+O~C$Q^eGBI;s(r$feQ^Unv${k2^y4Ip-ZKv4muaGh**c6;r}qdB47-eVstx#sExxjVAyj;?HK+nlFz)JM|~s9Duf zufTYw-kEYK6$4acjUqwWLyl}5tEbhdKrHP$2-zzoQ#>WJOpiTp0(j9CI!~I_1vZrq z&>;jriJSLcoapGWNRiJkV_SN2ft7 z_j0El|J8fGAL$2U{=75bY-0LB+dUcNsp*t~;2?C!}S%o7za2+Ay6m!xuwQ z{r%~?QRaGZ^{O94*B_rm=~Mi;39{`rcV!bL>YE|rsGy>36kms5)l~c@` zZI&N7LRmVMW{wM13~57C_w-pn$;?K=%%s&QeRV)1h_ovZM}tmNWs`L@C8-C7cfRHg*<(X{BX&@7R&hm0j8L6x&J^T# z+6PFDaYj2RXitu0(mdiLRPATH)xbe~MwXmf9zTy+nLYLr*4D{Nu8k!f^{YHdU;aet zolW-7)0*;IPB0Gnb&70oY;wE!E{9p0aEZ#CT|;PzPD*p9 zmwydDZMbL?%{+vr`kJis^qo`n>Mhw5Hqowp&<|?TAAg-&dNmn^vB?HWq9z ze$>x4@)+gO?kfkK3nm`*gP&n}vSwh#<#9#9I^t1|o&bOVe)a}QJ6L!s;4#ZQoEowk9@b!2yXEmNF|6%NafLyeOj=?a%dB~Q zGXI7ZNhD6Ky|GS!v>0V)LM3hjbfurPI?Se`d7QA!lLcj_3r~sFPN#e8;`pOy03eP@ zHZ7h=8Pn^!J#rI1*dl}gA0b}HDD6iZpSkcaasdyqT@C~G*v5s2b+c2%x6_2nXbg~( z>$rdv9I#5N?JAwKyk{{yN5U_}=U6aV()Kg#$MfaRN=7cB_l)2YZ2JgsCDwANrrdjJ zy9x>2U-VS@X2j+UM8VS*-b;%;tes}fZ?^E@?^vmnvCQ6^rZMwdDZFFh-TK=p-$_fF z*6q>x2a%`D3HV?@VlF3u5TaQswvg+Uic1Kl*`oy^WHAuRsYosbOhelhyFy7BQ79=v z_+w6oW<^Y0$aV7c4(3p=(%`_6)>cMs6#rU2#wDmFfL<}vmEhE9Wcd^SLQeTa9?Pz- z0n2t5{2@3E#Y6okPAnrwGVe8&Zzo%JaLXlf$x)j%c7&1|&!!Xg_uZkLUe;Bb!?g;i znw+v;KYM1E8gI<&I>Y?1oM-%GDc{&a&G>kMFX z&V7LaV_?PBrRxY`0EmJf8}kGu;Y`EYE0hI*#qA`QCNusM49sB1Cho5zDfr3<8r*(>G`KTjH4Kzt&a`}DX?hG~t@UwB{S3@uIa34Z{rOFRURk19Pjs-- zk5hq$&vL^UavdzGFouqa1a)ECY+XoI35L&bCNd9#f((+VyG01HhXn~D1cJ69J-oBj z>M05xEIU6bUHvgvZsAcukOeJWczLzK6%ZJPNoLRoW`5_mHl~`)15j=I7mjgw!W~e2 z#mPSfv{&t#p+z-)^3|W;CQOD0m09lXEO@;2X{C}yL+NIzH%j-K#%97UYXd{Bg%y@7 zogVzgQbNkWjWqAUDNr;U1Sm6S?8gZ1ts$HUK=ls#>l_D-Zl zSer_Noq+A1NC-Zvu!L#E@gN!eT+(j2RM-0;KO* z8BL`vt#b-urmJBqg*)E^_ z*hZAVriT5|fv5c#=VB>FVzf~)lu9+ylgk?NC}ICGUgYl`_YmCOz{ay|L5--p8@<7nAg5nEir|g%z0p^^k;d zmdX~%T@Lw=_P`#d&M}CY0tYQY1_o9XI~JZ= z%s984VpK+bMHwT1Q+Iay_AhS>XSo?>x#zLe7E=_?v+T6~NQ1-h??;TTQkT}v4`Lo- zv*&9iDNqlrynz{wEa}0RmA<|Fg0ah=nNPhog*%>Qd7PpyrR!ZeFjIY~_w6FZjKk(O zXAiP--57G&tgwmF+n4zqtG3CRuG)2&LCKQ^4d(|LY%m$TbLY2TLR%HyK640iH^`E7 zVT?ARlO>nO9#?(gW{~Bc&QhB}QAj7plHhBvRal)?bZyc#52eb;u5Hupb~)|BIA=jI z3Zag&ppfDBky9UF=WRZjWe!1Yy2`5cY=^S00W1iaB!jH119VrvIR?xachs=Ssd9*q zhQ+>UZ@-DUv`P00rK?g!Rc4oi$vbS}c5Go;VaS+WcfxO zCt2}%(;vP9gW8?;md5V~rN{eZ<|eaAI$2rCWz#FuZ-N7800>>)=tA00)>gVkmBL4LZSH#aJg z$!|TemUXnMIz=IoQa8oN%(0euWE_68Zjv5#=^^_d@nm+4eVeUD z2Ib;CMKP1L zB($?=*JUVo+tCSdkqtA6O}B5;)tE-54i={cySm#4@rG2<5Ruk?`O&hJEzQZivC-4x z)yBk;H&mmX8SJX1du7jP+l0Lg(l)VF-XsuWzr6O8d&bz_WG~DzSEgF1z;BCh8Ob@F zSEj!5A6cKElqIo^zNH5&9k7W-(#jG~VpB|6mAW?vQ3bSMz|Ug#ZDbAbtz}ptACo0! zA0(z58Y>UCB}KC&sY^%Lx4|rNeAfO;TUNxb`7$wyEuobqffHMKlmd zOH+n2hQ)G`AFr#wt82Rcu_NG((hP>@Vy(zoqp1ff2e52LlC)(=kISM-ykbsQ{w8xW z$Cfm#ar~LQzDzvJC2%4np3_*96YNUY4b`GrOv!}u{FLKF@Ut={UES5*DYhMpC>>R0 z%9wa^vOZGHMjrPT;(q`Q3^ z#DR@{=DcSgOj18j<+70pz7+w_I{S)OSuO>7<}g;in`iZnQ{IKXB) zw6P9lP&ACcv5In>7#B<_R(u|jtGI^)I6+fO+ND9=g$vSHz5&!oTs#$KV8yJHuLPLb zHl-!ay};K6 z^V_uaLdQYXYQLz%F?cph(T!oS`;$}r#=_tQr&zv+sF5%!iE5!82uC!b_&vF-q#Hwe z0`vH+X#MQcwn1lsiIcy;LA?dV*$S4r&u?QMWGhvc$y_d~Ei-Fh$^5ctew+J*ENM4} zwY-E*%?AsK&elT{4zka=GL$k|(aKVG2kSOTyfU& ziL9OD`ku|l&(LI;hv=Ro&^_U~cHC{CJt?2xW_dVgW7GG@1$ivrtJFw8z0d-xOxI1= zdL+AX@ITK|^k5jY$b*?CaE^EBj%}HGp$urV_|vYi6qk}Fyh9w^u={d2+ds@UIIrB} zA6T(dmB_?M{q_B7W7F(Gu9g5-MIlh}}5kW~$ z)wjP6uYYnQDOS7zr^vnaoZv9d+MdGxYFGc%qV4Fqc@Cv4-+pRjlV0Cbi==x7b}k>A zHXm}imE>le72d&m7y_jkBbE8P<8*bM*J<#mgG^?uz;V zMgxJ2vyRs@C*2(T-f6tfVJk^mN~x@VpO{k{ItXYf zo0FNdizB--&0;r2H$9!wet%&8spX6dyD3(jF`J6b5tH%rol4f;eY}bqYAe zvjz?{7_HsvV2KZ%99yTde|6HbI}bd(wYa2i`p3nqe6-h}v8}yb*8Lt!Gl??h9(j4C z#ePcdvdAKayJ?p6O2#}>ruxObD@j(n)$v27l?-W9=2$UVH~~^bo#mu_woElkd}W1} z-CC_Qy0NKA`P6xboYckBOk$kW$)O6mv^Hf$Y&$**AG2MC#*z<#_p5mZkyloTnffbl zotos7InM)i=-yc>Nfe1{mQ7zB-IO`|G}7TZLr04yl|d{k6`_E9=*(G&?_ic@rAUlXytZS#^zZagy3tIcreLo+MhrxN1AuLA$1)d0(@Ww$9`@gEWVT`aD@!E)_Qkj=27}UDt-isv5D_+aaYdqXUTNIeN*5)43BwmL$l*8RA{(YX{|?>1hB`{mk*(}S$>$xc5WJ* z^~_n_eY!t6xI%2Ye|Oizrd zEZDT2|6rO%o4)cU?qweWl(!PvS`7GistUdpKc+o`ZvT_!*`p@896zhjDwU=l$e0k0 zAKc-7_5@C9+JF0<=V#)<*tB4Dmm{!F^9ARC7F)-@ybzu@MSAmf2wkj=(OS=?)x>)2 zA7|e+lV<80dhqw`4HakZQ*@GOcF`oI)g{;ovlJfm;U!ZENKaSXQQ%1E6zNj z=w#BWDo31fwtgv5xC#=xg+Dp8Ld?QnxoM+*w$bndQzAj~AQ049%p-`zi-AKktJi%* z@vv#Podu^oN=v%>byfXA7j+(w8MoeqFGaN;GlN*V$>4x~nM~iAdK41);H1Ucq%Ghi zzh2}x34jitTb6+@X^!9>AFGS$$p5?3;KMv&YG8X2YWOtFGkGRO>oN#ZaMvvXVPR*) zg)(V2X_v#J-KF@kF5Mte;X+(|e@vz6&2xr4bX}e`=~YGoybH}c`Cd5MGk)3__>i!- zlT*Jf{MUMG4?FH0ablhpIuP-Jk35mDwi=JY?;ZRXwX;-k$2nY+7IAC6{jKQ>Er_GA zW3r0x=h-XCMXN@V%25oy?}Uq)C6giHlz5{tg#<5+6%<3Q0E{{Oy!8em+3;+G^5qhR*FAePk2uKO7&;^MPWCRchwy_)zBgJa4 zBL>*`a0mjRmlN@8j0$Wm$!g#;)XG2&Y`=x><@DK<1CvJDJ4Ns2JZs^wc<*Gn!eMM) z?Ln7RL1C24IJdI^0xZYSGI_^I&wQChr-gLx;M`?%rK|Xko}tz^v~w;LX?wPSfl`2l z@k_T^{vMxL8ub)f2g|`!5r8Vkt~a0&Pd6!dNyRb+?K~%9>nWcXDP(Mer|y9#dX`*E zdqsh}hX-XYsk;p;r|y&dZOEqI=@Vm-H^C<>7m%FgADeEn>v!xa-t>h;)bM%hAYI|}rg>|BbF`-U zw14j71LSAm^aT2~*E>14;IsT;T2YdOM%L%3E*=b&unJwD4^Aaky2Hr)7>-EecDKNa zsNT;!5IJKEHEWfy(_t0oUs23pRz2lF=vlMo7tq+@R>7I}49Pr}YvL&jXr=Ue`2@bb z5t&o-mN&e%due>*ht-2i+NfJ~hj``(Mwg0e zD~t7gBD0C&oX_7CMzT_t#v7EdijM1yEA2rBGtd?dlX=x$s4(+pF*D53hbXY6!C=1k z;Yg4H`>_hq8Xhlfg{IM`&wDJLfgm=c}>{b~HeaJUo|JdO+c@84MN{2>46OWi#!D8;6W} z6j8_@7ZmVM=mH$~J+*49O-SS+ee60Tw4Dh;OQO?Oc$*tm0YgJ_6p#3fKZv&6rMexx zUQH5!D!U$_x;_i-Hn8wVe($#SL^}OXd3>YU!Qu_=Ey4 zy8m2DP}SW(v3O%?-JSi5&!!gu zDzY6cFtF}ddFrEO7B3!n1mW{ON_JI0&RLt(#_+T^yh`(^b6LzxF92U9Uoiq7XQEe< zYMw!`6ylo7zQ%URl+HlSiFX#_@`+4(Rm(Cjl5F$kv55;KiT@7&W6>Oo-IIIx8BDrD zlL_(yV^T&!LP#*Y0>rY?>GVGsvzWC@IJ;Aq#X$zj7>CPi(MdY4$0zc*J8EDerX1I; zfPV6FpdWc}2RGpWt!#Bj^$~Hr+>D0mfxIz_a1JJ1TK747@URM)V1E$^T6N2FZG%M0 zF$Uca$a9kyQs%hgu6sEic$AK8yC<@j=)(9 zrjet6T$}Aw-HcnI`DyvCT)Y?C?nWQqShw?F1jtWpZ%j%ZN)6}9(ZQN4eG7e*hAQl0 zNN+I7q5;mb^4RT~lTIET@3Gq8d~SLHzzbGv6VuU!J%Nw*sjv#j)rJMM=k1!7Q-6z7 z^^C`&nd1VXO7NK%W4EELr#+ARrXp#0)UBPQGAO2l7Y^J7R3?P!XJ2l*%m)=@0_^|H zyvylX%Ul*q8QNmzz@p_Ghy-JR*|H^8i|=y*McZuW}qZFc7i27dyYgU|C(jVEG|PM{eLL1=Pm* z$fD1g7y>fb%z?)_F+Sh=GhR{n;>PZ%WnFo=0vZ7R7JT4i`)+8J_gpWA zVk$Uu%k=h3GkE?1+UX9`L86p9Jc;W3;_SPbm6zLxbPjTzVbpnL%4}5ITMe^$RtAfz z?19JL#SYN&^BfwmH?K_#xpkCB5L7&|!a0!fTwg!*6xZzV0wrPZRCs^y*eZzY#nWcZ z!I4B=;;WeG<1*A$aQq86Ki=Av)a@%LK+j|(eoTw`6=DDbP}!b9q2wiz#jG1hUr*?c z_$g@I14(3oH_!?3y&!$u44UcahAYJaew8YR`R_WYcewu|KAllJQ8f}o0cQT0*(yhL zqY8N8{w({V02}|wsM|O-kEpTCMkdhP_5|x^AVv_6b!L(p{_O3X7p%CW`cDq5_)$s> zS)?6&(r`M5E8cU~2wb~YeLVOeovcf-pgkSbyg?l6IyRH$Jm~z1H+BT|RWyOXguFi2 zTv7KmFLiJR;7eXqhWNgAVm(q-)LUj2RC2bKv;5O@%WDQZ;XP&pYWg^9b5?gh%N}7t zJ21BOA`khGus?u&5LmG}njfm?q0p{=()G}+S$!uzyMaqrP6NMEdCQY=O}T7xlLYGD zPUWEX7sB&=oT06CyOxf8r0qy<62A(?*kFuDe4~*I*AHM?rFDA&V`zdG&pt-5A$EWU zQ_vrA286tZY(^eyAK&9#OmMZ>p1Z?=Z#Qc%AmlZa0)k{v4fGLot4wWh->=04`)0OI z^G-_L&c@z87^-4*c5bW^`X-i;rE{6xhBamvr!7;<2_p>`ZgDePtPM_NGY7Q`-q?{=BL)MRJkl`yGm7GEz`dp=j`5CMQ zdXHy-=e|89jcuu4L2@s5S#0}`UXhoU$IgF6nN>iWR!^~mr58t?-7*W7)w$H;vmoaz zzf^|~O4rA6h*4&X5<}CTT&_a*c2J*Tue3eA07?A0q0$h414kJAW#w)Bz#c>%4PJ_& zLMXnRwF_y+Rwl5w#pJuzB>Q-AY@$h)RqS9XfD?=gJel4! z^as{n^H@xKMX3$PZH6O&(%~aiGU^XRWE}Kz=58*)I&9w4y&-6#l$qgwmKa+&y(qN^IG_i5?&(! zWQxi`0eX@JH=y=}ksi;0afYWb`4H$H1*ku;8P?}611R(n6m-T+ksTdqBJ2^sz!3l7{( z@iDD$*cmz({PsUD?+J@tNU#yT1^@E98p;#T4UXa>TI~~=6br1pT!LxZT zwX2HB@*?O|unYNxa`s+sg9`x#b0B?SyIr1VJ0rg+KZ_+TJlt_5+a`?`vF4ju|K3p9 zRAMY~5G#eQh!>kUVj@^x*ymW!{u*!UNeu9TJ$0Jj(*c`B+(Fut z1=YoW+XEpLftM$x9$34W7ylh(s=P6`L&CE&?vuYg6^4^j-@zlJDrBL_qjW{WhLWS_ z$n(l5^>cQf9LV8|uD!2OZ;KT+Jg1eyr6bnKV4XeRL!dL_Gk{#}jGC$=LN1T@N~nP# zK$I#DUw;$5IaM4PMljCGuOHn7CRO#1;$=R{W|OE~B$xVTt_-8PB-tR-f-i-v%olkGLzN6a8ZCUaj8E zp4*aU-|Vi*ue9=OY2W=qTXlW0+Prp$Z|C}Y;!YaYQtdMGBYvBwQn+S)T1K|D^VnrG zir!B1ul#!NMEoCDXDnFoq%mio@h?8>GfjF!?<836zV4GSx?lHuGRDSJR%avC-vzBc zlaYOE5w?1fe`VK^JtJ&qcYSzNcX#C8{Og|Tn~UB~9Xt1R{+)Y~`-fL;-O}8)`(#{l zj-l`1ua%#czR8R60$m;-3YVJ^=kU#9Zb`oThGqx5V#&4&{ZMgGWlLdhXT^cUFu9gE z=Ux($d5k@9-CRi8+Wby#p644Q_6Yq33pzd)%Nf&B)8CrQnYWWO7NYh#|7)$-rq=1J+qj4$dzt?9^!=#Wn`v*sg z(A)Y&94sPlBP@n?I7ds^4Iy>8rM4SfPYXQJ8d*) z^dV>T>GJO4Ka1T*jCu2DwoFlMd%?ZXvg*%Whkhtz=W=8#Q#|S?jS%`a_0$+#HkY(= z-|Sg_VB{{35fKsl9|xyf-hO&0ye6b@aOteMnw(iDo7?Xf2VD269hlmfH?hB4_hf@b z){Y#*uEWj2GkrccGAM#Ut2C$gz5Z z#XmKLJq$m0-`etCP@zi+Vjy|*wyyW_altQogC%7uk++q2#aKE~zf5?$DUYGN!1Pt# zf%Orvmf2@=??MjvbcvU^bWcy*vM@a*64*3a;lOTX+*}G_39d3o*QK)pv~ev)b*SA_ z2Jh|Nwc;pZ1?nQT}>mO_|*mh>ZKib?XbSubDUx=eMce zs6q#KqJ#Tzggz8_>Dv3PbXndt;cb{vmq(^OzD{y}rS4xDI2Z>xV9@6}k-G6|O%9xC zzN|mMCb<)Oz$QQ|dp^gQhmkRX-w8d8UxjK4k6();#~V$=v6!gyFO*3utA2Xug0$Nz z(zxSc3Yoi5p4eO{w!gdR^m8)i+RtMe#swpkZ$>+pQ*f}vi|77Hh6vu0ekhlQ11}Ml z&_qGNztTHpfCDepq1H}QU*9;^{yTpiS<)_}%WzrXDH%x~`JE)4jZgNx!a*$%0Z^kf6UTOIS~OWK`IDs{pQe3ru`X?*48M!h=|aV22w<`L?fqm{a^hE4Rq z&FNfk#4rSSHw`Pa6uWOS%vgEFix!s9A`AMbV;mTNX)9#WgXOqGzJdVo2gN^ZSq6z@xjNEOp?K~uQg*-W zPQd+Nw+crhetFVG2i!;_-{Dbsa7tU21nvoCQ#cNzxjkbF1D~eNnPzU|9A6MQ`n*H9id%@T2bGE)aO8g4zYn1y;+j_>Ut}mMZvL>mz zCTV1cT9ihtuhh0>Q{IN09^sDTjOX|kcy$EGL~8We%0litSFD$uqHSDn z1bw7^O^Q$FlUfRtv3FF zi>W12&5Guq)REC&~-t*Shg+?~Ve@sR-7INzv{IIF=ml`6iF&0srU76+JmQr3Wty zy{7-?(EA@Y#sbessurHC=KAjVzl&)2`+wWs?e`za9{9iD1pk4^#N5O6_@d>>ock_{$c7G-o($196^R}_E!DLO^*BwcTqIMty?Rs zMChj4jjh;P_}*I*&yJl|e;tX^So*~jzS&phB+*+JTwa70Ug-#cFU7}mv)QSS;txyZ zjiNN*i+WjZI%^*|2f`dKmFE-e$`7^5ypfUx1yRR%PB}N<`X~i;1_ZsVfzQQVxtPv> zAtA!M_(|1j!bBOpTUx!H^GBZ(q8J}#w{)ZNoEqO9cD_4eQ6>dJs~#<7zpi0lN`Wu! zv#?YOf^NJ?|H;HS(TP19wao`i30ebP|Bhlou>rQ*_2G{RT-diMljET?=!b5Br(at$ zd89405RqE{21TeSAosM?J|@BnEz#81 zMsMl~sE)@mn0u0df$JCKp&Q@4s3rIz7+ZudxSj}KXq>>DB7El>Zx_@9=(PnDi100y z7gPhtok%HH+e3u!WsPf}Y5fVJb6{%Ntw^vVm@NzQ)rXre%pmv%Cf?(Jx_FO>%uNC2 zA_B&y{BILvOXL~HU%$3f2!(FbQN=Tfj(`~?sN+u|qe~i}ym(Z^!iiPEdqoHy8Mu6? z%Y&Ofz+wJ{wW7jEcdDW6$P3s1lwNtwf25qKfd4OXjoQ+E!Z{_e zs%oEz$Bi0oE$YH+hkoM1JwI__VS?;E#dk&@B@|jbB>n?>T{MeZa5ONHTad9tX#OQ0 zPqvF&0@NckAgeGT3FusUT~lx=#UFkrO;Z4*Bq?9J75l0;7~h8fhqjrS0x1b*@39(J zQz~y5rJ=SNrtE+PkX5EdPZ}^i-w_}{aPXoa!7mjJC-z(w979ar-4$iB?Dpc$fWwxYrrY&3Cbt{jeq<8lQ^%eE zzm<=}H*BL2kEvUZv)kcPfa|`ArSfx(x9=G%BrrQDFVUTeS4rou?Rwf`qn zy#6z7JpUiF!#@yGezUl-^1b{buYYE*f1sf@+v#rrzZ&!tpHh4H6Q4RE>QmR3nv1%R zXTqwVMCW7N@o!HwzTJevSRTTC?uybB{}sl(u@38DtE{2ut8Z!wAn_hb@$WW;Xpn-S zdwB7mjh*<(y#HXV|5$Rr?~XmC^5;tAx1*e50$D+AkKkCrore8;ej@Wf|3zOpX6Ed#B5Q|yH?4>=z755JNN@BXLiC10-4m)J|ND6>J-=W6 zi7fR(vgj6nsQSXkS$pIk(vbM4UmGx83!UHl0QD028}+kML|h~|O!b{FO#869J)ijK z&6#{n$@bE@PLHmD`uduJ`^a7!E^g(xzMxvi^H)D!{14{+GdMwoV1iq4R6w;$SOo}b zp3iesX!szc!gH0?UE78ZKFa3?2R1SKf{6artyWK-6OE%bHoj#b_mKpVNk9*?dclhe zjTgQLb6r_GU z7?^B={`5Dpomg|ri)Stb`M|ApM2|p-e=Ys+nJ%Pf@AobfVJV_7eCv231RKQMySpOh z`qmS8t}&0BEn9HqFFOkH0CT-OC2B4a9$>CCfp`UXTIsnptX;@lv#p#7`DxB%K&dyX zE-;1YC8RIN4ua~6MQ7PYPZiB3XOZ)x&V`>%93TEfg}<36oK03^DhMQJx6dLDoN@%IAec>t^f)a7 z-+})(Rq*uPal0l7soF8I_bcDT+@XfvH#OZCQ<@K@G((Snq8oI$ zAH2CMV6eWX`+iLbUtv0>)-{$@dZMzrT&Hd&?8c^8)iOotv%HM=)ZFt@Jo+pE?}@=Ru2$ zKRkk(!w2uwH8h5@311I~P_5qYsN@L9+%oX(@l})(Ij)FPLn%>UB_}2Fao0t7Vrf@^ z9Hc)~tpv2Vd3+hs>l{x=z>6(40mlYvUx$kei7GIS;W1B5mGH`;%cmZ(h>ocDm}&p& zxTqwcSWi@@pk^&O=ZaPeL=RYP<%@ld5?HOrBL#sBwO&MKsP!U@!|IHLwZ&_*FnDPN z#5l&mbE+4z#ZbrdySFr;3i3T3WZ_gn0gAo9F{6Yn)cA8}(fdq9m3roVHDGo(&>g6H-Kk^Dg;C zB+tHmFOp|R8jI%Hh?ywQ)*c|5;cw>QTXDWs@6?D|)mPE>W+Stcm?>aLBv-J3K6EbWt3{pfN3o} zi8_?B9&X1^pqyv=eq0>=?L+Oq$`I822`s8cv7>?o$?E?wuG$?@mk)sh%#0a7;N^sun z(nJCKAs)A|K3!O9w8a>bC@id33o%z)KJe!kM|1RoN_!_R$wg6|S zkVm!&uda@4Ij%Zm{QXG=Vvla|U zSj{;`A-FauGy4%kFav_h(9Q_j4u@JOe*PATZyVttg&zcZr+*USz{UE@PAJZBE2aST{ttQE*@aDTx)1kpub~jbp8mE3(?0q_Z^s5W zwTH_tf#rcIBFlF-N_+}#fF1xYz~GY3+fM_l<4eN30$vM@u7qae2G~F|N+bMzz-wqh zNHuibA8v2o4bY3d2I_0B8ydgc0UP%BNVa18 z;#!Ckz5x2^7k?q3SftZBk%q8ctp6K^Sm zSEJKcg7u_E#&5B{C7^jg2=WrFWfCTcju!uWf_SwcSXh3t^1YGbq0smeT*UM`DoH3L z`Jf}#VRgq*aTQ{XjuQXTVidc4z;STUEeYR=Qp&koD`8borW3>lKXMjQC8Z)1P6b7z zfm;C)RZ#l-_oTU52#HBhKzxfKOz#^f;c%lFgYai4po}Pt0&2^Im;|gswO&YNyo3I) zZQ_dE^a|Q3_Nu6nCD(8>IUgCv8sx-6b~-FMj?#ji4iTi0nWXIC#Mp+~Q@-E4Cu40Q z%Ey9JzgjA76i9Y+{g88GM=pFUMlz8{V40Sm!p0TQb(N;Kqk>QHiTn}h(B=3NVgkD1 zfkIU%HeSfuQXl*nyj+K}JSYF9tdT@L1ZpycNP2D+OcXU&xmypulxQ_bd0D{qHspx{ z{C+7GMS>Xt6H+LO(20uDd!ZP_OOc=hIcEMu9J=JVUE@A<31Uv3sQlG(U4#JUh$1xc zLe_zqoIMIbMWD&)@A!t`pZgF%BY_?8eH6ioFe!!d=tVc~=8E9w9$=iCgY~gk1IsBx zV&g^S87cOYR3Rp7+q?Y4zAo(O5ibJoJdEF+PU-1sL@f|MO3u1y?Y|}6hwje^%j=XHH>tOGoxbjV%F;Tw45=AJd)iG1%^-ojr_Un{L=P zTSBqskD_9|8GHz~$P3;FSVFNzG_@yvwd#hLg03RteoX}I+NY@k!Y}J#LzQtcrDu_E z6*@#1mI2u zf~|cHx7ZMvZ-ub@c(;p*LB^P9NWe{nB|M(_f5oiEI$NT_L%leQN8=?B~nUkJMkNa3%*Y@LG&X({oT^?B8BcJBo zW%Cthwqqw^0+^%KFZ?R_SRcU$2s=)lT`Z7Wzo3gx zY!}DJtOH$CV~q(P@p|qpI^T2g<5|I!;MXM*Z^{@sv?b@G5L+s0f`S1N6UcOrj&ISc z`S;dhnh9n$1dDL+;))4m-hV+chohaG(?7g2DANJEE}@7N>lcY|nM_S|SZe)|m>;mk zLe5G$gOC!8@V}vlZ+7@jApQ(#i+XLo8Dk<*oslEf8L}()DGc9p#Xg9d5ov~Q8WW|l?tMT> zw<-A%x|is94gz*TxrL2+T#9x?7^>ifZ@`;jU+%S8!?;Ag{4yvqvA7>LXtTbUzJaEo zIY7pKO#GJF#U@U)&U}hV*v&Y~GXmngbl-MUSZt1+cEH#Hv%#4|1m+KLO=LWEwmh1a9s z1>zZ@^0E4A9=}$itg#+8Jp(aV8RL5z1~gX21mxkAF(G8I4YIJ|Q0W%XuX>;nU84x_ zfF{Tq?RtfD5fuh<`>b|>l!JK|R#b(hL7OtZG+M8~jiQHsX+u{^oOBgG4SA(ta(Rrr z64eEvrPv;tFSIS@fpCn%Pp4n8ZH{1UHRX#Y5)*XIlN($sU{Al*qOs*98e1`Ee@ag{ zwn(Q%W2@|$XdI8x2wzzzI9M(Yn7P@uiJL)7eFfVoy#dnRxs{m*0CYEpC zf(Hm0K}YpVLqMZ*NOuc3oo`L`RsIYf6ozqM?z?oe@DwZ#UbFW8f>oyGkJ zhTi0HIS%>WxF|Z^KJ5FTZ!yRsAV+l3?s=8ya`koI@s@$$?|;QD17;vc@T8y0ff0V! zFcH`9T&G&8d{6w~gyTLrzEuk@y)uG!!W9p(e$&AT+rsj~d3Bo} zR<}k^xEC6~Gg$ITtwdgYJZ{ZMjiH0q#U4Owj@W&;bZ+L|L=!2#Rp}9>7-5S{Ab?cj zKBFK(x#8Mlw$c?}DeL!-^6Nl2*9>a1PIdtYuM&cp(O3*pDYQ2$s9Jbj3c9hY9pHAuAMNPWcS`+!7V zO8J7Xm)BhNx^+s9_G}93)I}%$4VUTHM7jJIW1Eb4j#ZMVS4*>gfBECHnn4GT;(o6p z6Pq!}ETjM6q7zVW)Pn#ky2ul8M+4OuP4ePFh)-H_clK~+9#@u{0t_ih`S70!i>Ll8Ue=h}P|X1e`8 z);C{77oNtFPTqEo(H~6~;TwJqGacV3YT#GVkYl-iwTWw%s%zXhY!G#;>6pyu%@I$w zJshTdcf?7-E0)wn!m$rb12=!gU*~ddjIf_Fb8L+e2#}&gjSMMjaETDn=j+>ZuRmg@s~&iCUT7iqVuGjhPk_dG z!kJVtFOOMa_0i!qt;>!)&Iuf}t(WmihHuAV ztYU7}!izu!IQ_&rcQ?~NLE^j2qDG7;)JBweWa9X{e7dE}S#jjI1Q)p<5>oAWj z%D-Q;_=kVtvzoigZjNgT$zE(3Re9fNHM0nZ#(YoVsqy}XACqJfn!$*g3 zV4qu(*grPRu{05tyn!m@PYrp*sno7LsMjd+I@fFZd|SOyzbS(J&1htu&_Xy&JO87= z>qEdKNIE6cx!3>}X+dX&_fu_cRP%BU!eagv1K(m4){l#|P3-mQy zO#VOi-a9U;qm3W6qDHJS=-L&dQJSv3AXYT7CcdJ8qKGRR5G*KFQ88%3TF?L{7<)+~ zpkM(hB9;|d71TtqP!v#%C`A-hgx~YbX>-n564KuL{_eeh&2n?`n2wbiTQ-&!Z_~KLcA5hr z`?qEZB>$4VbJ51=t_UWGA|jd1FQ1Sf05u*m9qoZH0kL#&Ul7r584?W&0) z`mimNFJw&t){l93qKHS|0&Cl6kyR#qsm@DalpR@%!X}eZCJ1VS0}2W^g+gar<(&<& z!bR7b3nHOhk@M9CPyKM)De$!{4Ee&V5R&8C<;pcKr8u|bhxAC~n=-3VcL z4y55>(t@bj)ew{)un5cPQH8yvd3-=8mHbFQwg+OEvg1C6Zca{&R9DD%Q7BS%N{;f7w z`W*kVN>&#W^z=wA^$lCTQP{sP+8`Qg-Pd@N?fv_EG^OXqA*G%Jlwoj| zwyj+mWYfx5)7&L@6zpFskr^-afWiUgnqo*ULgoakBVrhsYFHoWM^* zF+d2W{6AGT8;{l`^g)@mq^Btsc&IfqRXMXZkN zxKl66T5DMrKZN_xIff65L+fxK$^N@#KHvZRkMZ$$Wbk*}g11j_6RBzcBMg~h)#)l5 zO}_FG*Xwp&-uAy#2BzgTPOOq!n4gyfJzZr!I_l{v>#3vOKV6mvn-VzASjnh_LA+Wq z3XyxFY-w1W&I`F4S=2haHuc!+NO0YgKz!*B-Pab@z~rn3u1C_MCJS%LxVW8o%|V8t^z&Y- z%VaXZgtLsk)V4H0S2u?)xLC+m!Oc}ME$Qq{PX;dx#e!R4xGg1?AM-8FAIqio{E|fq z+-_yT)KJ6B*_4Q3c7e>(tVkQxqmw!AA*A%-?P^JPcw8@58{?XV96TD!F0Kkh+IUmt z4OgGUBQSUDq}|~XO4=P>u@iSUV5Zde*fff`+S8xKcvXzcyzLK5#@`hRV^p~56O+tb z)cL1`!tQb;CW@Of5pfGU%@E;cu_pg-tE`sPv9k_@z@O8$h!R}9Ko}4K$^GA{pZKw}WtOK)w?0|dbUvS3)yv#**^@6=8;8Y+Ub$>Ls_TVkbb3aKeVRk`ixk#Xx__P$=VK zq5+#Vp`80Fmzod^uPc6v_rifN#z4;HK@psxI)~BdO`A^Qblt&;MrvA*d9M_W4UJrs zgIq*K(jZkGJur(V?yk`uo!tRv?JeYOD}88qxxDk33{yFTQ-DrGi`#7WsmctcNyafM z?eaa((^y6Ir=ijy)bfaPW1EjaDdV>@Jknh^LLW&6@;Gt~8yL7VcxW}kEzZF9Jn|J0 z3T7pR&Ngkv{oR+9BDA&5T-Hoz+U)>pQPz~XQ6JDA2)l2DT&Z43@lNI%?P1 zoA}!)wA99q z4(j^n=!lbdR>*y6BQSM>`|3xK&_z?ZgmiaS>Gqyr=Kd4ijgr$=2R`^AmuLmr>i3Y- zwq4F>tviEbja4f}R#dyDzKe0oDvrkdcmINm*X6zkqKtl`JkoUK&IyFjF6xW{oFkn{ zz~w%HBsE-++)AVQY*OMRD+a6E&t%9&0CCV3x9nLIcvZ&~^inb4+`rKs`M8zG8^ci{ zqcA>~hL8e^^IjG;qS3{MeoMXq!r4O9mWj0jz*8D##Bq9l$bt*C~XR% zMris~CA+W_5X8*#xclCGOV4iP%OaTn1xA~`;T(iV-m*)^tUTH(&sFJ|wOylb+;QKR zKoLT^V-A9)Lx^MvLx9_yUQDZoB}G~f?@2Nr{W4&PI4*OzAb>u#EoCmEQA&;9POy7L z(qu$}vn8)VMkJW^kkVTlk;p8r_M&5>5|3NOuz(8>-Y!`d{-Rc`pL}uuB8`lNBd{RF zqES=559v@LCV0dG-WxG5k@<9%F=56g!~j~1IOT1bWR75B7BOgve_W4|=U%`H5!y0k zm@twWyAI8Y+ypJm`pJ()kL2A!LPh{8tijsm?vuAr}~}L<;WFP8aoa} zo?YD>zV;Ov4x|b2Lr0O=@Bn_T+~qhxA(2|)`#PzY;CFaplK{1f#+dX1BL`mN7RF`D z@WVbqT_2ajld88xu$NGTu$PFJD@2_Y7LjD$(p!jiJGk!#1^z=G$YV|(cTyu_mDyiY(j=sbEmOn-3ns@L{D{Hi@-CO)&e=tT z;$*fJWwQDid=kmyw7m&Hq=;Hn^jyvW$%=r!0&+o-L7Btg2ocVl7{I%#3wXCT%JvT{ z+I4J!bMXW>_{4-q#uHAlhQK*KeEkj|r89J+AOu(i7u~kB1_eVlh}kH9=u80x!^ZHk{-{(2SaON4@`}`!U;xx zHi5a*!cxsN#m|rh4MS7Nry@4EU6CbAADbK*D{zlpjObW1(-LGdhCyG1c@mV5LrXCtp+`_Ye(OYqiyD+K zGepuM?m@%~WVR~O{>0%2#$EWna(X(RGYJlKVX@qs8MVL~lk#SwK5^M7TJd!WG1BtZqYKOwC9doBF|G3VyB`aI)uq&y2 z;x;*~V95BMQDx2zf5^AX&r2+x$vwANa9PvLFx7qEKc_aD}(X!HC{R4|!4J@|( zO1&AH)^th-%NymNd5a!DO-MUspBEYwZgyRGHB^rjF3it@2fDczZMm|9Nz}uT1z#OO zhKlCGo9f)tsiVyXENwT``fO8anP>Yp-%~IAdF@|vG5L+1XA!*R&cClq3a_SkhtPCS z8q>jYs#O*~UM5H_{w_#u#TAi&NLgtjJZH{7ue-0U>maqy$*4(3q=mb~9>A->;);K# z%;$L1imXs6J*8PrPo!j5>3LXerOqZ_hN*mgv>;8c| zgUahmc>$)&bub;@C7D*L$4UFVh57GAkMmv*B}#21Qec)dDAiLJ-3dWbUT$mY=Yt6= zH_B5wg-YvP)lueYa7EtXOXK5G!L9%)icN<|@ok0O%Pj8EN4*4OFEr@7g~+&}@Q~uY zqv^<)l;KWiqv0{`BrUO%Qv>gco~LCf&#qH+QZ5R($eCrUVjpoPt#^mTr-~egk?k6I zqndw7wSbka*kMi**^0UOPK7ohmYJ@y(F-po4}NwqT14Sy?C?#MNUMhfP^;x4YAlP< zcD#*fd%AVmKk(@2{j@oSm=03!E(#hxNLp{Fj-7oqFx>~KiDhha5D02b@P#snoDl$(pwA9sL=o|0u zRSp+9CDw%SB)0gRbM|>_47$^DIKM_m7{hu}w_5*BPGh4N$aPgG+9%DIWy`t7Q3e~u zEfhu2KR1dvfOd{?1sgdlvYQr>gF#{sMDcS|22%JUoQ_Qw@5oKb{+ZmAPOL&37P&Kc z47@!p(O#XEvU*r)nj`6;))IRR`F2e4YvQ0BqTI zaN9R_ODyI~E1t8y>wS`XYBOyttOZh^JP4-VD)ss##y-#I__nYmuGZWWngyfpBRQ{4 zMHSP|fOHNg1kkTzc0Psk?vkPfqM?_f`tG%$-(4-(wDw|h9L&%B1Gl4F+#?=dZYpn^ zh3}_xkB0i;AWf?DN-@T=GK|01cg49`S&kxF8Y3-aZnxr|qxI@aRvM|DY-wq)Pvg9T zf8cgsBbe~-{kF{)jFTd9qb?Gm=8gC3C)^<+XFNXEJGup1(OSd{vxblnxx{JY3zdjL zq&(ZGs0sD-D(P}Wb=)G64v-yCR^oc;*kRj>24ZAm9u!Wizn@H}Fo#H(Vde|&L18`f zmiPLWUQb!{jSfNXg&-ytBokfuhk^@gk|Vot5)>GP0r@Qbvh3&<)`QgX<;Q7xZ8FBS zBAI`Lag(FaC((lhqGK>blXaLd#2g(%)F;cZX^TaJ)FrV69=7M7UrxKY4y9GSNF)S3 z-5oN^HNkE=6w3Q+_L_@Tf~=0b;$l@8_j0q_Z7(hc@%+XvN#J4-&u`|bEL76gJv4nT z4Y*h;Xn61}E|v=Pg&yN#slabDt(?A|IsSp}ZE34?sRv;$+sGYWWf$1MYCD4x(`oTd zIgj1xs)w_;!0w03kX>9}2<$e2=o1>0Fj!0JH?skWxwy{e^-GA6n9$(5gk4xs3+#4q zlB;9OX*s)^dvbL+EWJ3<)-UyiC~jfJGk0=_y3 z36UbtCNxSsj2&epEYbw^A&FA;A%6?kR5s5`n8}6QSnJa=kIf9jF!R=9-f+6ZlV8d^ ztf_IP)5!@7X+?+5>|mMoq!}GC2OooIomiKwIRwM8A}r&QO0YU+6x@Lbmc0n}ugr2z zuqGTt8q8dDb@&sBQf!CC$=YSb$^uJR)Vf-|sF#|cZ|1G&3~z1FUVHJhX0T zb`dra0oAa^a9#JhzNmQxuID7*N?zQlEq4Kz^WvSe@9F*|3!h4FhmM2JO#Yesu zlV7&i(1c?>vbm>OoLh;3X-Ux|DUnNuzS}6Lk%aM(1pRIC`i;!|Ous;vCjP?9Z0;el z+``#IpztTo&5NT#9tMUy%u%I{{|yz0AtxT*(#ul~@ld!0#&Wh;o9S*{Dx`!97D8Z@PkNEtP-`!~q*wAcjEThI@Vz|4w*6V>B4 z&Vs9s;*&*!bx%h}#}ts@zD>X7CQos9gN;J}Bk~sLuXOF1KsrX?5D?-qNhKO1{}YYHD&dXnkp)|3j1NPgm=Pw)BpVoVN8*9A!<^T6QjHhi zPL%oX(zo0KM`$~xTIL9+o@Vzgtt@Iw2RhQ7_x1N4=U`dObMkf`h>*>V@rCy$Vg&2r zTi??arV%DE4LSsf2+h7QWi^}g*bkQ)&U8xe()*3lig^RRiOzOSER%8Aon{9T-Wr< zPIy(G6!ejIQ<$0yXV1z1;dF*=_EmS+_iL7^E@y2B-1*UPgIS)ACa>?fmuA}fc9~-x z8I9eVp09nkCc3)yZi?NOTji)KVW|A9dS(}&nopUN|J~`|R6e~9!f(G6*t4T@y%fmn z=dQ5PRS~Dm`Yb_zPQK%vAEVD}_eJ4SV}DzCMFW#FOs&udu0d58R>JwJ2pqAgxcOQ6;XQ4=9Ti?PL9??Pc2F}F9T7paBXO($!=7A{WCi~5`!g# zzyy&Yp#*k>=V}^O#8jlbuW-7rG{*FQQ|0urIBA*C&`$580>-3YDVGJ!v#xKJTjXbC zRDQ=~uFpxaAlJKqD}B7Jv7oBr>T07g4M|K8wBYh|%#WkQ0*1~S)5GkwKA07Ixat0S znPP24yLJ1|KE`u6nx6%mZv4PatoqDbUrh&MaAm@2HQY9~Wgm*S#3(%!@hnK(HAxsx z>w;}8f*$?Ac6~?*1dkwZ?9lK61O#ou zM;;0c5@(|gKyc$?Qu;gns;!u6nQ)pLbNC?S6vwnlvqc3AHo|&%Dp8L!#0^>9a~laZ zhv5M$KhEh>6qcX$LA*M#MFiw*b5#1nqSp)ZKsQ_;vOjOTq+V06fDzrr6gwroBIHSi zJ<$KXn3Q198Lfv8SVhNonaBl+Hbmr}*{OU`VoG3@R=tRiN_<22PsI(vDu*`_^ZG?h zR(Dxhfl1U(Dw2Sin|!6SnsTkAnja(0Md4nG?5jUU>vJZ;L@*2`P=m2mJ_czybuosC z>Qc&0gy{-67%b5i)LpSsPR3uXwu0%+@y^d7B|oUWv|^`0+MtHiaXWHs@&UtS6UQd+ zl5AJ5Rx)a#u9Vsp1>slTr*lz?ZCbv{nRDiRV$Tz8b4xn*L>up74fcJ?H_aBFbz`>3 zkT$out6dxzaDA(0bas5+Ib zU0l5{8enTCOtpG@{Y%+Up+Q^r>Ztl#xQ@bmElxeqE>@Wx9B*go#BjwNuCX)?EHHtm z>PRr-`E1WpL{3Clf|{{h;z?$LZZj+0Hu$^MWe%``!+&4FXfv1Wd>{5zp!{O$BQSO}If3??I=RZY+%^Y+y-0dt|8efKr&en zOdCAEHX1%nP%;R*D_H~yh6%)xLGjpv_3vi!`X7)zizzLUflNvp$4uCI@Ct73q$29|UdPaf zEVyeMjEIo)y=6K$-&vK@CpC--(HI^u9_+Jt+5&fmFT!av`0L|bKM@^6+axL+S*#V2 zAoF3>%SS?zl=n;4+~&cWPDbT%SkHSdg8NuZOdy8f{rp(MJ-)_Rf2cHzsIReDB~|f+r**Dz9Wc!aRt`%Rm#U_avGqC)XAj z?=FCmlW^n*hS^;{SiREgg{lnP$I$Gc9~yfBw4YXt?ZaPNZHreoM|*`ojkZW4l;5*8 zFI5inPypwUzJK4q7Z+7uy1q)rmf%(Jr?L+#(PWM#{Q9qU8Z+TsVm+Tu_aPdEB&gvy zp%ctWc9xJd{|)3h;$*PAkZe>q^1bukg_jQZGA~zp-PKZ3VP+wTOr|#@jIMBnrA8yP zV_Yh+$Ih0tm?fwlnrY643S=yadSMPBcGpZAmyAaT3T5&kb!ys7mlguIEPn*RZUw^?4wtAa+%9DA_hOc zE3peOpx7SoJ2r@0y9@+R>mj*n~xoZ^n3yF@SpDy?T3->m#$lqwe50LpoSNL zPx{}0kan<8r6y%9AHboz&+%U(4a=35ceU*TL;9W90+DLp3|m>@1H)9u4w8!cz|9xs z$c>e^(>Oa#9kYWcL;6)c1Pg)#cBgL>)U7-f_0hv1YzLRT*+7p@C^}R2D&a`Nz!W>p z=6H2oj8+coLPkdqC%QcyZJDQnF-Q=)`kD6yNpn4L<+xmSF~E;h$IQ>go%bDvCX)H+ z)$wddKWZeB&X_i2g_#3Q=;91pyko5X{I!xFy*`+FW(jYD3`e@hIW_Q&T?uTLq|FBk zPAW9NE+g~Q>CWj5Wn@BTFX6GB<`Zv)VW|?h2Aio1mn$sa^4=$iE|7N%kR(ilp!>9? zhj^!AOaUd=;VEy1Oqbqy-q)`?rcQXFQb&dK>yDaW+nXGhw70yH<>hl6&kJb{7nWq3 zcaafq{bn#+DxmEPRNA>Z^ChiKeKb$lyB9f8qxWMrXH{#iQ}Wa!8K;y)xO&JdQ!^j; zT#NEw+R_Hvj^x3-^RwahRy&oM12IsC6J%`{pMFEy=U}76`sTDTBr$u{S8$!17YIwz zIe*yO@hWCX!b`ZkZxM!=`!!-R;nH|He8s}cgHXw=eWasc+DJ+`o@7cp#M={s4I|lb zeXi)EZGW{jlNJ-qt-)mOQiXUFX+1w7l+{Kyc-KTK2E02j7Q;E~Hwlkqro!B)|Krxo zMToy9#DAQX?k}Jk4RHiNm*4q4}-6Rjs?r#&KQe8@WPK6RrssjfwyR2=3S2#9>|V z=;|i7G3ixgC+!n&*Bu)o?X=gkT=Hdvm`u;|@0}C}!&K^t+IIU?`gbtWgkBzgVGcN# ziNiP~+u=m;@@)g&mA}Pfa&gVU=i}0)HQ|ED;O){riL*;(Mz15h>gL{)QF7XUSCz8*rgII}8%nHX8LQbrVLJZ(hu;xW4;4C&kGy)wPM*U7VZ}ZtYq2*hXXQr09Q3 z*>kZ1I%s0!U$S<-q|iGre&*!F`e06rthKwqoJONLO-@s)y`3agYiM5?H{ScXjDVF1 zuaduieTN>OVPO5KXnG_tT=#We(xI@bTeJRPJi({ciY1B^@r7in+Tr6R!fBG{XbszwT<3hDaQ^6f|HI)MHn+-kE9Ij=touY z(+t`sCf`x^{8Hf~7Q@cdYWXk=O<FK2S@U;Hg!H%?EY9>g^_dmen|7W`_@#q{{JLO6&a3M@y zQa>c-A{S-Mgw9}YRS!~j{Xtp3t0^9p z3-ZHfQr+zg(}%Cv#6v(?R>ET|jj^qwf0VN4Y{kxS_19K^m3WLb6EgzaJYbFr+_p{cvMEQl~+4z5ZTL0@)`gJh`f&uT_VMe8Ms zdN!JcCS#{-b8biOa8i76N7>_+vcV}(n*a9T(Fq@)4eq8g8Qa}t>?kd0yfID=I=JwZ zaM2BC7U>uhwfnpkk}>w-R0U>r==UW>W-oCy{n0pq{DbW3Af=`;vi(BDB5iP5e`F^k znXD>JzZ0uSr(8hx?~cpmQuKJD*bH>(vW9`hO6sOVakVWQJwZ804KbA#^v2V2!4!O4 zPU1GjhrYesuKxGRJVtE0F8G4~iC~$IYA7R9%^!(nBRc+aa2cbqDOUdDto+vnb#qoV zwjpj*o3i8ZZRTmJDVaZZ*ebp_qwEo-Y!Iez&&)kR4^p;A1$7Gy>Na21*j6#dN|W2x z$TeJ2J^@q@zj$aP19D zHjC8Y#*D^ivxbjYg`oo5E^79z)v$5Z2b4JlQ}o#F*4%A zfzd6c!D0oN+!&l^BIamk!$xJiji#Onur(W|-vl)z9w3l!p9*ZfDNX`$kU4;q z%|}ZVO;0gm+Ou`;+2BaX27Gf$-OvW)L;{DjL$Ve7iycOi+1n^xX=SaQ9T*%rN((YI zAp5v{8%-Z4#qaY1Lz`FBVrYl`!AV6s!X=WZf$($Hv0_P(){nz#*IFh=Y<<*WR)i`n zDmW5ySL=hpl8njv6S8SD?sZS)5lg}6s0tntq2HLe+5&OYu9L{)!mfYfkBbyQ)W9ujDTH|(I1x? zM=2}XO6oyb=R{1LhO0laRx}M$U$)Y8H}Z2oel{pF#Y*!{n7W~rW`U8z{-C6z%_LNl zpe`vxPC9r=24M)KJZ?6aV;aUM+D2Iwh>eF;LHk9tZ-NR)s;L%bXyE>kE#^ZCrxvvp z? z=@?uSD>_M(2NW1O;1s3>#1hj*Vh!Z1Z4aAVewqN~#gwFZcoy)i$F$cg; zGeoQ8t3&zF=GUoEPwWIfRh5zRX3^#PcHEsloVnO8%O$pqmq=gGQ%{XOl8>Eb((4VH4EM!7`%UPWQ1dLM>*h@vdt;hAW*RW!Kd}NoYHS-LMdfGWDN{W#*U^H zy4YHq_TTIdPiaRiiBSEw$0bLO|AWlYELgJ-*x5x~ln`A|ckc&s%!Fhhsq?H&%!@H&$O35$(90(9d3LY6oRF%GVO zcmpcS%()D1ReMjx2X_8ZCsB8LbmO2WX4DOS#pONr@S!3~j2T^3!i<=5V6ufLJhX;?+s#0stiGf2G3_uK`VhHp#z2;fZ8z-(uyr3HtSsWg1rw z%%iZ2o$Jl)V-yY+2ob95*$#lONO*i7z{WYRZRdQG26AG19PdDZ2tkkfAVh;L;to%c z>wdNCuz1Z<3Uvw0+8#cNJ+qj`@dI4S^u~Rl~j%usu61&33yqILME?XDObqd>vDxG9DIe6f;}h%h|cUtOFt4deC-MX{@R0`bw^X{ zOYG>X%T~&cE@q%%_KX`!+YvlDbY8ow@G)(eYIu_^!xlkd{;~eRb)rIPL;t%3{{J2R zeIaf=>T_l5m*UCCH zDKx>`lqWdE$iLfP@2p;Vc&}92;kIPCLz#D%6Zm?w4vr0@+EWB4*q1T)C^opYtc z??5FZBkbh_>hO3;2w_zs3L&frYZ*dn*P*|iCO31pSPGAIM+;G;XQPie(z8+!O)wCB z(78pk2^%f`wGIiQ5>U8|%tbWF6;PO@-Q|3f25tfh8zF_c6k-uj*fCyx)nE(YoO1v` z*kPHnqI006j09o%Acc?r>L9wPzNyW5*-$b_ht~$r8;zjgza14VAP7 zDd;3HR3e4=hifjdK(qu_3Z|?fu!g9V@CIL}ZRtYcq(PW@2y2KENpBq!^arh#P<#-+ zn%^c7DSWwAQ9@xQf#t&&UL7oCOth4B=NHmVMqMMbv9kV}+xg4Mi`Tc$y+WZ%A-5ii z3o`oP%CC&w993g6fsSZv5&~}^9;1Z7-DrOj0*815n4|v*kv5j0P3qeZrU`t=5a_a% z7T{ep{Ee9%X?>hT1jEK+Ghhf@y^>Z4L!j6+7y>J5+2QspYv6moVh%O&U*cqMCT$=8 z(jb3FTp8E@-%Ox5Ffs;b(q3+GwgYIFWeo1jV%p%!5@jH5{*1Byaa%A}qpV&&l?i0? z&fuE#?K^W;CUu;lsi|esKvFdyAv?@5C%#Lw3j8p)jF?jSvnU%I2bS_fUWB# z!5RBgMfZMN=*@h!M!{+|eq$Q5)vNOF%dHs9 zuZDL1I|<-fQ6mD{CV=I^8+{9JB2>jpv)ti|SAfPhmEfnzJ4DzI4q!>zAA^Fon}D%F z?v2A010+GBQ+ObTLu2Cyc))|@-Kie9+V$+Ml~Y#iI{K*9?4Yw#=d9ZwaKP1k^PmUA z&TlfXY3A{^=gh^q^I9o}zl^Zxd&y$@&(RyaiynY5)Hz^7(R<3QdH6k7$$|jf2EjC`BUh2}sEZ04!ASDif01qWD&9S}^ z0nC5;b7nm=2ar-=v{8{2Flt>@`19&#-zu3 zT}xNzJ0Tq7A6H8a`{Qb@J--(-266`UJjbu&g54*1C=%;W0RCYu?K#dP_ymB|dF=Qy zTCWgLv{18}BOG6BQEW|3Y0>@82>)EQOxMl7%R^6&2f;eoqW>KpQ06)$(j*Sh4txEy z+9}BefD%O>!4@3_tU#Sjb!k<{2>*UH&Xi0!lg)dM3$1iNM zOgK-1oZQ079P39B`I)WlG)3oc2DvwlSAVK$@&8b@LclQHbLd`pv$*kgdgHPnj6ocA zd~@;`SF|VMe}!IyHO=$l;Am#Dr{eYc%mpOBnb+!}^??Y;#`A?~+MJ>fnFnwB=BqLq ztqw@gf0yHO^VK>gV>-jmf6aWray!xDg~43*-59~foMHu*rZgO^JMBc%+)F`-&i@6d7FUht`HPWdBOqbLej+)_kR$cW4^t}3Qk3!+C`??bb>aL@?qX^*6ctLfQc@)WWf6eT$-NKO2+)!^8M=AX$6C+Jfm z){oa`^ZWv@U?GtGf%6zjoa;j%e*q^xlt`Fr>q8FuNPT=L4c7I0ipR=znMNe#ZG)b#&$Gp3*ZzO z;u>eDA3gYxd3_5e1>QqmXX!A&1c?DIePD8~Gd%4_t8xpdvcB9wimuDeB`cIs5`_5X%&YZ$la(c*w^N^A^a#Oy?TTD0z zGW#|__DMKgFd|02TvLV+t7`#VB4rx2+9s9TvBW}{x`89jC!{~(!oFVHE zZ2NAPVky-QjS}%iFaS7Xc>Z&PB&D(s$PjxXxpmDVU-m^QVt9SaZA zlw~UVdDDTC>Cvd-J%EAnQxmD!Z$l#c2o5F1;W0;<69_sqC7HjM>0UpAd49-p1|kSw z1Z4aimGilyiTMQkc?tql>jPZonq|=i_YUhQT)9t2p{yosXG(TF)R67=uiqjLFz^FN z*r7$4OBnQKdieN-F(r_${mo@yJ|ar*M%ZfzZ_<%!>a>HI!iC#912^Es0NuVNM1Sy} zj|&0q^Lv7&4e*Arwa@+d;ua>8$1y5&s*O90*wt{<1>|P%0QkKT4EHT_qe(&m!zh?pp`TsRw8+&8;N*|+w#bR^*k%jN4#b$B)XF27hIqvO6mKYy@7EPhlg|ue? z$DLQNggnwIKyW6Ow3yLFs4olUPINJVm{$igSK1Po!qCK{cNwhoBP=#KC^S+`Jpw?Z zG(Fje3y3rk${QXP*!CkuJi;%-?M(9nu&d!E*B&e`LI3q;DV1f)4Nf5p@;%QEBrASk zUoPOufgHi=FBo)f##jM)8ZsE(mAR>;veqc@$VV*y{|m}uqqx^8 zI34Gz_+napusFqJ{MPXl|f85iE#y>O~k6_DnelZ_p|{MQXw!n=B;T_e40hDC;qgr zQ9AJ*X=oT?i05<6dkG?k(peGq`}mfJP_cD2KHW>xb0hg(tlnPhH!grsO55R^dkn~a zK?)0Ke(9zmXQa5Up%>c3b9Penv#Tz^Vi>`9D)=_GXUYGEiG=rQ+YW*<(700OP> z#MyxX^cPW$?|Vq8mXsZY982fVY5!qf67U`;5f?r~&`RVL%u50#x5a~Chni{f4rTI3 z*#An}#Q_x=Am7``D?)xx)?;%>7s`f)Tx0FJys`PZQ4GdA*kCeI1GvU6rD6od*z01u zfi0Z2@v&_f!TrzmK0t>tu)DIanUpC$PQb(=*a`G{VO88Y*&QDAVFDx5*kSljbQmJg z=@&Dm{w6jFcuAn|nVphRz~|KBSX)z<6U+>Ca{W?bJcR2JQe}f~hEJ1P1?c9+42ibS zEsOS$ni8#1Yw`Vs%nwF3Dy3Z$UOl;(QL7GhkwccHqUZ=Vh1z}}M$fFQwk<^S7>0$& zp&N=G(*YL?`z@;L%581I-5{h4109-LOLU0N@ak8IYrDd^@cZxaz=N5-q48S{a}Wft zsyKWiV4JtIoyTH^r?4>jHgdqQiE;=cfRm8E&OC>xGG1PQP;wMN3cOQ`N z9W0#k2=@F~4$Hp|+Ddx{hkQDV`oG-L+0OY39Yo6H3u7B3M39vkEg$DKlEy;}OK^Hb zH1KcPhY9qrWInw)Snt{DM9^4@)I!6pVW6*c?RZDSWoLgloys>$T<6uV}{7vs5 z?{d&Dk}g3;>Sm`Iuxp$ru;B~$zB&cq+Bvgu6o4r zKE4xNDKfD+yX8daccN{5uh}=-b}#bo${ruKBgPBZ_P8d=hUmph9dPwQ>L+p>FH-7Z zN%zLx0z!{-t&V5en5DvRek;|Q%XhMvA>p3*7rkS*cbdV{M zL2}g@yOW-IOYX@FU3}Xt%Yh2qR~wvQIZqJ+^X&EdU=r7%}YT zu<;ppWpwX2X}LrUpnE^>$rAOg3wh|=n~s^F=OKovr<)G%A!QrVo-cAG>|lOq3-gi% z69E{TKPh7o#wq+zG7dz5A@4RyhS9Kx4+p`lN%Uda*}F{6&Ry>H6A~jC?^yP_3H#Uw zWhlGXu+OagahH`6hl71Uc3g2{xJ2JMDi3lCKx72E_~Eh*bg0l(2KLsuat^F(dB&?s z+En|_f;(I~7#dOW!a-&SLSaxyza%Xf$7D#pcS`uqTX7QpKOcXBG%*p-VK_Jhyf*h! zyt)Z|!*1rVw)lyOSK^Ha+FdXW^)YimtE+Yj>sKPl%E|!44j0UrSJ1 zzg8Y8#h;+_CXi--Gg#W^vgpMQjxPXcI;0;>(e*?LMIXWu#Y@-6b{b=E#SBlyha~DZ zfWwT+P>9A_JI#OWGz|bs0J&N=sCv;~?UI`bq{AH1G0d5#l3{R-h`9wRH%nu6a8tBY z2RGjIFn%p>nUQOuat>c-Nrpx>CPe?GVL)ihEiWW4*P+?_ZW7HN$#p5wNa$8HsXo(B zqSp=J%LUgZrqawei(Jp(O(m`EmBf~jo+a-a(!)%KX?FAVkJz;mV}1+K+#Whlzeaa? z7s3!MFW?|wFtnYFp-me?6U4Tz5)o8GYYbOT7sSKtYUUnr{3L`$-W`}8B`ksmfHw^H zk}*?q(3@Y!nDj2N0)QuKD5Hw_PutC>Fn1CcFnPm@s2R#@q{1C zoDW4-g)(3LJjdNt+<3WV*u13dv%JbYl?GEkxzX0}hqdFq$BuJ@?>tJCkFU-ivL>>m zX{&hwMcXb<%z$q-NVu82dLjt3f6N_t*oX-?P}3v#oqg98&vR^sQ-Nvnpcywd&z)8L z=6f#KUBm6a=~1`kb7@UZh07tU>*^c6jkD)nxfgzfQO7^BB5S1@4zTdp5Q5^u{tdfp z{hk3>jt~;>P9ADFs35Q-zo7unEV%eGAn=KK%Xnt_&zf}qd{~Sc-A@sj%b*#+&A9Q| z%*&SFuGv62Atbyk@{=+=q zuxo|oo`|G*O#$~4o&))bynV8;Up|~p_`%I(8-P#kLtX>1p8VZDRZHi!3Rz%Vhafd^}KkZmRcy5rPhSSn>jsk=g zzAzyay3VSK28=g&hh_3%e21iGKyR3ZQY@A~AWI~#UaZy|qp1k>JP78Qz2VRw-I<=c+b#)QpJ@Q*b`U5Kh#7xtyaL@*b)A%p~ zXo5DHo>B)KZ^YvNaW%o-vJK`s9cM5Fdm{jBKWp%SqExu;=oXELgr6Y{?_`4+cr?3x)48ll>+ZZ>k>?MyUdp<>ZH zII@tE+A6NGbzF(DeL6tZa`YRM8-omVB1b5|3%9K{b;u{cgp&|3SbcTD2jdR7s^<47 zgfo9mAT7UsG2kKzL|n_RQSG&_+BLy1pM++^r}k^T8bTPuapDvY%L}gCY1T$>TlaQM zk4h_zR5S~oKgv#$iFQzdVTA^7$lGYZN9)1k1mNIdAJ$pPULO$3yo+DTWZ*Qs;=AEu ze!E5)SS)X7XpblGf&!nlcO&k^>%XP-tP_9_jqs-2xb+~lFb`jE0xV;J<2?~R;XjCN zr==%*Ds@_Y7}1tB3;Q+fK5f>yJ2wc@Bc)B3y7L?b$)DCYm;pk~KD|Eh1bjOOTAQw& z4^30O*TE?OL6e03zOvB^=#4`hcY+TwSUZTEJ$XHxaZ%M^*ac+RxA*&5UVx8)7&anz z5jM~X!d(J!R^@GX^9*DAoclx7j>m?i;VJl;okq8=JRi zruAbXJ_Tx?tbz@bthFb;jsdWri~tuv0H59K$2|5r1`#TjjVPLRXC8}nON@NB@sUxN zEI!Ap$DHCKaYji0$oIJ?Z8BIIX0rC1GTICY;d|>>zJaI2_+Vf_f&kUqCvTjoJ$d+qy5Vfif?w)(Pqi?qT5fbjX{FH4{y;ms z{-S`SZ@-#tS$xobt13(x9N8u~Qtz69A86VxJ!h}gNL!V$LvLe;y1}DeHD;ETA6EW6 zgm3)eq5%7C{TBojZiC(WY7+;=Bzr~E6Y9&e^+2yJ&Y;_lu!TX^sf;!7MWkDPm$NI4 z9fBg&EIG#Y(L8%xi&W3lD1$F34dyG#<`$a4MC$YDE(gUiwaWM_mGOC{frG;FlAgke zo$X0k!JbDz&c()8Q>fMfk@}lQSX^j8&Su$R^wzW}hjqdGlyuXfAhg+WpkBKClLUseDx~W5NQ-``Ck-N0( z(2M4-Fm(tzt3Di~Za7D?z_fmMqjhbVu=Yr4uuKtf7P!O94w72%?Q6KaH+Q2aN~`a* zv*}SYQ_iYqK2`?*Zg;7^a4|%}#GdLrdE4rP@wQS4Jo%;@$>xa%ZdSDvrg+i7MRmb> zMbxPKxAvVoTuO92&hRT0$F8Z2FRP4mlm;smElZ{?J7z7`2P~q^TUMGH%9=N-_`a{S z(5;yrdg>o(ZV%kY5c3B)h~popN{sn~>$iU?4Z-Xt1;Q ztQ)F1D$`srLDpnaTTCrG*$pD^ubHu2T`;bJ9*IZdR)KMG!>Ic&_@S!7YK%=(P1x$C z=d7CI{tQewpk+)}7{iJ8#zqms)bYpX~x0;7r9AO?7I@RA?u_bibI*8MSR)_DwmS~qw+nMHU81O9V9v^$wb`M$>Y z$(cf?E`j0h9~B>AosJdt!oUwaW{{-?ual^W4dZ*aUS&e_YJI3)RvWUo_>*)kXG{v5 zm!rLjzl`<<7iF|>cqpSiiKczuyC2TAv+mJOMpbKl*Kfwn)y~n7A@#lb6tp!A5DnnB zXHLcCp#QH!DLLxB zF-OV<)0CBZql8>&3FVdh^lR-7Yb(y%x+Xpe2pm7GfD$$tup}{@gaSs0*wfe5Ot4~n zmk?Tsn;yQW522^x_utc`_k?|Pz<~Rda{V4`1=5$Cp-CUzc%J$a-df-cu5sIn1q%b? zy(zm)n^Fw??Qm!Li&p~xMr@NRpuO}3L;JTO%h!jD9-QRcuXQ4mod_van!^6KX9bMd zJBc09PSX%xajx_Ja&q^ND;Qr$(Z-zD?(48Gv7Pmy2H9=Cj)hFiBu_06E?+eV-g<792E=`_K}1~Lw?N!y#UkQH`Sy#N*yLPqvL_&IqWGqa;wCUVn&rZM50+W%?gAdy#lX=VBnnVWNJ%l?!HR&CPH&!x z9`SfK1~(1n2m)vl4WIHzsy%=NkfgU|O=W``^ez-h_{Vo3;jiA)5)Pe*5{G~Wj9*YG5^=#A5V1N@ zB;o}0mJ$(pyI%o${i;OdokVxhh{*f!W?MrN!B}Cc0}}K%Un*LU-_kKuFePO1ZPmANKBzY^ADDAw;xDH;>BeMe*G+stZVoak$Xx&c8M3a8z1m--*jXM4tEchP9Aap8 z?w**Z4lBq?rnEwckhC40I-q*N!kf3-xiG;BZ9!K(dW`TFcdYC*dS-rmKB~T)eBfxm z2W^_fzK9Bm3<`-%(jpJZ2d-dYoRzzik(q;E2-A8Sp^$4$SPSTUWf{6iW_WnKx)~!B zt77Mt5Oa^ko#y+SSeCFrTI6QF4yLVD(Pv7PgW#(%Z$-YdO_Ml5+UD%LixQ02^5iYoZL*WmF7BH+kCAT|c~X>`H(ZK|`Je7W)B zNHS3%z`CsQcbtt1TyK}PBQf%|l5Q9iDs5PiZ6zb&v9v4e^?Sbx{L$&IHX}uwk)xVZ zs2a7fp{ark33_I%l&`Pk0ud(}4DYlQT36kN!|AzVs@m2!^pPxQ<{g%;6+@ z;M4=c9nA>&?lh=vkPc7u43h2!lZ8ecey)ur#(7I-|gjN!HS99uyW;Z6n##c;g z%dfMKlRF%APrmMwo~+9%;zGNBo-Sr5w@5Cq8k&+-BszEGUE=WBnOwvMMKU~Ay^!!2 zRZ!y22UtBbBCZMsC4wgkxG0Ub!%NVJBc!3Y&y~7 z2l$|w)~(b6^fzzZ3uhdWlvX2eY8#Kl;}y6HDGUg=U<4P1zB39`#V4Knvhy}X3Dmu@ z*TN^1J)>dvD3qy8Y=hXU&2N%c3vV8r&aWMKbNbZ* zpug6#r4Wi3=ZJpKPo2b0G?r$D8E`Hw85FV*VhzA4)41}>`F0vpE?A(A1(&>3iDu)cAQ?po@e?h%b}W-+$yV6rPh*Lvh)ew8o$I&M*1!@$Hi zP24Mh5WAdtVdAnW6Ty0xNAFn}Z;MD<4@}ezI!q!4#o>&NF*B_2nF6j-nK|>h0eDTk zzIx+cKy0fEJ+Y{0>jR6kt$u^dQ4xo+HowQReTM~Y1aYjLXY8ZY zhD>DQpuPa=%-UXBbf6q&d>V$W)idW_4@F2!fW;Pj^L;}x>eLum2Av%Pb1;J&M&RG( zLw@VHlbBj4DoXzaB4sw9oWVz3SGDI!)(W81y8F7%L@c84~i3_LT3cAlIjviJ>+OJ3uWlhx|eM`P{u zAX6jhXt|eVOOn44C@;%c$4qCOSO&s(z=C6pimlilQn!`U%~XF5r^{r!>Bv0Q^h3AH zbHv_q)U997HPd$9;Qa+b3LP(5cnrTc1rt*|G+y|O*j-(eKNY~SlmJ~gaCtOL++K>7 zZ{m*KYnqiws z)vfu+JgMPy?y^E`Ed@PKl^$ZtE>H*>n;u^9+z-_d} zKA+xWws9K-j=H06k?pHI-yFdcG#=U!#~7VzvrklLFs|U{2-=V~teyCN%%weDq9JiB zrN&{Sm>Ps~bnh~Qi$8?7%^91|9shxYe5}W+CvXC#9)zUpUY2}NtesU4T}n=`=0YB4 zhnI{p-2hTifRv1#ADuk=sECI`f zBK>d41c1tLpq4knh2GOQcJ^Mi5^@4ul=CY$Qny~a1)jwIg^e#2S0Z%O^K_W@biu0} z_i?o2ka{;o{b9WWz8m&7B^a0!W&vQ_dbg5p_rYR^M1~qZ_?3ar0g_KVU*F1WcgA&? z8&*XldJaf)s58RU>uhWkH3mhJ$PjwwO36m1Ln1P4)aJ*#d^~+T@EbvuJhaIkj zWO{FY-^h^6cXPQ zSxwj-J;&mX{;jKI?DVL-uZKFuPx4Xat0%(dtv_rjXLE#-B9CoN_I!*vEv_?=7hKK~ z$*YNF!Oeuh6As`BF|j}UO%1x=H1CP{rEmrv!tk@6O(od_Hvp86{I!0=^CvIaZmLED zFn^nAOA)1M4x^P^r$)0c+z#|>$_a8UO97ODtOl-G*`t6X{i{e+#V=)Ohb&R;hW7v! zPRSNj2$fb?IydlrLhcJN25}*y8{EK|b*6POnQ{P(YE*1r5Pa+Rc5qpWK|s_$)YJiZ zUgR^)f|9AG`Pb{+T0LmtCs-gu#elamDh`UN08+7%U^RsAn+0ON;iT;Qp>Re=o_Hb( zV)|FV6Zh|!ceeRq$2qqE+E)+|G`_d>hc8AFeZD&kKlNzV%osLKM3Zpfmq==kNeJ_qjm@0 zZA^vRY9|B^bd|NPZ|1i)$m6y|zU8a(Q`6;*v*D9b|DXhY5?jGi;d>LO;&Rw@N=MlX z7yM{>;uUA#K>!NHVwgQ8Vu$PgI@&%HpyC)uLQZrL0~gI@-LdcAuqq=A!>1y$YO+z? znyoz!i7E!*RPPpXCgwwUe8Gv+E?!cL6PxS`_S^V>tJ?j}@FTc5*{YT0G zlfe5TtZRhDEt9rAyYMXCWdU@iW zX?v>6%&JRWtE;+HKYWv2;aiNjXpr%s*5@SjDUh%l?0zIE%= zIat3=opw;-;cVvay25GYVwK8mr5X8WpsB}F=Pf(uO}o&y&E@R(ZKh-&?r?ux@}PRH z547m1`LRe9cfb9ativYzva?n8(Bu zfA;TS`}2;cR&`V3#!tEKzo-0sd($47y(a(St32_^IK8IV1~r>_vc>1qS2~oe`q*a5 z?ICTgR=(@@!8aRkR9@}A&v;ARjd}G}zg;-_fu+@Er&;lNO2F- zgt|X4_xr@ip@qq?BW5uVmxL{wQ0U_0y~4!ZF?ZS+ZP3}P--SLO5O?dQ%M7zcw)d6q zR$epfRCPA@>8*Yv+>K2;CEZLi&Th5B^vu46X-wU=57s&Knw44F+U{(huYNh?e<9+fp5bS|RH@t?{FV;> z<`e7v{W3cKoKmGXJtC@8({U?5c~E~u)$y{nVx{f)u+CRIL208J)Tp#UjM6@zcCl;A zE1!Wv}vIlz!8CX-t^Mrq;^04Zn{l4R8ziGTgS#Sm$~_^}pA? zzp>)Bs;PPUhaE@R9Jc&*rNh`?`WG1IcX zqpDX{T&qW)27d5m)y?l5A7uG0wsF`L+%c-{gW?f0V?I6;nl{xX$7Rq%<(WB$@5ir> zJGf}tuzOQFA98k>6l}3IbjAd@$L#&vuBz2-j&3c;nIBwKXQ+A8q2^P~=Uw`GQ^B)Y zo%bE>Wmo@lWM|VI)+;)j4r|)h^Ri>--N(&F#1yoMDezrZVjYuVG_pKrgn5Z+^_}!J zF%>O_tS)QbDC@l8tS#HWcbk5HWzxc_U*9vozkKPkcC(s%T(nsK^}8QW&->`xfWjeP zjyu`nLD3MOs>%*xMaB(L4BQNg90cCiLh!x?uC7i*e}Px0UhLb_zi7l)`QBH@w7&WC zl8*GQbXsVRBGnyTXr&KoHXFP}5+nphOS2j22R1aF@#=$97Mo{pzvfUL z@zD$c_05*}?^op5UU;2pZI;(AZ~4@N*Pm=} z5xne2YqR%;X9gWRICn|#k;@e;D_j#^_s0acJHu{P5eJx zePfU)vDWSQjBVSt=ZtOJwr$(CJ#)skZQHi}=HBnCSM}bX?7g#krFJFN>FV_A1pHc4 z3i?V7$J6FK9Bc}Emuf(K)q4E4rf)^IEm5h?9n4Ik(hm1Vs~i!)@boP zJJVyhs|7Fv%1Eg4@X4{v?!2j={ISkgAZR7y~43#4Q{AVKloiZKG z^c{?i6rCK*ZA=~iGjfexzu)576G&dYeS=v|J7y+xq>aaSwzZYJoDi>NK(meR5%Ndj zCJGZVw2Re?lZYrRE55&aZ}HEjBhiRT+AE1UYW&>}`t|5P7JNSsT4HOzzaNh-LT7Tn zKesYh_wsHa=u~x_@5Z78Y`QK28=^ZoUubenxV; zeZHO}B7NT9Pj0@SuQqOeo(JG`ecv_~Y;StHzdt_~$a3y;b9+9Yzp;K!QhUB{pI+!> zZ+ySrTS`l9d%QpO?+#)!@q9dg_7+@gecnDtN^O0=ZC*@z_IBP57D9jSMii-iHLYGQ zhFpE$7FOVXiLCsQ*O3SaC{dpcC zn9BCnQAg7I9|G}9MNy7e2ys*3i|cB;yP%X3nT^>)dJ(1La@lc7Le)Fau{n#qFB zvx3h>ldU?Nan<|+W6ff@dph}~tirPM`S!|HS!<0tBOs0}&i9+}qpE$Hg`>;-LJ?-b ziBkkpl9#EAg^${;y|0njTt46P0^K*W@8`XX1zXwNZh6O*E8#}Z{&s3k`cJ^|qtCZ5 zG|U&>z@mCM->;39>tE8#mOtYy{4fnx(m~@`lheo9z)dcn4|FBS&+16cq2m2U=QEek z9nNRAs~PqY!$iGU%su&(+PpIwFIxf9#rgAWwmL}Yh)}DIA?@-+#$i#EJ^hey${j~& zA}w0R>l}e$(8Zy|E@<(L^IWl+V^0+*?;g<(-qd!o!2Zss@O?kjhN~m4_9rAU8ZL-* zL?|~^L6GcMS}}$iX&#v*OshEoHw(t9U zE_diXR4I7Oc^f@@DK0e-R)$c$+tZ{Aqf>Brg-@RVIWyg{XV{>YZ(Ww1xlfHz< zbdJf&kSvzHe)svIO9e2oB>5p3N3bAdsR%cjKa%=7^Hpv}fR0H}(^QtC9p3Bsl;$X0 zjTA+=Dg-IHukMUW5p4P?w*&gx_X=PzoU~apSAV8qDp_sTDaVgdI&364Sy%E&Y}g-) z3e9of`))0ULj|r$015dU$a%LZajkY6#eGc(j1hte|9w6*qY#wD0PS6rCUh6U+-TQz zflj0tOhF-ZXwA1DQ(4dY#Rc(seIfJ+GxMC0%ZRRER4X~}W*GRvPBL#G-*|RHt3ZeXhF&rFr{12VQ&5+EO=Op5HTu)p2bSvKukuXxpEG=Pu!(c>qjsPSg?8WG$3$GINWx7_)O= z4g;&;O>xJ_5 zz7Z;m*X{FxSQ5c047l2Oz0O&rQ0mtVWq^5dt`I5{%Y4$|G`$iaiK!ag-BQf_!@b?? zE@4RVx|ms~h|D+5M`|q0EJ_|z|7beKvXO9YB{1&A5#)P6zs(|VHlyWMIcz@GLE5QL zSBr32 z1K3bsCX+81BXmy6i8~-9K&6~haRV$lEG$4JNQlw8+yn`tT1>fpzX#t6nnauVuUwr~pSaa(ez#g?bkxv1Ob$oqg_R3rV)ATOglR+Rd^bSoq&i5; z?pa{e*pxQVII|}j7KbV!uxC~_zO}bgXf|z#9JRmIq5=%#XtGN6cD2GikZJolKhwWe z6TGn8v4-eel(&PH->vVj>^=x)4Pk41YIBHl*nNrqUHSv{biKv*8L8ZtG$#)&gJQMl z{FGpRQQIx25IdCiPX>op98_@i;S{ttL27ynrhVU9rF`O4c9S)B^J<9gA1#C7ra_*zb6``FF z^;2l;yy9*KP}MY|#b9A)O@?-$x;+*7g@4@oUM*c&v?`|=C8bY=mNT)xg5oHchBN0< z)L`&RGgpmgZIYO^Mmj-bmeApm_o+?QCh%~!CrD;<5akNNT0BCf`<@V0Rd z#5)9h&ovEXtqX!GyPKmk%(3v@d^a?|)a45mK*oS#iav9Z;chf;8*;awijeq!9v zybBcub#a7`Q^~y-X*hPT+;qFN!p#5PC?HWY+51+kh>*a>rTF#*!8W{e2Zo14EpAY7 zanO|I82cat`XJmT5vGMuCEhurVkN)I*YfoDwd_LJX)W$y zA0k+l<4@{|pzLxK=?=yAbZrX*!bA_`g9##u7 zDDhsE$K@*VyYMLSK9DEngg|z9DDlWpiU@DjO~90whx7?hvxu=p=g$t|mx&dkmfj`0 z(q50~z^j$mBV|*cW`%focycic7OR39OtD!DXiC~$POHSE~0 z?^=h#!tNJ=#SP407?t7vsPly3-fwd;#YMC{fWvDikOAEo9k31z0(82KYnvOm|kI7!>zI`UKlP>YR@%BZGU(;M5NT% zO_+^2Fh&a#7t{{Wzl^?~8K$_)+vX}9fd~W(qb9Kqx1^Ggr-uyD`OR}?|505soA$n} z1m?J{fESxa@0@_%>e@%&`8nmFzo2t2t2{xSN@07kyCZ@3HC;<5; z02%2lxIxYjNF5bF5*#5*H^K7NzxjAs_{duA`qT%kzH`M1v-*0s@$`P9c-rVpjNxpUbqu3 z**VLa2AUiqa|qN*l%QLFH9$dK!oQKWxFihUZD@1RI^RSm{E3cX86MF`!kB^xo~vs? z=AmDtt9qlD*8N9AtD`5-X)lOsGdd5`cB>eRWsE}(IZp*tshH#$6@bOS$E8bCw1}F& zqhOG;!^okDYlwZ^Pn2m9JCVS!zU#f>=OUYku~{!Qo-#v z8m2_Aw{xC9KN=ql7MuD7drxpH#7T{Uav9#fCg|B*6!WHI zAFfbM)6D?>NS;%)-5$QlvLgWjhaek^gSa6b24A*9?r95o|CCvnpQwCmP^omvBA6x| zJE8&4u2|TU-$9r3J2f`1WtEFY`HhFyKhCr;6e?&$_ZE_UjBTD$sprBDL;HiVh)xHv zd((sS(z`NK8(nQ%N)*iwLS8X4pL49@hRf`_#tKuYQzi!}}B+TWE=Cj)m6PZl|)>$0(u>h9*91 zSSxwZm%8UCjzx>8i*?GwbU^(HX5m-RBw2uE(mttX2tx zkwwX*mgiE8m0G+ej!;$5CK%6E8Quh>45JR=Q{<~Bh^|U1B#)N#j*-p^HEmSb63saj zw~K1>IlJ6iG>k}Y2jUSl6~CUQct5Z-uNC5 zNh)JYxs-Qtk9kcsH7*%Z8prJbb0)TzK7Jx^D?*z(UgIYQ|2a80L1fS;4rNR7t^7Yv z;rEvq`1xtkfh9VD)ntgEPiwF!i`UfosBo}X;4kWpuGl9GU69kHm+371w3(BvJf8|t za{@=R6xo5zj8AJdCFz^1%B{gXD&`Q6W`6wXYKJ3_i|sVV;xwn;2s}Uw0qKo8D<8b$ zLecgac5^6Ec;Yp|7*73QnL>2T6b6I5sHB5zEL8Iz%rVt%oQFz*Q8=_Uq~~`R32pj7L@Gf!V|9eX=uf zJh}~OhyWL~(lS~}+4#4j1<5h3rfZ+4MY1!y{wmUGb6q}BMZ!DXoLkGJSU4Yc%oBY2 zE~S$GT#3woHIL_HKUF7tU?3ZX6dD0d*-cJ=+cMyu03oCho??1a@4?)3DRbo4T)g2T z-v%_M-nGr*^VWUg3Ux9(F&RG2Y`(*`&ytrWS zH}A`OiDYx2^Dl7qp`>5ujTFebt{~;E4NGtkCK)+;4gJq8&3k-yffW-XeU5EDmdX3y1DF zkC(Bxyr}p=nQ8TJ#y9-3U7P8Uc#|@IJ7X)hF5JjAnWD&KPGZ?Ni1#?g(%J`w$QOOM zIlLq)mIA?CtPAUG>uP#5H+$$kriBJ_)CjzN!B1s?R-`xLj9Mj4(!i8M2u48!+db)s zwY5j^<7L>`#dpJEY6LoYGWwL1GE_X&xcY_+lo?rW3v0c<=!{!W=q z*i`e5UkKz*R}QDssl?OFeC+uLm6H%K>d6_vymfjgO3|mcQL> z1H^{v5Wt+AoU1z?uxXAtu}XAle4#(g_yn$~j!U@5l!y(f?b=yqB?9589&IpOk3|CQ zeAX}8vsZPNzV=vTj+T|;x%}eJ`n%>Q#;^0>!z=3kVnQbN=EPCN<>xqezmJEWPmceb z4-jdm5$>wub;E&%!pQ}clNwK>C{E?f#8O;37@DPAo5<=(JVj@hv19nkNg-3^bwpi4 zH%qtwm!sk;mJgHO>p(~oX$N-Bw)V|n$~6Pi_X+hj1EHlt0rCOX{6;7*>U9TxgTUw} zjX}In5k;H)!?Qe^dQKTXiQ|4w0d&`L2sRq=IVKHXM^xS+rq|pqqG%+hlbn?0N~w3< zL!Eg`Vd>_W*<;(8JYi%-94XaAH*IAVif<%>Jv`?%Aqi>DaFHG4{Nv1O3F3F=ZDIM@ zN>c%T&-Y;~VHs1R__f6p{S>kuU>ST0ZBTqs$Qq>+uXC-Q4X3oi+gbWeO;Hgm2*xOp z2_rFG2d0pf05<>;Y>4kTBqB_Iu58f7O@>*^L8?+dPo|p;v;jF|Q7$xkSx?$G zmIk2~+ftj#qrBBK_kVXeIMG_JLC7{%@8EAwZNdVyM8Zm;ec#F|NyYWFIMI3(QL7cU z4SLah>EwmGylqjI@=k4|;pnX)I{&7Doe#{0p|iM080bmGu&}nl-B~T zcMA<5#fwn*&Ix`;;EU1eXxQove5wRWXxOva>FInhOGk}w4tWQTGB2K`LJ1JCP)Pw3 zBNS#aAXwNKUSq_+K!kAOaMmm0S>@WZ)=MB8ohJ3cnZ2x;%gywZmQ)vQW% zl;^QLls{?Dkx||f^V;pdb@gOoUc0*r1+1K0DTJ1NI(LSqwT_USh>wuMq7j~VKT+$N z7B)CQ4Cf5UgDnH$>BAsMYdU*dr4M}ym7pk(eR;xq=VM6*TfztzCLe~qm%4~AAsj_4 zTw9&Mw*YS`wJhOe*V@@5cvFl{Z10zi;+o@vGcD7-Tq1OECX-i-OhmS_yS3QbN6rRpec9g5FfFdA%RVsfTUF3V#VdZ7 zClweDOu#yTDD4PVy$J#u?y9rbsE<8`hd>>Z1cb3>`)=sQYeYC~`pH^rhgs5%Rn2db zPh%xf63RV=<%biPN{^6_T4&p zCE`gcvD`b4h;z=Tn~;vv_7=HwdYuBD)`NuuZR$xygVG0Y7)qB~#ScSo)K-h0+;;}) zl#US`n`uhsvSIHxhlmkI+m< zZuOwO)^bv>RTH$y@~U3BI?f?++QhWcFYFr~*0qSe_gPhN5wS(?)pE6D4AE#GCEj_; zOSbp(@uS4TVtAr-`*kp7*HK}Q^-FQT7|16lf^HU%uHE{dq^vSMaFE!Nx&qmR$3&gZ zhalg+GfY?gcCX81u(>hs6Usq60uNHjF#LEGM#EoY`8r8vPttI15<-rL_1l8qM@X zVHBLq3_O}+6=Fk#bn;{5GzE)l@h(MSX{bw!oaCL(%Mf{0xIl2eirdke`~`3Ovy6TJ zsQ!UW>PW#BB-;Ee$9hSj$F%h?Vk29|$E)16DVq)xw}OF<#aT1jZlwDTq&B9?ZLQEY772~GIX_W4KvR>d-Q`&IZ+lBme{{%KesI!V zW@Z`zWqG`fPE`x6=CbPW8N)aL5nKhevxTqDsJ#@?t`@21>DcafRN~hyr@a#=1FtJz zZ%Mz|xu6i3N3ro2sF3!+sA3qe08CuW-&eI}#{ZTJ9Un7jFzFPP3V#9>8|AQU<}MLR zxLk*lXbuC{z1H zF;!P*rmHG4l-vwY2nby&L>#qA>+lt&M$QhR2$ME3#inNER3vz>OgdIhYFxoJm@O>w z)GFq6G)`qH)4m=TC5WU{A;OX@1|JnqDVn>;gzmd@+*1z%@|F(1r8S)eV6bicULR zkIT8uAm6-NXp``9Kl}@F^u9)@vPj}&881$8T!xQRFM1@L*!^5%i^bTfJrQ%VA1=sh zw36q%XX7F&47y7cw>8P5oijNs+?%r z1D}~8RhrV_gAUo)yO3iFcRxaI^={!g$n0{DzXf*HE>!gS#k z;uDoev4G|PpKf*ULS<#Md@;EzF_bPt7>fJKvgtw=geX5)zZ68%EU+1BSyj{$VRKDyktSZlhddUln37(2kdA?YktcV|nx2cBr zsCjKW)TIP@~rv2uB^K)2KF_4@nR_I0`2`F?#|fdk(d`$M^3o%XB` zVb30QK|V$*(!k4_E~7wSmgGGCl5&TU9$?P*A|P$(v$b5@%I)fQhCr40cn_3F<={ES zT$I_~A5XsF$)$bY+`pvA3mw~US^|@AXjbki!1vF$xqqOnj!#<8Ckfa-I4*3jnloS> zEIMHM%D4z^-~XUM!a`plVk-$Pm%$6v-)xKgOm*avPO;J_bMLngRN<}vABtHo>YrTdH^w*< z-d;muT8L?D>1JJnfBI|^9j=BQj?p6)}<0!Bt2i=F^wsdI)4M~!n0 zCHVx@)umElwH5E2#>z4fWSxT}YCHT6L6t#Q+fIjMwX^1)u!Cmgl>?(`#?MNWZQ0C5 zK+Pd*n=Y6(ui4YN%6SQW`i5hasL!D3vomV%%D4qby9T?!lVJXsF~BNziBx$r{mx;^ zLbTj{SeSD*w#ITpih|WAnu{lz?$uG($9T_es)Z4WZKt!Nk;)EF3gh727mBevkCt{X z`}!#q@_|2Pl0uC9b5_E4`WLTV^@i z={WXZM!zAiKVVR5F$|cY^lk>71A;SdAqHdbvt-cFSbd~4vJ@shI}*-oy}<0{0XEt_ zllixVTq}l)W=7Y8#zg6v4h11;3svs2UvF2*(nvVCS`T2v!D@qbHXEEUMCf5ei(z zOHI2iT!v051X5Ge+!LhohUFRg@2istbMUDp_s0)Em5NTH=Y7?iBx0WSS<&V(K_kRq z6!K>C)*z4{=4sU3;%;r!hqR(TKaJ^UqSBwt`@W8o8$a6nTPv7*Uf3=u zHUtTmQkniQ@PrFuN9Zx9@JES1_MJMoVd*+Y`B#!7Xhc;tEz0>1R+j=nWkGbrUF^D) z6WV>tL>h(&HvQk=ARTL0qx2|4VEm~aUDP$Yv_N|D(_C`IZTQ9oL$u}$Ko`ds0e$?X zGYdW0yM@S4ZzMpg4TyCEwIM7-Km0rcLrzi=+m=z!0#nMwkgpp+6jF zFklwJw)A!+9euqWL0D0;>3bF4f&NoIf$186QVfb6QxwP5f531}ZRksIN$Mqi(@sLy zSqE-#lJe|@ch6KEZ^pl3jgi+^Fzf@Zpw_%$>XCKzE-kFW^C#FkU~j=rR+&lG*~i|M zdc447KL_-8ptM^^D5xy;`iA!`iU)bCDYhhQiISOPwwkIG<}=cwfrF6PQqZL>CPr-% z1c+x?OOkpNH@YPGXs9W1{Skr$x4KcR6`O}ILF)PNph#+uB3AM39c8I)L$aBTGuEcS z#6MyyH>lI&s=af$yOAGeCO?4INin|HHmIz`cYqn?s+V=u{)A1pGGra@InQv%pZn6M zO%SA?IotI9@nqfa+~}gvP$jj4TFJM3Q|sssL=cH*rS))xuglUjQo>q!aitWU?VLWY;Gr{djR*q>p&qb!2!g2pq+zhP@P{iH(A zrw?Q;$%fZtLu+vfU$||z>PDf{x#>Q&bLpzVKMw7W^9MiL)5D9LngHQ4zwA1u2&P}v zC~qTS1$vWlt~Mm7a8FfG!2ES7P7cF|g?O><%+wH(>BmNf`7;8EbJgxsRS?LE{kxI? zkQMu9DGmTD=Ep*;cS?j0E77hnd}k^=L|4DxslXg^dZnrIAPON&AWigV}jaY7NPk@rEF%s&5`Xun}W>1|uacDCiL zKU{^{7HNk1pvuj|6HOFNMS3xofn)ZMY}Mh-aL~6iyOxl>5EYF$u8q@flQ=yUXvQ#% zB1EjBHHa*M_HFtn|4LB?;vIW_4S1J0!Jqksok4rTVo$lVatb5{7xI}5?soaz*KZhA z)i|=Bq;frw&q0sg04P{vaCo$l5n74S&ER*D5Hyr^ zCdi{q^()7$0uzeqrP&+GuqZLKK6~lVR|Yj?dI{P_0|?{nv!*j4@~$x0`@gBrEj(;$ zP2fw1`QvtMj45W*<}@4A+slfb2$Tw<1ny?m#h}~YfQd=+_(!H45eyElL+ZN}))uSP z#_`2j8hB~@z%5^12;j4j^u5iI+kIl{{nDac#E z9XYtRQWb`!o7m+;)a6Ii<;rDB_?^_jLwVX#oslf$N-W2esyoj8gr_OxnE}*zwR}g| z5Ug|Q0Wo)as7}xj4S9x2X`m~PplnPared>l$Y9m1YdLvs&0ayyFwgORFfOQ+02P56 z?ThH|_9;o;r|Ct<;Ah5G zrwN|~^EjJ@MdB`Y$r3M1-m}zL?FOPI?eNI(<1{`>&>)qMBJAy2WO>XcoN6bPDRJtC zVOCxavNw<(RflNoqS4x#>JF9apxV^0B3t%0Y zwLYfk%vp#QN`ySo{RE}RZFGnQ(j%A|43&h(%E3=)2IKGiM#NdL6m^NVkiU~N4xo?@ z>r*b1*BMwa_aABbLs*^50;JP)!eOnFb_X2XzvyF>jL#jpwk5qA1R&nIn^<-PE6pbH zhM1J`Tzmz{6<${=n*I>wkE37g550XYh&(X@ad8yj974p_iC#)bTUdCr8N^qdK!I^& zYs})F^|FDj$uX1|_v)ga{rp^+2|9bw$4Wj57WW?Dk*a_C1^wGOiHN3d8DEW%`tYyRL7sS-Zx8;|Qv73!=25!1;)oD)z^Ti$sPyfvA>`&DD+8I=dMl zLY0gXMD;+0s?HTw=eT_Z-b_#x_)T-ZQM&c-_ycD2Z~fQYnq#P1{+$Qsf_@eOQvx%l zYlqeyy*WZEakr>XVsLlh_eCp$;5BzLf!9o0^Y$gX>qzSqVLn{Iy9GFfxu?9VtoO81 zdI_7^!x-cYbtS`++jyU4P||$Ztvx`}AKYFLyhp`;wD|qZtx@mk&feZnaoc)Ec&2P7 zNs6(UWS?>mbyfO1LR5&jjhUjcc6xnB05t@ezKH|?9tGA72TWWhN80jSrh_iQgx+Py z^Ylc0TAq&5RVBor8#-2Cr5XPn@^*Z-4RE<;X=D-Ymo zy!EdgA!Jpa!@CDA?^0X5R@Y6pnbe6D2adAX^#wnhXk9Pw=R@h!LYzbuMKHFZM&ZcO z0I8&AL6O(nrN;ZLKI@K#5$Elel_0WY?<+y{e zdz7ceYX#!Nl>oLPH&(h30N9e134b;h$}>5?JXcP6_z2O%s7ElstY`}m^)fR&Y!m2u zIr(rM6B0KbFo~f zadZ2G7@AQAe@^sFkkLhR9`C&sv*lhM98DInI+rhv(j8V#S zypJfJcuS@3DC`JvC7Woovwr$6LS9IVVcB*R)Zlgfk6d2^bt52QS*rm5wwbC z{QsC)5sl!ODCOU}|23ehoK8kn0$d&_>$dqM8lf%&oQ+rlWP)Z$!7{zYy#IA*ejTod zUx#BS!mW&M}v ztc6BQkgSGo)9BeuV5YCDSq#%A&`fY$H$udnFQ!ow7z6WyKU@e9H{NhKx7A^xB2I*e z+XlEAbKzock?v+9WQ0r_)Lz|gr(9%&dk;f`CmjF1w(I0SeAT_Kn|#{ru%MUj(3mF` zBb@CI+=%60=1uK@r|)lcal5S>`tr@$`LeRt)dPF;CGB=&+wbX%wEdBJyS)?i@=eEBXbLe@fJK{+F@K07Obyx4l9 zJ%=|#_Ot14ZFK&K0<^Z$bQ2=M(M$^&t|xG!nyWg%29{^B{oN2>ttu zNqNhv)N6KWi%2d=%_o*80SvNTw`t2sbuz?welIv(kz_!Ds`xWX+xDK7!kh5OPQlws z%>wQWrzO9W_ZS+A?>kf+RT59>ebi3fRRkkh&&*l$C=mc%itOT&BRpLc`E!D5qm*W- z(MDQNg6FWjNw2(Onp#2W7E(o#vm#;aIXeFuJgziBX57*C1}%@9OF+44pz?c`T6(xE z7hR(AlFH%s{m?xT-`gdIda--LcB#0f*T)sny7qciK0pG{qX9-b-e31aq1v2dv@)Cd zl45;qW5*GO@k8Mi_E&#XIyd^2lNulP1vGU?7qmF^Mn61lhKw z9-W#U=jU_TJ<~m5N3Zxc-$YZzrY9z@Hd=%3DBcD&%EW6exyhG>$Yb?}OR>E@S!D(o zbG(!zDCX4Beb7wZBQlp9w27L1&1;GyZw9)NwyhU|!d+udADt!LJkQ*nLPsw7GN^)P z4m9O=Cds1i0)V+B$iXC*?akV&D3=X!>z4i$KZo?NyNlH1waQDm^p8Zs!#6_(a(W>tEc zorGmJ8yHxWa9`yZuuUhP%g6_B8hb#Z9bQ?L*kzD4Lfvz=w9U1oQzdpZhtJdmFA+=e zb2Ggl+91_VkedwM&6Z$5zaOL{!4M%#7MM)mS&bH29k|&DE}EWno1)TaQBM<7dg%p6 z%wSx-2b#ibEQnt3r&z+JHrjKE?6bEQhcm83#{vy+_eMHyitQG=z$!pE&7%ZYX1k_Z z+n-I>==c~#-x`r>D|7Vbe!srXK|-{BSrtM3YyDT%Nx%i+y?vZ0S&~VIVchQC5_fhS zPr5L*<$6TF1k1?DsEmtR+04v#X=nv&PDwD#sPTCspK!}z)d{-h=i`Fy zm5arY7_aXLP_;+N!sXIMVAhwN4!QqF3l<}?IC_Vi5^rg4z?N(2Hi)IwT zPX6v`)h!Kf%0XN`VP-tgeF1hVu@rUbfy!IIXl^Va>UpB=l35s zT7ymPg7a%o(vWeTNw&9_c8ZF07~U+?jyGwp@gTft+=>Ev?e&g(3~fB8Lgb#!Pmm&) zbUg3O=As0q_3G9nSg8Xl4M&e*MBVa_uzgxJIUQ+2mbWkLZjFh7hwh@ADAS($YWAP1 z^xIs^UL|V9=TntphoRT_By|oJI%V}VmRHWUSkr>S+*{UYbrU*6LoF_(w4x1Qb@iownOwMMcA6oFRnZ8BQI>=dEGoK%kJdl-*7GT1 zyYaFfL><_IQr0949G;>KuTdkM!376swFU+xDTtaXmpL}an{AM=R>HUL!`R>s1v(1o zbSo=|WiNhZi6wjrc%GLu-ZcH0OvWO|J7&eZz{30Hbi=baM7!y9h4(uyRTMgLU}1Kc zF|`ioa;^cQa(YQZYH6!|hh*C@O(1&+p|lU@gc8ydH59hWG);W*jJ;q^AP#j^az!yb z3TDRo14fiE`G;?DG1uAl3HOCvTUfk*TBki@y>`_TxPqkUubMe9lR6AA;;R6KephoV zEVuc{1rdPCQapIj<0|r0nu27=y&4g+z=YcL7P1t9qv>Qz(_|^zkz`W+b59B2HH^SO zU~yTBDxX{U5m65;$0KN?3qJ>)B3&+VY|Z7J6_GlO-5w&E0ANAk?0K6FU1%B0GS80Q z>XQY1ydve2W`NWFan>jZa<@XX_ih!C+8~phfJ4E7V0k{2APXyKL9NF+qGCY*!u z2bPya)4_)_?5{Cd5VQm@W)SEJrs-_yXL?cUFZbIeVO1bU`oVKNcEwN{B2#( zF70{m(FT7}Q(X;Mgc)r$3^IRP+h!&pCho)92A4zD$)2Gl4>|xhwn4x}X$T3)=&kb4u9lF7KCht&o<9_P>ZfShY4rLSG)9~(9XwVdicvZ2>R8+ zbf=L7UIQ9t>?obE4n+pcE;_|NhUz%@<+Oldx&?H6@o&TXBX%fd=3lSnnR-g2OU@CH zGy4dmkE&o&j0?4^;6qZx=X@-TTDU#-Sb&pt^BO+_Yq|sMXD&bRdQ28EK!#+LpM?|w zxI-Iual$U_8MwZwxzE)OvW(LC3V_*FDvmi)YivQ9Z>n9p$=`8t2nOC0~8zb%A$B zVhyvRJ|$TkE@1=^F#ZA{Y_F#~2if@4&YvxXp%`p&CBN6HUaQr)nx8q7|83SeSS&NY z5@F=l`*!YtR~ zdNg|ctrETz?HVzCi!Y-dZ*DB-tRU3>$^Hc z)H|f`rFdKzPR~X=-j$VL0ZZ2a#8^1RSGWemY9Y~ zLLSwsL!F5`-rV1TiKIf-2v@RT!)&-f&HP764lK&Idp!WkfH7UWMMk81$CH=jfxV^{+S_h&h<# zZG0nkPtF(!G5Z?x*@ly>7=$JN-`o}5+ikdLek3VR2?MJS#(NbNaWat!M=(q(_>=l; zD*Y7?&wR2@T>`b<6uYsvHkIe2#uP$3J1Sh7o^y!e0fVu+f+Z->szSwF{)C2}{>vM|7V8 z@9uniqfctgkHQRyiEQjX@ebVRh~7Q<_483`ACHLiOUBop8#`%aB$y&rEXksRok4I4 z{gZ1o9h-7y_*0CjOYOF<6NFknjKIOpti&FwpqCb*{L{Cz@<%X9CDa7s$QJqlP^8lnSWu5^h>Dei%TL_X`;kALgj zOb3RpzdE4>=jJ(R*Z`XL%hy{11L6D<>HEi$anv^McnX=_e2P#;`NRsV!Dkuz$s9UPnk5DM&_gCR_cC z-$ST#uMo4HN#=UPCs|_(4nh5quC~&7D?(k4tN+}m_vak^uh{>5Iuj(EuFhrxf2S|& zH2AB)rz%z$PmtT$7sMOY&`52|wJ=Z7ZiD^dnhs&8KC^=XfJ?XXN4)~+X? z{V|RBcA!6WR&rPvGlYAX1+kOz2c_99Oyv(vhua|oz#$*nBMB)|Yq4op9*8P~XD^Z` zODu(p=pcqwm*1B<`QBbND>0`>rT!X68s1w`@f;tD`B;-!$^#B=Mr8GX2^@s!ltq`~$RS+^v7F zB5ov;(Z9F%I-IN1P9|j6i%paE5GD1&fz4gzgNL&r?Wp9Gd^Ybk zbDy2q48%Rj&^C_9R?ibxb&we@xy|a;ND;*9MuXu_Gm4cLlP!Yp zEJPw~-a!-N1m5Zw$R-Y?C|umCu~0^_>GaZivBTQoR%GGz_H~atqG?ZUjeKP&bHSfK;1iqpUIf8hZ)Xaoz2@ z>u`^R=ud|?f@GIt;VI2$xh>(}(b5QFEJpTM9^5bJKzLiPUcj5z6SgLNymi_3Ex#_w zy&tOLQ)S%hSiBIqrd+Z5=7U(vN*W$m(Rrv(N1WL*f_>c0tOU^V)H~2AvV)@{z;%VQ zu~L5zveu5w95V*0T-JRb@CfH)AE5Yxv1W8;w< z|2E>viY;aB9(QAkm7DoIT-)yWyRJdlQ7V`WX;5V>SF^DXHH5=lmwJARXOt|AiI+Oi zil0F;fsYs`;FAbNGI{F09D|FRbb^W{DP(r&Hw*d^dAOhYzu{pBS;W{4@@>)02O>&H z6%!=_e7RACs4(1plx&lpv8)2HbVg(yDNfysdzwCE5`LAWAkI!h___%T;gjFB)FfUG z5b%23dmM};7WDP@aDF;JcrFA8w7%XQUK~6p!tY*H$WN~c_;@|+EWLGj34Qw{_SQ86 z_v;GTwysAQKGJjTWWrpCe)^FgHeOs6r%Iw90d~I%Um@uTauBt0IpU(Ygc_kLgx)WX|VCk#RH)ABsU{2shXlUN9lOf!i)v>B2E8 znyKhIV~XtAInZ}o(-rcs_Z!pG6|rJi7no6uhUP6P1w^?V=q}k5b}lpqSKsXeL~m)@ z11?`+T?53v$`2HLlI{w7>wh3lF4L}=@|!ewmvuHTa*Rb%N}fjW1cw0Pa7K(Lvi5tP zyuu}$_C$BpL8xV&f3wt+F1>#iyp8a=WCy!cinYJ&HeTOq{Ql|#o>Ryr$53mQ%Xm0X z2K=2)di0%Uk7=pOb8>_QRxRceiO8J#6+gE7WS3NPxOD91M1I{QMpi?>w}ysVVNO-r z(Ul)lgY=XAx4%Bc+J-|eXA;1u_o8qTZ283@ex0*MiQ=l3`?^u2J%8_nD)h)E-^zoa zW#wRdmMxoKhj+Uu+BM_qx?%>$P@nQ>Db-m&9*5v^sXHD!48Ju+{R zIB|Ba?%RXkJb;{P7$}iGEAujES9CBqugO)l ztmeGji?x<1uxA%Pm$g~u2*iDZ#Nqi8jfUe{M9NnkgWkS|o|-mwZNGTkBt(es@f*8p ztaLS>$6<#avYRlHZsnr*i+oG|cn@8w-%u!c)niWKs)5Yp-F7*`s;;KTrpI_+b7oQb zeN2#qlw|FdNGQ@tM(Zm{;9N)9^l(!AF(rX*8HcDAkZf}2p8=8)Se2Qq1KS~8i|liJ7(D_4 zDWceIvgQGT;$H5hcM?=sa|jaXftwjl!L;7e(jLSwMMpojr^x2v2Y0GlS|Xd3iJ~C4WB|W(gSWOX=*2gA}A%bLJJbNZa-5dBhO2^4%5SzAi9w?d6sx&RvcM z2t$M75{aNf*7u)Y3AnVHFoNV@C9l_oFrT8*Rt+jSNhsV{@u2weZkK#r>*?! zlQ4G+NM`s5(k`yB~TS(!CGm8Sb~3r9Yh*Wtu(NaIEUq zrUxVkuxX%HvjkhFnePx~(`VBA-D*(A2^=+P=1G8WUi&!7S+=m@qJuH^d83k6rQ3d1 z#ku^BLt|xowQ2+e_7%{-KPNHF(TF+zeGvVzg3T#GBYbu!h^?7UYH?$|WQ4OXA;b$d z*0}fDsZ+x1mb$$5veA>*S;fq~i(QK4z|w|9L5sBy$C+J?WRNT$5h6B5pI&bQ^ow+} zYu*dM7lell>?0}7F+*~Krhrih_+tKxjSv*rCvwMEZ9xJvqQ^KG(f?aKQxFpza9?fG z%(72V}P`s|s8h^*VHcsok zpnVZzWsPUdgQM;cX4SE0>gBxK|MrLhhK2AvQ&Qsz4SFE0FKXP!{W{ zs`%$wKhfddO^xVkJI?r#X|R_Nvxyh?xuG}oQm2u!=WswmRa@3A3C-=UvdVOz*tef> zKfrmLr3>O;j?POvTaUHt5Jyzk@?_7}?ISjR^~v)UX-;d4lt$+lvaaBpDpDcKnauXZ zODp96N)DVW8=Y2Kz8ooumE>CACjh*0 zGR9W##*JH(=gSiyNj$f}7%vau4(=H8`(-jqbxp9HF6!oO!-`Nb&PsR1!tVZsT_iFP zg?r6^Efg+p-mW&4Zcl4d>%tFhoLkmo;30v)_~W+++`tUL9Ikkp=Z~8>FheU%YF5e! zFQNO;BM90Q{aY+J``yPgZq(sp7o8N0r_KE^1iWd9U zX3-Q6q?2iQaJ#rlu4})cH1*3}MwM3^TneoGEiPLb_LC8K)Hw9nlNImocW!76uFPD$ zdM?plO9rS&Jy*EOHaVbPa0`UY$?!6>3C9`IMl{phGX|VEuwStvM$+GfpO5YNNos{1 zggsiu4H|=yrOZtUsqaN5;uAe2_Q#ZfDh}A^2&M!-P+H5_>xOyvAy$QTPOG)sQ7{_6>?(aF)$E@RW=f`$ooV)7CW3X|>j%HgS^JQo!IO*_ zMC~zDML;gBjNCY0#B(1dp&KP~8Lgh!go9!2cS9%%Izwy$ zF=xDSv>6T-R-@oVtc_}C?Yh>{^y-FmhEIl~%AXiS7r7+hD#^=heLU@w0tjZW$@(B% z_zjdKjQhUwRx1`&B*Bm+BuL(VX|0902`YsfGx?yZExyMJo=awmY2)Qm25W!6Ba0}) z4K{~%VRZ_mmagQ~h4Sduee9=3BLV~|@EtLau)TZG6u)+O*DzVMYr<)6xIO^>h3sDq7KC_ha0B>1Cuu)&xeQ7Sz>s zN=66`DZXcD3f|5(4+5R^kro(vaK7|ann3U7Z(qBu_c}kw5uCW^;@rK6T4yoBR=&qB z)ov`{Zo(4qzZ3q2XD!8Z6f{n|x)gF9OWPG#e8^Q9?$l7`TbIM?fhzwU^>0sK6xIi70N~`AHE$JW*ap@-spH3>77< za;KnSpi)GEf`SzEO~|WWT#dN@gosy=xxD53%lY2cP}hBONi_sm*8vt;K4ND1Png_j zT(&0O1h5wa=FLwi2P}PFg#y9h zf#zv$h-2`xlSd3)xMg$8khwOztnA=(TYWy6(loG4vHog+u%$j={Cq7f_4(S7qE3k7 zSdR1+Kf81n2^AkIFX#QcT_*ydb6P}t!>qiyp_6@Lu2o0kPdshSx=chzTY&BZ;*=f@y7lN+66Nwz7Wz>G7#oUa&@MjtB zNq2IZN@NIDagNS#T4Sai%2v;**bA(g1{e{TKph4b&2oh+e=hOeHM>-#Vb2MGmH5J%9wb5F!)|7_Y%d-MtW`rT}@wl`M|FM}m_xs{hr}1f&CXc2v#PPvx9~Ok=L!_Xbvzyu= zx*&7zcIQfh^Y2J|uDK2jEf2jyeTpyU9iTI=cr5!;w|6!R(Y&Ii5ms?uRG9jW5gJ)kEGd=<8$CPF%uK_XPIf*8wt@t&fr=vpw9YOG- zxm7Pq@eH5*mP&*om)i=CJt1!Q7YvpW+SSli+Gg~19sV(!NP=966OL?Ofk)1M?`veI71e#TD<$UGbn>1$ z`EQ>Nxmn0*TF)P7Cc4|unqmp8Wc1y-?|L32KvPq8?*V+j82AVWbu{9v&F4mS^c6oR z6N%O}P!6@HkkrvO{zC0yy7FEKwKc^kDnJL~NVIJfTL*1WS5RIH$Gf#>WJ zqx@inCj7J5tV1pFThRL>yj1d>%iwxQn-k2h5Ba8yTc+@HGi|@;qgAPU0^UhUSg0uB z78xG?Sb`Q46Mk368m_6!c@<*3%|!``&fC&eil}C}8<7ASBntQnjWL$5X3BKU&s%8U zXOt%4HBPP9qv8b3vGqPGPqqF-EOu6ufxLYbf63R@i0SWQAtf=Uz0IBaB&2BK0Y(iM z?%@#5>Yr=_4=yG@qArnRK44<<4!l>hFaHUl!^PC0!xPbn7)#+AFD%0?@%4^P_ETfY zRLtkMxlOx{w1~dnV{9yF-4@fnUUT%dh5JOsZL}JGuv4d;&!hha-(cXiVI`(Ore7pA zmgN28mn&1lfG#OgxF&xRan+Y-ZkdEEe_>Zc8T9e~&|yd$)kUGmi58O6`F*e;8^;0ew2+v!`k z@3q4$pDD3FN3mKoylFWSrZM`_1*hRnX0<3VYJ&YqH~`q27Oj(=V_^N|mx0rqMrxY6 zX=S2{g1uD%C(k)h-2WIb94OFcQ?s2XQpWpO1=>qGN)D^3pibhg*uYgDZAH)vgPskz zW=_u>_^?|T#&;!7)l=U$NO)r*`PPSso&ozM9Q<-gUYD; zXZ;jiYKtk%vZb(ti~pW_N|1pft&QbwcU13ga09ie`7j&Mk%Nos&?}sGzMuO0&sQ#q z8QC&(iST6al6}rh0Y`BbTT_}D^Iq6!`T_Kf$(==XzwzzXKAyfjSgkP4MpOG#!sCO( zj(N|9DsajPw^Y|3PgRabmk}GZZ7ZMi&>S!N7S?mO8y6x0e zz1`U>T=PuiHI12rt~&{`Z^UT0q+8L2?+r3!a&t)lWM}8D&{v6(S8g^Z(3b~G(}`+3 ziQ{kGitlg7)kYtETP*~=?}&Z*+EN(l`u7WMl;RAT3#P z?#wvB%+Zohmo4sBco1ntQa944Igul*mu^exxtZKG^aTkKK1wh56PeDr>ECB{oQkIkc7qoW0<>e_ zC+~?v-Zgwo?;8_d`v7ZKEWX~ij?l>iHH`J;3}oY;$L^rKUuqoyGpom98&hdvA8{QA znFiN9nT(OwRYUn~@wJm`6eW|gcYK#^26ofb5sybUG}B(w=2AnP#)tx1lfLj2t{vf1 zJ6`N~DDg$;a5NdDKf%GAzgm&;{MmjLPz*DSXdu-j&Lnb(k2XK+(#RI&T)6Q^^aW(* z>K7dD8Is59ASuLVW((_Kab7lwA15g6*P|PNpYPP7 z4?gaaYagVJ$oEAuTSetyeT;8@U|Fu;#5O|bYD>gX!98q)ai@}qSw#5pgxK-B0-~Y- z5tlz;otRMYREV(+f>EEjdY%w44sl4E0DH6a?yrtVX4BjP^({Vj zS`W--co2}Uzb|X)Jc&zSkp5$oh&!ZU2mS2Q$!Z`Lglc8M=u#qe@Rb?T z)vgc>Xz70Z+iv~KjClLY^TBWfDj?Ix^Wpk!mSqIv_CY$feo9v`7QkTGT-Duhjn$k` zpo=6dA-N3_NfjMvpx#zU#5X8NU;@*Yt=^^-?ymqp6QwvlV z8?~3l4zg6|&;7P$IeVSMuSw|3Fd!uO)gFd`z75BAhITfVx@&_`(O{S-asX!U#f`Tx zu%{qv6_94E_|@I`EEkH3PRA9*;dNg_Dy6$fL(*UWaCx6!>&5H08DgYMJ63<*qJQHP z+d7oTEG4H-qdmj1*o-4Y`SN6(MN%?>G1^3c&};-uSK(lf-tQ@B+>$=#CF7~&pmhtp z&n^y{NSzyWIDFQgeIhcDSuvo=U%Iqs-5_ z?pezp5kTI7M?e;@H{{!~%NelITw%9zfemUrwbTZ)mp|fxyx*)j;@)Ds9s8UCTg_X) zIU7&$wZU&RU_ssiN5D?!H5`PW|8rb#-r}ooJk`<$Gn7AKfxN?xfW6LZo6WY!JAHpU z8lIzoyn~N`-Og(p&1ZHiu8pU>+F-)+$1w#$ZP)IK##2viFn{?Y5y(682-xquw$*%Q zzXE;}t4pinj#wcPObA6HjdWHP{IuE&7K+$@r8u zpS5I`K3jI@AvGVY9rxwqH=J0Ok-^Ut-M^5~Sw{Ll6Lwo6#W1UAHX<^S zplb<{)%)>TL7LCMtFDA0*GC-a#ESA~Ac4{ndIt;N_im~J#t4A;)fCHa9MBPN59t~S zqiuj~N2u8`*zETS&!G_J)ODFFh(Irp^ifmjw$AU^5^@3buKI6gje1eu3?%;~MjQZQ z{g0x{8s+cMf5`sqgNZNgKUlvZ15FX$$o<{jpH2UV^#Jgk4B|gWXax%YU(SE=hRC$? zpK}n|@lTyXtFE9h0!R-46W+jYbr89&`*CauzX19}Vb`wn7s+3sh)N-UvLDnCp{)F| zw1aj^Bi(q;xN%tfLm8(!kAi65jcuKhbsLcm>F=KZ@UuboR`@>${Hyy0#{a?S#Lb5&vULm<13*bp@so zfNlWz?SB;hOXGi${1s|vs`KxR|9~RK1pV2grto2n|C1gJ=OpH``8PXm-A;DI%WTYy z1-H8`W`F#tb9Qz8zej&_5GV-yPo(}#foVD7KWES-3jKdm`m^=la&@~F{Wr<~FMoNf zKk@k&Wy-egq_9L@0O3_vup0p^2Y_>LjNY!uH@88@e<+w5@hbkWXLEaj^5?{wX;8Bwlq8`?4m;?p32(9FHZFU3ci*t3UQ#B*AiP5K9Nb-$`PR zVf}mhe~Z`H`*xZ99sMtI4TOXGH_87m+jFkq|EWV)U>zlQIk^BXUt?kPB?~MO|`fCmS!`)wu|2K|Z!}32z{xcL2?fbvt zX+8z(5Q4mH$7!eLPhc7VvT5zuP=%1k2+WiSH#q3CRC{%7Hz(b(ES|H=Lh>Q8t4XODk2 z{@+k`SM&ce_&=bCr(yq%Cxh=_nE%~)+Z++M56h-IYSik&Bv8$%^?0KWQl5lw$W9Gs z=x>WPcF=zb-tg}4)%d&5|68UHXt!r5)fI$B0Nw$hOO*G?+XeZy(7i3Ga0{S66n6Wk z|1A778pd?zzq#mK_>0p&+rLFaEYJUoH>(Ux`N*b@Q0!^WBFgo|6zcLGW8GeKZO6s%lgyOe{sRc@ZVUdI{t;%UqUf8 zk{_*!$rUzrgG`TW!#mE88?X;W1EVP+C?EqG16H4B*lcz z-Vo&YUBc_a$MUf>FV`*HMuim~KaW}5IrOqNAse}{QgDxZjp5S+{(()Xe+ zG{{8B(SLui-Cas%IG*$p}|dYzJ_h26=v#;X*fQRt$c z&wGc9)o5A7DExk|(8bxQVu)FX3RA4N`jWO2c}~-x&33C6LksIGq6Q*7VLg@u{A*oQ zz%xh$#$y5#5GgLB3g_?CC<#mx6UJgq_Gnx~nCdGF57|%OEbSV z0~UXbiK{5O@jH4tDtxhT=B^teTMZ(x?Z&c>#dx~5*N4xvz&POuOB1)fs@bx@)PC=mIx?C#@4&sE{OCybHC3i2 z(OO&2^mLgs!rQ{d$yG+ySwhtrJklY&%bD+7iUGiQr-z%{RfPMNqf&x}J6OB+A#vK$Z4my>?TZ)`75)n^)IN3HH}W zfbCcrOYCz0O>XgPBg@;CXA|w3>?W;q1{3>L-ENqb6tj)Q7)LwH;M=2Jp{iAHE&6;H zs~+~0o2&(mt%J^eY*TuiTDoPH5#}q*<^q}Ty`NCh3fi`J)iaxaY_2$b_jA)Zre%dA zF;8zNNYw!wKTg0~A*P;TKdP=;HQPp=fn3rE?&v5(DN(pb&ij|UQdwr?#yUp|MpJ)S5#mT_2oW76s0 zTUxp~b@Y7q-Quz=xw1uLy0NeRNao(=8a9-F$<}gjch2nUrx0u1=J3ME{z%0sU}@i2 zP})b}rVX1`(Yo|GIQh}_R;wq~L9U%~HPqVKEO_#lQ*4F&k-i+CT8G%wo|oLrjf8K$ z&_Ic03!#Oq*0T!Xo@M#B*LfeS2DAR4gIG(Zl)RxIfd_kw{rTen8f)ainELj-L8rV~ z$_su}U=2}5*%Dgsk$EZzyPT&nM}fvMHc10IqWSQCou7?@FcB(|DJDQ&zo)EDGreoC z>Zn?R_vVbZ;Wo0*efb5{)n%$XzZpKkJiX6gFf6LJfM9)UsAR^ovO2OsSqT86nIjDqAQbRpO~Sa#=VUIM>$82P>pO-yuBb3Oh|mtf=NobHW1Of%l%5hX+K}sgm6s5D2NWw zba-0u)Z>CnCFVN;v{8Yt+?5v&_LJaBwz%egR@5%2xF-nmiSHdK4WvFCCRg;n>zqGK zrE&}=5Gc3L4wRXl6VPF4ie=hveN3Bt9PSXtmu_H>ht0~3R%0qfLEspbIo0b)%+j81 z>45MC&rL*m_K5GSU7C7sw`#QCqn;ALg}ZW2w|>GENE>c{iu8RvvWnvSeC3wFv~R?JYADK%@J7TqfB*7e~|&Q#K&e>VFml@JMKyjPDgIB-6o^c zp+@XrKd%K0bI6_iETuy%32SzeY5k(#H`%M`w0_W(vZ_VA(xy@7eZ;}@eNg$t+bazd zh~e@)kj<0Ue2$F)_%^{dn*E?SVs^q>=XImFw9H7Zef}7{cdq{}EL=offGOF!1za+! zvFlr}Dt9`2D{Q=eq3hYYvvw9%*wj5oa~Ez( z>xJDtuR5Ah?ajsrSH~^eOWEg>T5q4StGYma%J|{b-6e7l9`%CzY5T{uk??i~!a4v- zibkhvt=47b4bf=|^%>~MEl7&)<~PO>3NS9v7<#nxd7=hAp3oz<6E<(zj=slape~ zWxzdS>+fS=As;JatmzT6vHMbZu=S}*?e6mSu4DBrQf6tL7O}(lPHl_9Ft7_-0dk-DYMAmR=U98L`dfStqeumaNgCF`>Vz1(~$Xe-pi+?sE z_X)WUcyHO0mxeJGn{n)HRBI3YNUXjb(R}GjRlZujOlgrCPq#?DyKY!$_E=kD7POZo zdd_BCs$vHC{Wedf+fwJ8pMG9BiQ_;aXI3RV+#EFu>D^u^l-A_g>=D~dezIw{)HPO1 z0fQQrcBW?!16ca!D$7c&TfB@;WP97hZ)0~#B{j27Z>P9-T_#twY5EwS!q=*4nHcqN1N^uLg&~K?TmCs z#xTXvO6myUh*JrBRqMf-%4-Pp5It{A{kCzJ#j6xz6IS>`Er)k?VZ-l_$8pt&y{`({ zyeZkK$;Wz5B;;B}%c(SvbuPa>swGC58sv!<8$$WuH-(%85+uOTE`u3M651i zdssmNv}hSMg-Yt+A)s}wqg)NkE}Rl~u5mZc%CEzI^zy8g_tv(he~34!c4aWd z$0||_&OIXxed{d08TLU}Q-^Pf*ZgJZi-?2%$`Q?8wfQ;pK6L<-q3`dOe)nxt0^2B_Hr=~vh)01Gg)piB0ra4at2D+c0#l*JkhtQ_HwSJb68xSA47N1`Hjmy z24KGgQ=Z@L&y?A+=xFfxj1VCw-n1%A5M42t*r4hX1#zRIWO{SM^xr}%wxjeH?>An+ zNXwJAzkn)y@0Z%29++a)T)^$mAWpcx=acpVU#GIMT3`IPdF)p9?W@-LmX1t5BW-Xt zfmkVQEAK6a0FEfDs3FdFMSt1Rae7CmF8!sj92#~psGJ9t*0 zHo-6v3%Kd(rLN!0*A|?;Z&IC8PS?`v+Whl^*2!kij+bYpFI%hl;N=LsSK{4dVTw&F zBjQo9fT6{^)rM_Cz_zn`0nv&LOq?57^ki~votUb?foXRuXm`ta?CqvjkcrR&ytW1V z6)2Y`o(1Hqxhw~uRk%aNuf!6y-#RTP)!*my&z{{6hv8z_PMfWSw457%i7UhX3IyB6 zpdU0duE}8E47W>$h}wX1xC)4ZZ_BEgu4SnLzb!H#9_bPvq&9eQmm~I*PaU2(+Mzc+ z#)~IjHB?l=a2cxAB75k3=OA#)5$^X1dgiL&3dZyNt=$6Gtu6+;(@tbGIWectnZ9)6o&{q5=GZA3}C&-0_vbG9)_d3$mmFgHlvVKq4lXns6o z8!J(dTfDd9cYAYXUdgq6OR+f&i}f6Vf<-M`i22K&G_q~T3XR=44AiYNXQQp&qN&es zzW!0xxsw4&Mi9Q+`F>-cN|)QwtvuqEbZbH#ZYe7kkbugaxAp>leYg^QK3Vg9p0<5` zCVqLYXn#IwXn)zWef>cDdNPdZRjyC=rELjXZ3xN8=9T}$b)25s+q1K4owo%%c&tfh zi{XZI(`tFaPwY-s9VXeo$1A-LPZ5|9i%nD#!NuOyxXYgLge41*YnJb>H*=0}bB+R( ztEq4?_Efr^-5E_g$dB9aE8~FTe4n1C#_(pMWPj0#Qu?f-h~i^ z4m`TkO3qy4yq|QS23<@pB}X93p^g_^HnZ(m#u8XxI{TFHKeH>%dA9gY{;sUAh)FyC zJ_oB^TFF~$$6I#1t+Zj^ zfzC%3E%;71W%A4fu7{Nf%H5uhrQP46D}0Vi!3HfpCtsRRZkl-dA~_xsJ50yhndaM= z(HoZp6U~(kST#;SEB-q-@`a~6WtJS9xIK=TD~y|n;*UoFZBZTU`?&g1Of6N0nQ|RR zOeTb&!8|AH%=Zft7}Jv01^dlzz?SW?Rp(tFi=kdwc4{k$fvL?hVJE(g6gtz2D|^G* z(vw*M_NFtLjMB_AiwDb%1T0?NO9{+IqR1Toh@!8d4DH#A2Av9=%AK9naC?-_H54rr zNYY`+_!qU+=wO{f%j4BB++U^Ex@+uLE4m$aHZ!bh%RnO&$E)7(n|Q`U){km0AyPaU zC}UXkk*Pjm@_UX+lJ^QSC`{z)DzpBTyd{0&fIaE!b|AxC#TWyTB=S+X4h*C%Cg9#i zc2uXA3H@FtaH;LMnTKHYC+OV7AXul}Lmo5Ym>~XbL(mzswye)vmn;MXI5Kt}A&;F-06&qBG1GR#8xW zv8r&q3!$KtDM7_fEpbJP^%Ha1#+af>HAD;MsPph>e3Pl*1DKXbLC2c&uvC{)ej-7| z8BFd_+&RB>t9yDp3`J`(Izo7JeO9~dY#4u{gc}#cg>ZIU1N1u6xsf<*WJGVvJ+JpD z^NJ+hl?DK;n{%zCxgMzoT`^oMf=OYPg424(dr$q8j?Iw?(^_6<-i9p!yEq??=KK9r z>|KE_m6oa}v4Ntq%g(tvpz9S(nNvB8$G(zOM`hrt<73|~VI3RYqr-}mBc#H0BMttU z09-9!7JWpF%M#fyX@VW%C>s{50~&0P63Nm=LFGEF7iT)lvvihY|A>jlm^`Nj(nuXE z2Vl2(;}O>xmS$vq%CJoi_PJBAuM3D(=iwzKCR@#S;>O2Cs+q&G&}vjaneDV20-6W@K4(Nff} z?>x)nZE*FoxAK`S2l;^=OL@H|cSGjV-I1>+arm9cNK)k1& zsMiu(Q&(3pd=-Z??JLdWlO?IKNYNU+`ddf94JgL~5bVgm6N6x-^1R8d%`pjVN%0ik zE~8Qd%PrOKr(e}Ec&r^1bKTM{&L&9EC-M*+EpiI2zbWmb;W04$Y^$fmTY0^-88Y}Ec>|(fYD%@{# z)lN*(Sq*NsoOo+2xm<;`qB@=ZielKZnbTNGx=00e^3okFTgTQcS7O)ZHd?AqFa#TT z!DB4}6U@7A2)NAX-|<#_R4vHYFa}&-=Cx|sgUUSGOAk)nEqrL)mzp2SFAD>M$QlSUfI64>a_*R<| zS>px6M|~LE=C#}(lrK#Z6v*$%e~xfU7!Gjf;QhUEI^}}OiT<&j4NYD;5&rFKgRA&z zQp^5om0_vdaD(*9vOVupmWicQ%4v<7D__B@%0eR2P+`hq#R7dn)RsjMY9CN(T)K(V zqy3dCzZgnz8pJz`ito@hm`PO-%4igxL@oO{86A3cB;OXmh2hYpJi0 zJ;_uX;IA%c0&Jdm_5^4g(qY1KeA7@F2D**6*Bdx%8zyqEz>gPT!U*&MTdO@U2hADM zYkY)0KP}RVsp)X(6SihU)zlopDNH=F-Nu@O8OiVxcPxX0c22dRH;VNK5dsu3sam7# z)vX3a`|P=&^v;!;U-%|eKk&mYm${Cn$F85o5w|2C+@=@l9jsIIf;fs8TKhbD?Na(EE~tl4c~~*Nn7BMNTEI9y zI@W-{CH5kKQk!{8V3v8JUJsplrVYddU|-J$Yr%U2o{cuFbJu`FR`F9C;-70`BZT}V zqRvLCy?^VTORl{Jc{Q9&?+h9>Ea4WUZ*|=ni6UF65w_}>3{4c0VX5(*L`95F4jZwr zrCchShEKgVS*WA2sSWGdq2X6$@#w`T%=Bfr`{N1Tq5r&J{LGYI5lWH#)&Uk~0e~{& zq+x$q#bdOvN+$b z`cTx|EGS@PpoJZY+n#{Ea{7K4siZ(%(C8Fb?c`;96?EwJ6-p&G62wqpFdj8w#V`F$ zC}ybD^KB-zRbwq$TMmyJaTkqayptK&zRFr5`R6Ndu2lxOFr`N^Z)t2kKkEP3dG{@|mkGyZ_>i7EB* zu)(?ekyU;{0gN35Qq{2pHqeHR@rLj8w-21MUD@2zD`O_$7rPcAU|F_Avjfev8 zZvQz2PCT?+?y)KF+1%%Xv*h^W0=;);uxibIr$ME_UHOC+I~*94eOA7&KmDq&<&9gn z#6#rhzI2-WXc+vIKL;Z%q#uqtjLd{7u>I}us2X*4=th*NRHwwr7slJ(+IceR)n_DG zXKla}>85QCyiVGv7p9{*JL@2Dhj9WYv0s4OI0o0TW@-HY*n8`+sP?vPSh`C(hY}Hx zkd&4-2&FrQp}V_F0Ra(^22rGjX6TfV2FV#Zq(fTz9oYBY&o21ud*1u|<2{a(`CaRZ z^NN{S!?0Lued*4MoXLX8s%S3%Xm~y<-?e9AIDc_)_O7T)b{1dTUAqXp(;ZhbretdA z{@6Ag?Nck{qwKxbz?y~>Tn>+AcxNp7V$7s8DhD~Q^T4}wM|aNSn_r0Z=7}brE-w%q zmOoJYQZr>gPuJ@UE}Zc==YkYJun2cF z^F-nW9f6&=6GcpDg%M9-f;1+I){jm;uucf)y^i0Q=F}bo_O0$8{BYRhC(cWd-ahD8 zJuVJ985aIVS*dv}$>MJO-fhJ(tf6$hC7InuEPFIta74eK`J|>t$IaF|!L|J4Ai>t< zegtW(0^2sM+vXrYiuhMr)AIMjA@uv6T$QP&J4eRZ&QOld&E7`#@_REj`3uy_E9Ke5 zUdyHp+3}fEgP{Co*mRzLu=~t#n_ac-e4UgqftnX8`RQF{9i z+g^EKI+NeIwT|=T>0TDd^Bl*a^8%m&I`R*b9d&~;?#HN#*3c!?tC1A$S|VL4>z>nK z;XN+lc*sDZJ~EATNKz%HNufUO({N%)Jjj9Er{)}`3{ZdMVNzRH*zJ;`&wG;ahDN8q ze&og2>**(IdK)r4u4ir&_m1KoB}^5pz4M;faKuS4)7{dK*Wbuw$4wY3-lqDnw8XJi zyNe7Fnp=J)KP}qC;R3(b?DO!1;+gHF#yYQ;XH}+~ApO3{_WYs-7LVMu8oOf!Uyo*o z?&%on_hKTKDw8p0eD@c&dZK+PH)rf%MO$|4B;*o$4=*l(S+Zhos7M4JMvDd zB}IOI$w&G;A#%$K32-vz(~XkfEH<+_6Ym3AcSI>TlXYZsK`I(K?y@fNao&4lvv3}+ zy-&qwztn5|kwcVYCfAF<6=Zw))o|Syn*P?)wm`4aCU39jIK-#D&v-69*Y(Gawr-tj zLw-d-wm#dKM|9oewDiR~ZW0IX`Y&4NkCo=uk6e!4IyOuv!l-PsyzjmsU%%h%#0$IM zypQx8=$~kL!Rbn&#_h@k|9K<>zsgz$!tx$+pKOyY#;=D6jl}*lZ<=hS7b~eYg;VGB zEKdh_`A#-Z?}d(R756^x$SJQLbmX1-^<%`Q?fqDOB>7OUxu;c~5VV5hVZ8i>)kTq* z@*djQHwP^01nZ@S$j&geV}e{6eV8#oLj((y@KiFx!`yt5 zDI%xc!CPAsT#lx@SD+o%A9H9RZ}*_13bA=KiZzGt6kDQ)9-4j~vOjqpvUnYG?>dC68Xh85KuSM~MX(+m zb|BH?L6^1}e4j)#P2-oF(cHr8;HdxBMo=)G;hdz#FMJZw|0`ltSnz)hAA+O)TL=n{ z`Y!>mttHfGPO{`@rp7NNHZNupQ6enBo8bRtwQN_*e+!`|bCP90Gc|t=uz8u0i1J_o zl7jJiTmF~T48Xbn76PU5NQ5;u3^D_yaY+O;CJhV&rEy4jG*azrrRl9W?*894ITE*61#{}t^=P0wlC%^AbK27N z=%722wrm7*`qK3npgWSau!V3&(e)UkJCe6pg>a_R^_ZbMQnVC=a2C<^SfM*owrqrO zHq!Ojp*vEwu!VB=)Acx^J5sk;g>uf&^|+xs(zFzWa&FW0c%eH1{tGSs|76ntuZ;iJ zYyAIB{{Q>Q&(`Sv@9iHUR0-gAP`Eu*O9w)f0B!|g*+T_&AlM1u7ErhyltKrBoB(bD zVc9`Xv>|8l;092*Efl5=*^dX;fv{|$HQJDkcyJ9U+ypdQ+g$#^gX z6mAXG(uNGjgUdl!)=)uhNKZVt6cla+rO<}7#)FGNSXR&zEl6EFxDXU>3597v%HzQW zAS_F0jTWRJ9-IdXw}2*TK|aNUb3j-YP!BCgN<26l6mAaH(t^B?2Y&)#nL`D&AQAE4 zkDzcfD1{azC?1>v!ZL%NXhOW=!D*myQz%Rm;uH@~0b!X!YcwHN@!%v-xCt~#6Ji_> z{s6)+P#2lfGl>qBAcko`EY7YIuqTB8ox zhy#0o!u6m@>X5}aup0o2ulZgq6Vpp1KWVYwV^OINO>IC3WTK%tx1x{2i60Ht3zR` z5T`h>4hTyfTB8cFiUVtb!quQjsu1Hium%WA4eFr^(TM}Afx=axTB;D0IIs!`OBE`p z3V9I+egz6wfl{bKq~gFzAS@N=i3&tG4y*tQSBAn=AUtv47a%|T7ffPf$3j? z`d@*7ufUlWV0sHszXb?r0nRi7)0=_%%|JjiaHa{E-UQTd0s@+VGmXIXMxcHpme*O~ z^v3SjT+y*M?GmvHizAe(pgv1GjMRiV{F9a`e z_q3w2+5UKYI3RxxR`|owc6Mnss~nQ;tUSmuivg!D zkUy?B@-5F#l4&Ipw>cwbtO9WA6-{xC3rq55umax%Rw_J$Ak>P(sT8WWVq8`~aPtNbIZLqV{yDWDI}BpW>$=rqm*u+E>_5v|M^p%L2)T#_ zAD9ZH=jnh&RjakU^BgKpRHU`0QX3Ri3kk$jt7Xolf+^w-D!5M*^OVpYfBBS)=^X9& zEa@*BIZBR?m%-PT>1)gN27XfI&pFp?KM^IIlKV$^9;hZYY%~I59H%(kCya2 z4bM#6XD`t*^LW;1BL(HMaKGmS{#mqC9e(m6NRU~Q`h6yDml7H%C-Bkm6Y{kTY-gnq zL1qSPMHmrOrJeBum&sOyCUX3jQsdXsRwR7mlWjJ%qu~XVnz}i@N=F&fPf`OhanK4B9r0ki@PBVq9BvvYm1xtm)}9e3S*@$@XJ9Azzlmp`^hg15fL-& zess7b4?;6?>s|b3;*1FX$gKqUGU7xCPmmp^(dlRd{O%ymqoD(6J^W@7jL^`jX&uBB zFzk_naPWD>2kvko1!3cJi8tNZK@7tBRz#=ar-2}W5=KO;SGA0u0tx3t6)yNmptLuu$zAtWsn1J=&bwZ=dTkzB& z4*xX$W+;|IgT^m!hOZIe?yU)4>pu@WSNsbi6~gkLhjq%y^(99WMUX8be@14O$iyI= zYBUol$!DmS*zmoEnBcuzsRzku55?$i1YpXk_2T}`$kK$rFK+3~PKGfL{@NujxqLJ3 zE4|T3f2dDzS`>D!-g?1$t!9k)ZN15C`|5YkfAe_yG4D@Y|L`C*&A8Rfn*C3+o;Jby zmoUPYj9g69>X}kFKX8~MGBt^(7R`D}m}ud1h4%nBhwrNXk?oI0hU;&udGK87U*_;T z8{mvAvGJABrSi>q+9db-T=8byClI`MD0VZ_KS@0(xx598X!19+!xP_s>icZt7Kqtv z{yRI@;)9*g2PLenquI>fGEk~#>`Dca${a};15L)8Qdgf~D)61;zsFwdbC%(6f}3kY zJBSvNCOj>AeLmKDVQF;9TXLB+?km61$aJWGt-h}u`@8sW9*Rc(x0(ZrZZ(%u|0&f! z_|rcn{I!_BdWdx{|D)VLdl+T#{Joq1nC&-{KFG~$@IK;Y?vQx^=n_{Fm)he_Vjoxm zMLzXFF~9mOyI~}Xj2ViLj4ruvMyGrkGBG1keQ5XQnK`7)G2bMa-IaC3q?j*z zIGu7>_IA=@De1e#lGb-Klir*WzrDnYk22hrB?YKwqXo^6k~9|#cxNk3tOG}WO;n%u zTVLo{)hDIHdbO?&xA~&)pNSLO?Mud8l91<}9m(ZCtKHkJY!N3ezJTlWDDuwumGi$( zx%ZY!eZk}m@Mqx^49!cVSyScSjB_>>8xv!OcYGwi!k$aNN8 z&vJ)2B+pLlFs~_fCNHgK4^uxYUV+y!^5vJL$EQ`wy(!+`BS#X;wzpwFnTO9s76HM| zJ8Bz>!K$bE6mQPH@VNnvP?b^i}!d~^%bS$o=H;9V2@u2z2MPc za^xZVrk)mHgLmA#xZfb5nI@1L^)%d>)RIq5iB{bI40)bV4t|va{|)4igmMbB0*0Fi zB^aNW@RP(%5MwYHneab|>mk}>e7d(GLC5N!gZ%C;`ZL=5{vVKE-9>*&%itdtq>F&e z7#$@pjJS#(#1I`R&V$&Aj?54pUaTCbf-FJsO^WuezZ5be!8b`-Tz?+q7W~6x{9y6B zh)>WLY4HQaF%jv|jcM`y#SvRr0?&}<@#Ms4&-^x!KH|xV(*E+BL^8t5G4e)9M3bV4 zb`zgPa7SyUj&>0rZ`MGw;9V*V^2aqyktAEfmw6oY1lKS^l58GdMj!|Q*U&3aQ^(Lr zl57%x>3cA_l;O0Lh87ze17SQidbnguws<=^^0ZI!@@iCRgOS~p8!CTLGmhbv=(pKC z8^T#dhi!u%NZIl?5drPqKb60`qNb4lh3QYEaB+6O=Wk@c$HB8902y!LeW7v-uL0!S z&Ak3efuIe7K+0Rt!zYbxBXu)4w<)-)2>t_Z02hFq3yZL1!k_j3q5g;bQ_sYX;btHyE^KgKZvDQ`i~$}Q}06K7>2XI0E!z!S}>p2R8n zzF0@t(44mH4CBQUgZ)54j=JSJyDastlQ+$gL07WhNmU(Q{CNBhNM5_Hql}%n+otYy?ja;bU=LF z#;@etdNSzX{+|Z_S`oZ&KUesh`QJwIo9BM473vH4%x{K)Av4I1;bsK>KztBLc?;O+ zp5M$4Pi&xR58vC}4Ae5FTiD^I9zZs>&8L3>&!?V+>>fR?*tC{m8k0EAO#c!hg#|lQ z|G)$Y<<&mH0Q4_W|3lS8b93A9i6D)%ZL##uhM3q%!k+>1$pLH|GgN+_K+2?MoNINU zy!G$mzj>gBbKGji+P&4>UH+$3|KyL~viM6efAi>Z{A;a$H~%ufA-bJ`r>v#N+tTc7 z29jUr{T@$)Z^30EDQ2@|UwXSwF!MC@;cuaT83sH-vsBKPN2vU_V0`l(S5?f-XkIFa zXpX!YI3xnMu)|Fn`+a1S-)@G%0~PrG`DUPY1G#VQ;6vgq>~NF8TXvuw!;Kh6gjtv+ zW@-n@AS~r@iUh=vqoN1^nza%3TOe9LwD%Gm9ebjreJ;Mno?kANqn$OYs=-S4sOMNH zD?rPhrmxga98q1SR3Rd!vvazj2}jg+pI3Zq{p90n>d?a!{{-ha>wfsJTTh`?Vy5s5 z?p%4K^;$$beqpDnK?D0hA_27nsFwb>@qj83< z3fW1=jY6X%oLcVjanr2iNPRvDD4B6qL?i>>t8op3`tyX#Uwi2yAD7|(*cs=kJQzF1 zG0k%^$2t7#QB`Jp!c!a`#pz{gh8PYg#T&0)kzqg9JyCixb0z7F$h10qN5Et62`w{--D{hsfM zJ|s7*+nZ2ATHBHMnTdK9pCE?3S^EIF^Z;5=B~p%cFNDFyMwUEWQxTFBy4R zV>8H1BqgWDr52-)9sKU))|_ofOwY_$Mp<{6$6Xpf8kc2QG{`N=l+4IG&$!p++G}X> z4MIxA!^k@|YEfExlt|Ed7|1Q7#f!#od6ZBBzKav1KSxrf<-}2Ku+%|tbsYNj z^}7=HrS?TM&%iIF?{bUl3z^^ecS9)bK-1zp-!tBbQyxnW$So$@%F=(IoSx+-a+mCv zlY(_px`fc%4v@c=BXmRRQ(DB~XCSB+w9UCv;79U*!SmrA`QiQWSqN zHvCI+-4jp_g2)mMGg2gf3S8k;muZ}_gZd8cC4)*~i%)KGHYPpUt3-^+&^i^NdO?X? zovirC7mv`DTP-sm8<}{~Mzm8YIamVAfj`~201FWT^~zz?#-B5AviJV=ke+NU#YX6w z(=O7wa>sM2(*DH13hu@Z0?gaAv#6-kq7%RsCHhh#0VbQ$FShXht-nj zdyQ40ZY^c+gnrI6xu`s&GtbyT`xNtStV1%!b`ghnwyVzH?9&rsf4<$&jF@lyGjF9n zRo6G0GVg|@#e|i|@^4^EPiJu7jbZwUnv(gA(nf~f!FgKgNlNT_zt^Fv-=7G)R#Vv9D(|g=qNOjA;E0u4h#H zUHsdVEfY3ip7<=?Rd511y4ckmatg)q>EQ~a#xRdZ_z_oG2Ha63?%MM+sM4}s4ehwF z8OdR??UJ^H{8 zWlJG^U&JUo->LCUFn4vC%{aXh`ohhEKUiY~1iyu@r2wg~u+WS82Ln`lWAk-+yJJJ6Q_1Qt%kr?4 zp%=WgxmHCq>-1tb+M{(vCbRFFHonkCmPBDkE1NU1Mszy43;8XXWfsCg{|8 zCjuiXCO?Umhngd(JAUQmr@t8~;R0K;*9Z$td>%?k-#eck%shYTxb~SE(Q>FYa-BzO z#PVguse6!*skXcCVl+VBcDr9%H{CU|+Me{hs>o>t?er4TyD&txcT!ROPS>@=S0E_# zqiB3^eZPKpdrHt_Wp04=-jbWoyS+jffPZMBn)T4W$5&J=8KWse*75X5|MDcZBKHf0 zifVbc%zE?8O_riB{6$6I_Hrj_6wwOw6Dc$MDvL&v%|V{(Ki`eGXxEX{VW^GRs1LJp zPqDE$z>*&T7m{AqeO@yfdpqjuB{~xBv-Rp{UGZ#<)y97Hw2IKQYTL>1lnR!QnNqux zre0y{P~ex1X>23Hpm^sp>Wcn}Qt0@r$Ol#)0Y}H5%3tGt#)uZ%qnL)Dir6rZbNWhk zJw5L`(N}4`{LO9)PY*q%49jy*!NK<;HhD`*Gzmm``Km8ZmvVD`lwo8lg(PP|)b+j3 zRry0(ray--QO61qW3@|H>yw7IoON8d4YEDZZirhS3Si}yR_L`Ke5ku6?M>gVU^rtsbal_1rbk*(;@A;x*ijszz$4lqVGXyX>&QMAUb)=|$ zgirK?pU>P|t3K_oM@9E|FFZu}hqEl;%sb$d0f;+4u7PrDQtkZ@r|(vj?#*m->6Eu@ zhbN*IR&S=v98BVk94=@S@SQpw2&MRz!Bj@J?M6FbpA53crFU{5jnJ8GSAjXZ5#{8w zbKF;zzxcNTUWEI8h84=Uz-W%CeLwNpTc!)qJexcqJn!NEH8l2R!tgva_9>^@nDCY; zOZ6h@7QNJSAA`p%=%ae1tfwlUPXXbY6h$?;FuHvqRh#rS9wueYgfF#a>HP<`-DBUS z1}^$PpPz0PHTFk&-K((J{*(=P2(C11n28+Pwr4(iA=Yggd-y0Jcl)QfzC6NqA2}?5 z|3rYwt9z}AA$i~U%k%D;SbkAjY^Md^%(~@rSKd9NOBeN|vGh5|xUrPihrvB}L>Es{ z?vE1-jox2Y)>X`W>87Poko?6hvzD`8e^~O^oD<65r&=~d-2m-iIVSXsb zOFQ+fE}ZuM?%1H0jL|x=oXw%9P|>M>#$ZAFxG^y?XBRxNI(+`9W-t5O*hRK*!n6x# z=tZYzkIu>BxKjajqiwi)ZCH0+;9g#-Ce$2;(h)BX-gvm8N$E0K zk#F?E(wX(}h5z2%N{vAl4|E?oiPCmh*H1k#Ylf)u5_Y+!CLoXUC9wM4NN!jThx-Z4>ppH}RR! zKi8hK>4jfXtfXkVvhAe8PT@6SaM>6*=kj8dW6CJI&b&tiMm*lAa?mHz7W(|8Z(Mse z%Z{zciTH71YaV;DkvAW|;a7zoc1P`rr_Fa^{*~DM_Y;i$4>wUm5Bwoeb9Kf;y+2%&W7o!L?dog?5?85oymidY*c> zm?+c4PmhOMJC}D)^!Eb#0qsN|2l*%uBtcec_OJwBVPdLJ8l_NTDu&^;d0s7gPyP#P-Caqp&?({;@jGX$X1h^3R9H!O1kJfi}2e)G%|e zttx(EE}Sa;#8s~!4G3yX#Qdgf&P5%fo|Z4}mRPIjPsBZ;jLoU`EqH!lb#(a9LhDoS zO3QqW8((HK@^Jks=cVQcOHo*>=jGnuq-bzHLr06GZe1_4`VyOO%ERh%q!KR8CJRSC zL*oW{n9itJCAL(S+fte$szrCvI>0A#*<>ZE0S3xDIBruZb;ijr!G0ZKKFvSXcn*`i zcuCYyGHJ>F+B3PouhJIC!tF|u`0YLogT6D@BjH2TldsL*3qo;eLY^OSJ}-@v$_GD0 zGXK>E6(`9%FMhZ&mEh~Pw4>{ReT9NufV#?sy@aJgBgIRawB=b3qvyBt5b4h7` zc5jd>M59%unte(_->9~*4=}Q7l@)s~OD&wPJUC81+$ZAl%0&+LIpJK$WiDv{-sJ*x zlEsu1TtzKn^I{f{+SfHw(sMuR(D*#AGE}m{718#f5aRXV%|Ti39hfPh?CFKFqZZU` z*8ygu`|#uyOr2Gp-)64{D@Q2HMP#c~YiKuZV3=uH*Ul2SR%q}1R-Pe?uV*{Y^pqsY zzF>}QByOc3;Ii2EWCPdp{@072or^i3E%{0z)op^hjzH7m4GRv7vF>F4k%uBjJ+|!R zC+9UQ)1l>`g+Er6RlUt}1VbNwI2Jf^`X&-NAzQvYCF^@xqjq;cX`R|8yK3lge19mX zw`g)mQai7ok{xuipLLpF_F`P|?c0e2j9#%b*FmMJLr&%$ANHu_qpn0#?6);Zxu$BB zbSnepj@xr9Dfdo+=g2hp0?%!G9|HFnX3VPUPRPUXYKQE^^)E5=Z zztvS4U&_AOj(*5)N3^IRSaZ`xzNQlETlQLP?bdu zSjkv!p(O_<2#%Zps zaTU?jmoT`0+I8Mr!r5KITIRWCwalutz~vpo4B?al@LC$Bw)Pwzpi<&=shm4FrLs%9 zf}Ij5;?nne_M`g}ShCb|bn)3s5L^eNX$bV*@t==kRR&=V8*)$N76bB1kWV zSbKC0R_#z& zYL|YOQLSiWLWevh4=f*7DlA(gwReB_Yqn&+>`~hcQCe=E7@lHuDPEIyn0*0ziG2n9 zlD811^y(fV>wpcG)31!7r%iXm951t*{M?FQZAyg|BqB2Q05V}dbR6;Jyr{jBN$4w= z1=0?Q_KPY&ab>6w_O_q}*gd>!^6QbynT9Ig4_u4sE~6T$FQnz-ecr{Xmr)0~$!Nlg z(kV5Xfkw|Yfvb5VW!0);to0u-+;qV&5-N``me0W&bL{r1TanJ?i-+TQ;n81KT0940 zj^26iYzbSPetO>Gm1|M!GLo`-D3Cg*V8ULU99E$RnZoWub>k-AsP`0vUtH|+OuzBs zV61cIa^doHukm7aVyhBR<96jf#3MRtYgC-Y?%H9%Z`#PK7FLY~E9Dnhc!GWIF4smQeDAMwvd(g*1j%^_`-)>UmWLwp}*c`oY>ljPQJzS zrS!zCYEcm1!d51%$3Q9aB!s+G6*`vZ&NL^F^*S?9w|v@PqC7z?E#Vvy|sD|tl2U5i#yQBf+n}TmCV%7%S_1Qi$kIl zenH`Pjls0aS9eg5WMYzFl%J1`?Q%L2=O_JE}`!wEtpbv&+Y$w)6|-<5R+A9U zb9_+&zwvB5q0r2t?WRSGb86!YreG7$+b#VsVlxG7go$b5M@LZ)@@p1@&-a>jeb9BM zu+6Ls5H4P7rPw!!vi08g_hI(rm~1R#?XPEa+Ne#mc0?;AH?L`XnWjdA$zMJ7qRFO} z{CzV_!dvLO`>8{QU?7&r5SB<8mdIDwY;YP9sRd$+G!s)>VLpF{wGj$aWW#_Rni=1_ zEYMOzBOrfdZ@+LQ4gSsl&QII;VoxcWJ~wy9VRb`Sp30{-ry<=9x>!~TROQLZr*CTR zwr9KXleh}5>t2XDF-%dGeXedh@)Q!%41TCVlB zo9Jcx&un_ws-Hro4b{=j9qX+h>xRL=DT!wX4noij9_oUzd2D^3od%g%yt% zme<@0T=*W8oVAH+idv`Zj+Czfoj)W%EZPf# z#_Xe}{DkwSqZq$C1fMcD$sriP)kx_xPv_PR4=!v=KGw zk?^_YbmIit*G=yBgw^@-rK#-apvs*vH1CR}%EN=e!#GZE%!}b8iw4Fax;_cgc+6}+N33*$`yAZN?`-yYqbDNlK*{C~aS#;t*@3CxDd4-M-FH9T&%M%o=(oyNzHC~|JLo38 z_H=oZf!Q_wTHZfgo38|F16_0k{^cRd7QXqP2L*CV-SHjes>S${h9sYi{)a$s-gEJE z?e-Ik6Mxalh=Y-RByYGAJam5YKH1zKk6piOT7*&6B5NG85SwsIfF#xCK zE4a~CL5yq--pVsg{m%tOuSV4$tmnT!P{o{xJWz!n{a4M_)HfehPdbP*@&5cL z(QvP{A%JC69o|gDfol5+3(z~Rq@hbgA6^!`Gx9Z*;i?`CNmRs5ekY#+rzS7bY%R{N zuXm7^`P{UdX@YezErGgi9&en9*6)wX7bIxh&lHvDZHq=_pujfcOl!77%_7G(;f!xq zLS-P&p(E=sAPannjmky#)c`$^02`H)tkK{XqAq|NPOIh|lt7XQ z&5T&n)&K;oc2=@NgYtl8%yt&CJcCaG{+Lc$*vg#GnrTshMA$DmC7SP`ED&NVatiwU zM3-QMFp(u17zEg3gxn*GGf)cP!U$nhQpJ|zq-nN8&LY5;;UsBRLS`Vqmg2;PAMgw$ z3o^hCphK6TCG#^l^PfYL0pNSlf`fIUX?JPSh0*761BwG_*J#lN(T#8eq62B?Y0(8} zkyz0A(Ldq@Y?RUB-Tx+s-erRFStVe;CS#V~EJSizf84uWkn)0ljaG^hc@XtU`4fC= z{A+O(KaB4x&@7M^M*DZs3Y-3)%HLg!Cjft8`V;Asa{u1CzmxqQ2hYZ~LU#+V7t$@f zpFM8j{Y0(wj+zdJe>42f#gB;xL(p#oDoG!{b=b`? zNJRdlvwss7F<;`6GQjX}hTr#PvcZs>fx4(;Bt>}(qRk@+ti%353~^KpAR^|$>z5`} zS^I1wi%HLoldh`-sDJGpry| z<#aMP!XJg@*3Q0FXA#joDZd2>AXAKwIJbbAO99_n?q-OmG2Wg4+KfCH@)wXFB3HK~ zYbGH7=*M_AA5EyJ!O}cWo~!~*?F}KVgP%kg#>aS#;vx9U@@97bNOUR6yEkLJH_S{j z;6@-NqY>QJ8LeqBeY8aR6FOK1zO_;qAF~uC(MKH2LDXQgz-zT%K;y0EUH0ES|BV3Q zbKRe~{^5b-KzXbAk;gyH#_Pnp@tEXP!KGGHg`jU_wox??1o4b5SBGsrmN4gzmfgkCDQlktxkOFZ#P5SRVKtt z@@60^?`Bw?5eQz!w-WgJXAa&2OZqGPA7yrr^awO}nH z(OvBkFC|;m6^i9R(|n1C{!)8;@h^MJa9HU{1^US&%%%gi33AP+Uuh8>SG#+fN`E?9 z!bv3P)uv#jU*@qji!c*~@_#(u?+;rdWM(WknqNpraW1T%H2AygwCSrHc_d7izac@7ATco51#w=%3g$sXmVcYF_ z4vevtdMlMiX~0JRaO-(t2mSZ?hG7rJ-Fv-20&{!)E@6@wk|UI~lCbhB4qcjXx$x6> zKT6Qct6Ty5*9+-y3*K)F+HcF{-j)A00#rjvYcgRzO8QfqH(p2k6}K$#npaEUiWd}o zwK20-ckytZ1x~Ov3Mbfc z??3MLIqdL(_FoKhc>a`hq}B%aA731lrzVIjPkhW>d;AE-awPVQmUXRn%P!A#WHsTj zoW+mi*xV|!X-A!p1$(;g1&(_R;?{krEQ$vtXJ;0%Lo<4*Z#%pWkgyDq3NC)kTrBvW z!Eca}s$Li_pIW5onK4Op3OE);V_2#XT-0_tPp)Gh+b-+JD)_#?8Z|VzhsJRBKy0g- z_AJJ>`#iroOf#UD*@y~_w6vV_IPpABxG#<3*Re5c^ zk+41=mX~iIIBGR3vMjGmv%7!_St1zqn0$W<9WaP%vpf)`lmOcSw-kpz$c(EP!|!7- z2DG_|-LHH(68Cyu?j&vdxl6dHZ5M!Y|5WYB2KL^J6+cO9&b%VmWhqU@)DD)UhtlE@ zZiB=90BOX$9=c>qo0#l%#L(dwn@V^nw)EJxc)HytJeTY{MT*U&F)h4xa( zL-sDqj$B0EGCmC$*T+b8;vZ2`GjZ+jv#`a55ywXKM6mnt1{Q2+J&{B1{MM7hNIr>P zT3Uw2fPE;97eIqDiC9x9Dk8@bkj5w;een$F^SY;JY9Y{OX)cl5)3a&QU_e!x`x4#N z@zjCa5zvAbknYL8f)*`WZ?8_2A|X|CL`%@R4?V*B)>EHN7T}k1%$bWfSipaDy46V~ zkQB9r`GG%82qWhuRcO^6y>I1Te3b8q^1bnDz!KaqLGs)1ZZHc|_`IHm=YN+aBuy{i z?xw$}zob~m=QrMV9cf*M_`~dCh1`him_$Qq{U=f4ynAK#vh~{^tMNJj2cna11(!Me z*rvtjqF;Q1o-_i*2GOfx6-ZN>_r~R$w13H+ytL){IjAUC*_fsiFg0r$rG%s?L}dpo zs`l7)b6eWWHm2c357GD>!uulp60uPesO++(Ja)r26p4JaEweKha zOcrU5D9H%E@TVr^2Ay?wU?<6Ei$);z6xpwQo^P!Zq(MTO?pZHxO+&SgsI%T$b(UOA z)GsP)Hd?vA7?bb*@}5Qa3UuXo07TVmQ+F1-gZ*Llh50?bSIl}|%MXg?+w2r_zIHZs zfGIfI>tFK2>O#}NPZpP1`Nr+Hzkj7=v`Saz-9C0pZ#JOrKQE|rC+mN5*O}oXHsbT~ z=iuXsZ_C>F>yk%r+xMo0H`WyBrVdcc=j#<@Gn(ON>~qw%w>@W!@{1z0QYvqMDV7xA z^Z0TR%9AqnOGhH@U$^vjK(0l<%7yxE_acS4RtDLq`~=rSMH1y@UXm6bp@{s16rzZ~FJ$IyS;f?2 zU@S_jq3=S^WzCL=uK9Q+=tM`?w4h-8S-_9+iqGZFeG~2F^7)pf%@jqDun4`=RQ-Cf zR1mHGp6Dhm_va;8P82YfnDU$Q=4GCHyAPRNViy|s=jB8&U3c}xEIs4(BEgvcz?sRN z;9Y;A(=E%dh|xrJnd>6{vFNQYma(S3HV9iBdTClpM(>OR(VxCIK`-<^_2uqq=$@*J z+iEERk5+>2=fRp6ERmz27iQ(Hc-E_-kX=db)6CBbJcD+T%RMD;mR-y6>-Ah0I?oD8 zXXL*^r$7Q*GZ7wTcso-g#xDGeR5P0)JM#`iy~}iEHGK5pu7uOlB2Hwup`4<8i3;uZ zPLHw8ap&+1ef>pW*LIFj)5Gu9h^$hvg?!9$?o zZM&gBc>9>^AQ{7v$rv3XqSd2R`39`hVyjqtv6RTm6lKrTo--zr$d=k^frjAbrSxpb zCP020m21OLxF%U~iF2Rr%m;xIQOrNm$JP4&vlS9I;_<-CcE=SDK5|^^?S}T0mUvuG z*ZK>2BA>-e6rcWx8g)g3%p>0-Z?7YcLIy;}>6C8Gb3^eQ3!cb@ob|B=Lz)atI2EhAuLk1lYD* zgc>5V>DVG#b*S%CsRa@K$nL^G?GuOOuWNigS#6WWGxunxiQEMo3*d;z$hV z1UQMJ12NVx>HgZCaR`Y+_0@qI7tedwy8qu1wG_*rEM;R7)p<}o?P z!_zYSMqAPK5~I>aKcA+C%&$y^0gkUxW4mkZ_>ey9nh+qZ0FFh_y3{+YYlM)ukra>~ z8K{ZWta(S(oKUL^RD|rJC@ao72|T$Iali7bU6YSga6gfnsuB+}RV-bxB_HOKjkF1U zqKCAz9%UDid>Fvq+E$#{B(so{c9S8)BEa;E5G1C}54Hut?@va`aLzVDo^wEbb6+-mQzqO@K>R3x zHc9InGc`Tu0Mj>v!Lq^Q>PQ0uG$3iRA5r3whO@fW-2m~m$ug6`iJy<&)~p_4mZ6*y zpc_7kGdI+~B#u@Ti)b#`MWDL*W-9M^{xMo1Y>!Q!!|Yni4WEW;=w4 zop06@OrJVGBv!N29=lcI|CC2UokCx}++%)Z#fGPPaZ?C&Y?;ll;89-4 z8-RyFmh(~tHR=&@x>-^L^3$(#h`BOz<(^AE^sS0+zW{h5LU=u7QqKgAVBD`->Z2n* zBp-f2y!e8nlz#BzEhc#?@>s0qavqD7=9Fo4uc1RN0~Jn@M%=()hG#hJR{`B-Q@ZEj zwlqReu0r(}I}5%YK#MGY)8uQ7TGiT4E3Ue_>_S=ZzKbSozQg66dCYbV&I`LBh3%8C zPua9p!nh(&095E@c+~7#54(~IYy73`{;rP zNe7aKKHx49D#G2H(pvwl-|t={^XHetV8z$1yXE5=Mm}%xk+RL6B~e$Y+y1IXvJ<@U z#Wy~|W~DhRb0FyILl#B57h(lEQqkmMk#>0q?}JVvV!d66<5w9CUb^Uw@mw;YDY+fV zy^Rjxg4uxs!uCc{UMs6vhvZ1H0YrKSKTmEyT_K4vB&f;>w|Rs9V9ry%ci%RIW$nVA zyUAa2So}#=Sc4DeyKU#IbDO00VemJ~Cn44Hp8Ok= zQVyhdOq%C@-vR9Sk=n%j80JgKt}@&`xWhA@&JS`aeVgT4pLop8j0*TE0&Nrvw4h*! z!^|lZTF5IEY`;aW1S}l0Dei#MaQa_{+0vhB@x?!FvI1B*lwrWW0)^+f;#~QtVlWlJ z*+PuH9oY_AhCtDyX{cFUAp1jXPPNtI0~Yk615))xLDvxr0FyTqL0XDh#!OjWc|^(C zU8d3i1VFq-IF~rvfY>#B`>{?C>x~+%t=~9Yi8&&N^v(o}1Dp$~CqGc?Q-uI_Arz!I z?Qje`4x4>JG@%R>&ZCuS7=;(R*O7&rVuuFnuj%co41AB1+~pX7)w&6zGfpgRg9_ z=ExL(vwPv%GE1fE&+NY0{tskd`j5N!e_URl%pP0f3^v98xN6J)!IaPcNz4By-K_dQ zxTdWJDrx$1<=VD+gsl7jq#OQ8wzVwGy6x}Zfje>Ncy;5y0#5szF7Eon7Ga@W0BwdjT>8T z7;9z6@rEEJ^QimL)zq6E!Q24ZNuR9VDO4=+eJSLS+A@A0_{Tx^t-o19XMUGfbX`%` zkE@MWqULlJ6&}L+I4K6-%WZmB)cXORJr{F#4>BpaoVu`&*j#Pg(OpPglA-}KDnZiA zGYlx_v>5m_dn$%#znf3-yy%-euui(y*NmPY%eM1CU;+1 zRl}31-p#r_-rh5VdDMmX+l3txFl7cj*6Syt`w!bpAy04G$eBQb*hw!9AsJ-Xw2-eP z#{iqBR4OiP`}v+>`L=|0AXK>%%G;KdU`KT5kofeo6q~k0P%Iu*5Iy)Y(Kf!^@}NVo zACW%mzQOIx=m&jNsS~T$>Ipee6|EVv8N(%4Fas27;Q~lxo?GOhCgV?RLs1-2eJy@N z2v&YbKQTo4cCd#nSH%(es5%VeVda&X>n;_KlDM)GjIg?LOsFeoyWj~PKpS2w9`LN;BQu8o1)RTi|Bg9zaz*lD41C7j0*SvV7R*lMRF30@G3Y!D z_A;>(`9+l~!qAQfbEiq!5nTSi{Z%XO?y1U`T{oKtO9oe=YZJ|88urMKc3?(T$%w zei0kFl7e!DEg>1&B7E|yQfUyI+3tJMy78UhOhH0k2gV(|WpXP+oYZ>pyX!x8JPtYr zm5JyFt3f@yQmKmw>4GdNW8J*@2}BCX9#vvL_kyAif_-VTJvKnn)QioinH(HfCPKSG z9gaCbv?j>?LR%9t4Wlz6LlTpRZU`qVI^Z;Oi_>!?gR4V{) z^sBhx8Y&KFxMsg?4<%ej2>wuAF{mB=>tzk>znLo0uUTLrQEWFl5qKkwpzzUHsdAxf zt1k_(e=Dk?Si=9UkQUY*fuKkh0hE$RZoXg#rLWc`aKD^@gqlBJ`264xS5rBTt#6(E zM38Q+E%AF#`BPI5tgYSJ{?csR{*4&{*iF16hZ4>ci81U%_-oa2EZPXFL7hG_;RTpY z1apxfILI+?9Aa=alVhGslpc$2=S7dD=OBf(0V?&1^rQrs63%jbsDf(|t;c)8-q)A+dX^A1ew$)X zGujLsZiN>v(}~_FH_BO^miPtf0;z7w%`4(2q2IZ6etO|Q*PF7ha@tvV2drw zJaB#S+srTeoQVF{)k?&k5W{7?FsgVBlJa=ZrK4USGWY+-jM(z^KV$S_46 zB~+{0t6&`kTjyD^34Lo3*8sj z#jjOsG=##C6YE7mr&?pfqm96|^nY2oX%8t=Q0w?*NKE?lQaZL@!Io7KWxP30f59qF zZMKQmvu(Rfbeb9%HI6o2?5?joan{P6(>0vgO6AUo^rj;eJI8#!Jr8kQXHz>gErEL4 z)ng<-I)a>;)A6^f76z-fuvBIG?9>|Ttke3VbKRbXc3QCG*ETJyW0k(tUsGhZdTQ%* zmo2$)#U2G=aWgP!y1V3g`SH8J(c0={4n41Jzo>J=vK6a$e}$VJXiAk3yNAo)zZIF) ztHSUYg!Tn+c zHr`%vDXXmib&=i!vwJdA?~$2rL;f|VKnlEfz{fR^IBHjT0e^APtv8^xYUfNM!&9#} zwK9Bl$_CfE7nz|=lxv|jf`nkO2JR8XIklngprU3Qjk4`{tn;?B-4}8jWsS@|#R=vj zf>4W5wtRb?Tf}bQeSwbxy(cEg;LRAx0;g`0OD{{3>+#Z%u zq;Q|5C?$z(kA-N+`im=z`KRtFLcZ58klML?wc{M8>k7zn^Xl&Gs7dQQ7V_H(N#`IO zM@WhP7nEQ@&K3=eB!Vfjl70af=R$+|*r7@T8mj0egR`Asl{HK)S4+6nnkAo@ZO`3& z2%TC6{|K%eM3iC5*J4PFf&={TygN5!+W3c5%Pw%-px=>V2K_@+3Mt1{qeqSdYRd?96nr_yg~ z{dPj7cX(E&xI(!SZOPULt~G__4(tQ57hGrtA^Y<#DfrvZGvSNzl9NH36jQgMy~Xw| z_mtmDrFBIA1{(aLs9brS2_3$k+={`?pxqVT;nxI;p^$mzLmZqe#2dCqm1GZQF)hq3 zr3zcw^nx#(q7azh@|cZ5Z0K10i2^?@&_Z!y3n){u2ROKHsxYZG2MaHrhVrG=6N^RH-at}n5CV-<`e56hbVWnKhTcA)}4`$0(Biz=9n#wv;dm+~UEIOuG$ zv|KTBf3|V4?4^5&jTs0zQ11`jq+-8@F(Q z_wC#5jJ;KA{8$GdN!l-G%eV?B)DPrFA1%6}Le@NJy0NMYy8f77Pg$}j&h|LLTR1U~ zM9AGvZ-u<1ih@%3QsRjCrKj&^v4VKuamrX$(%JLhgDXNFsM#~S7@pfq%;vW9DoF6N zDdY42&-FrBPktXpofNX0I3&AnR)1fI{YG5~dJ$MR06n)MY~UY5aRBHsA1jv*_sFxpk{$dipEj4N+qXB4G($$vv55)FpH z^pV`hr9OIEh36#*sWikBpdhKVXffF155h3oUCp6bu;a=_Ou*PSVjQKVMI_<45j@dw zQUZTI`C^Z9EVBHUsiU)Uk7|EG6kAm&!aFC5(?k>jSe!2zQMhX1aA>=1*MDeYTIzp!h-587{BS9vK1#XpT%?!Ai}0j(|0>>9Dq!n2nA&{Uk@l=2?_JB^XI6~HEuvJCl85!Frp?%E8ZKVj?!8p5Z+kF& zXt)_e13n9M`G(30XsKmvdfQd`y4}_*bDWnSC%B4L#zv(_Z`OJZtto~)O-|x9JTB3x zDK{mWP5TQoX85IGbhbN{)ivDY{_q(b9u;RG+}O9>4v7AC z_pU0JoVFUlXZTkl8u5avGub%8{E#LBtXPX-+Sq@a&pm^>@8DDoKY-$r$O#pqN zch`V*1t&KyFzB_mp>t=0=-mw9Pzl}hmUpDkGpNl|OG3tpt%zmh8@bN30L}9Y$Pjb= zJ=P8Z&w~jf{HAWyKncA^-gS+Ujsd<*y(WBwgZ($i54Jk!NYdI&8%v?r4|KF+wxA*l z_>UbmLs%T=!xQ7k?}Rcreo-rEYX+hZkZOd5^O!28av`ouW`daX6H~kaz2{!Y5O`S& zarC-^$1LnBHq|>FyF@54zoH^%kgnevP)4uUlp(}-xg%IP>~6|f6^Eok(4D#7*G?tTD<;+E@5tkw2&lOHe z#O~^a;Ro~10)deyoJd9=(ZYt&^=<8cz6L?q0cw{Myv0EyhV5#{6aRdxS%*nxTc9## zDUzzpxGgydN7y1E9MXZMT0WpuvYBJ^+m+|E%r$JRj0zZINWI5MTiP0wE<$SARXq$+ zk@&@#A+TleDoPN-qs9T;?Q3)bx2x_+pI#7Vmz+>p*g+9|DyF?56{;=sF&*e^)4W{b zLx^vSw8j}Ma#{2SQGZ_&E>qo`a(xgl_I@)2Gr2!G$l1Kv*4#1#i0y`67u;LQyK)O1 z_cpxih*Qjdf2iT82<39J$6z*95jf}lS%a&?&CsEm8y(sW<3x;ZJF&O@btPszk@#{& zbnSPEI5d#ADm5%-q!FVx>#rW5zHe~h(<-xuAi5^X?%bUv{`Onsscq38A}-e>PZxOL z`EE2YraIDkVVgz!&3ZK*^;m5=I3H0%?(M2^{RsJHOVjdHJZE%ZMkA1eX<$6ZvYJt6 zqlo>_cYbzC_e2;#X^xaVAa@NaV~Ynqt)#>^#ACn~^YxIGQ=n=!y<0>(;IMD05@WT& z9VTz5-K4|F_hYnHznu?bg2KyBa!RDt%j0iyuZyv!J}mA?Bu~9kb;a@O!qnQ?1j9y6 z(su*E5OECt)$2XkL4c4TDXiGzSZK?nX(Cs1omk5ZeC>#3qaTmO&JK#^aq#ztU_hg7 zCo<2r3F24_&@X-7x*0>gVTL2Z869(BdNck?_IL-Iy^FF60ywv7U$*<}`iT0(LZs>HcF zKS!xpkds;q39xayo?}Z$z#*MR+=hzVzRm#TT~rs(pp?F&P7QIcOs~8&k^9S6?UJr$ z7khO;vjY%qV$C{Jh|f0pwxymqA~ZqbPNq&IWbqz75)V}x<#Gx1^n|_ksq#7){Xi-~pa@v$@oj&5isSogVEYjY~Lh7xZ3hilm(YTJnljJNsi1biNtapDo0T1t};{j z6zV&!-+d?Dr3M`1%kZ?&C8qAgynNq|U=$!Z;m%1EiZva!T7%$2V!ZYh`VkbU`(C9H z+XGmK0vq{gt6sP*yuLsNdFtu+&Bf$;3BBoJPmE(x&(c~YSu*GZZ3MXdx5&K^V5I!$ z!Y4Hwsg$`?9GbaG4UWeSBi6j($DP@w(;LZ#XwvNs-sKew1Ow(e@&YCpRbH-S$Y>(o zfnU$ouH$XgIS3~@n~tKnX3{`?kUazwNkvpZ;*LSL}7X*RcYQ z1i#COdI;Jb#ugz0Nqo5G(mo$}H-hqY2Odtlb{xB!sg(rzyRU2B*_0NR29(rLA+b*P z@Ks`+Z0Nj*ZB0baEd0$GK5#eYJz; zte6SVtHw)_*F&zeBH!0r+R<-*bS*2xT5YTKhMee>w1>tj2u~X;x!A(w?*u_N>6lKO zlDE8j#hi9bg=?h>YTkAXoRxO5$oXxXkH|n;^@3>G$=u=$2>}6(Sk@tok+>@2<>M=! z$gf_J(BtokYu?^NmGCm~g+7Wpy1#T^@s2Twhl^{*V`vY~##4W1oBuo%SF?nj)z+w*(_3dDN|$ z)7@r=oL)bEp-5gxRluW6DxzlLUfB;kI2aQtOuL_bdpAj0qMKics1qz6dZ(Zb@^|W_ zq#FHMm>lWcfxmz1?cMo+&vP?4)_E7~(4GuiS+Pnxdle`A?Q`YbHsNNEwc@$Thm%YA zuiWo^#{&Y+%eZ23X9jU1j`rD_ff-2S>dSUZ+WQiIhKD<=s>Rr|?Kk`^I_c`)Mo;@8cc(9MIeD(W3`5L^7>u7ENU5F4MB zX6@xbix>#sxE$DHt8G^bU0bD9HbeW1p&s+vRD|5nnP#_nO|qq^>ELuXd})ZKL31&M z%npi%5F?VRJsUZpiR=?NG(UshkFHg!kgD`7p z(&MTX$GmHG#vJ3pjBT^9*tmJ8>L%7Upe+G^TVUF#=Isz?BuY`Ni=Ta6Fwx8O=moG( zz0CbyovJObOJ^?uIfVJuv1R(s*BxHNy_$oJDUdK%U;VB}y)mP|Fg~@TuGoIzYR7_k zVVDz^i^7-N_KYzOe=1;ayVj3)SCg`H-YX@&5MN$l_Wn>eepYR@+|l| zKbUipd^B5C*@JZDa@lC#V_EgYqMdwS;DIsZzBHEdp5h5p5# zLz!i3wo4xK)II0n%^U$k3?gRNox}<|R2LK`|W*=rUDy8lp#q0|x*LFdtw- zNjk!)CxZx|hvvY_69Zn74PAuHGD2WFO}~V}Ch{^ARs8`#SBak#VEu}2*Fm8tS=Yd# zLCu7jWFEXbW@_~~3AfQJn;gEzB(0zZ zMW=yusHrA%U+~qjFcVwIZX&QD(zgPp>hgVw-;#~O>nmZ$tegm=yaNQ1q`-Fo33KH0 zb|WKUq=)e9;F3g0%@vUFb5>9RQ~`4k+hDnaLdCZW-8>P=IN;F1d-l0bf_C`t- zWPF#rsbLQ_C3N4M0vwFTJgu!Q3vSBUBkONkPgm(Jn~RWfH$!gYL97VS3J-&=3no*F zZg@lN2L;&jpZ%hBz+pm=l=D6U4d=Qg4c-?E29SV%9)#JD;^iJCjUzMD787AmfG{)U z0Q*klWA_0*ACChvpuV~fIL-Wg5q}fYdcRV|`c5X6-~$lqXB?lKr}D7JG2w_5u06&X z)#Y~?1^(LieSQADNXz>hXYlj=_ibwK@8`d$K;PHb-=Bxazjyxv=KmYk{zdtW_7(nK z{hRpxgIT{m1WaR$qEr=j4Ig>LbMzakVf9cxbQuAkH!QY*|-A zed2GTeLNx;hvv8UX>xU-Z&miS=<*?*IHV#4wKjy*A;do1CEz+9wd=23!pzKZqLT6`OI408$T9ldo+Og;UYZ_q+8 z=vX0!?akwQUJIDLj$2`NXC~`3xz1RX{EcZqGg>OvVj4s}tK8!S{&09UBA9vWR-I;9f8L=haK-2k}-?>2%JdAdRkqO>rj%k)Wdb4oDM&a)x>R)+d*pY}%| zz&Z&~+PozLZ%HfH7?h9{A+Zt1cpszlG2;;n&Trcd{0Yn(cy{DHzOw}|ukzS9NmT1!^^L0_NzOM%s2Okfyru}cfp_9^#cWUY|4v`g2Wim4c|_D=Ig zLZ2e+2!}L039Hr_3jNz*vJrHs56Q!GnnO03KTx=S$c-AYYjSahC*18MH>O-D`M#J@ z1$b63ES3WIO!D3_j!^3%XgVMbTqRl-Svw0n5u?M8TS;QY%<1;~#z1S~;rlxNJ9(22 zSSNAxoVS==+VZW%g>JKa>$+ceibLFG(Mw>@uBj1>mmu`!Q4VMO>={N&7ws6#(Xs!c zrZ3+EUj1vCmfSq|OVh73VQac@!p57P6*JDtiK~!~b~5y5?S>xB9#^6*H-m3J~aE%o48Z9iEY zJ&?(sb&_fTi2H{QC%d9k4{3~N?<7FEr%3`*HAPeZ3&zce*ol)0=$_xnj>e&pby;)H@CNA3ik8iE(0A{cPxMTRq;&Q7qAj!s@W|Dk9-_Vid@iqUE zQR(O8mmcAG4p-)G7r#@NT}yh9NS%1OGo@*J3ZZ1Pp{GcOe1sne%@s;X8qFirVb@H~ z7JDvYxWFqLRT(0DctHn(Xa|;dIO!8r9+uhMKVIh)lWovvEmv8Oa&k8g3u3ws0pfExc8}e_^AQx3L0_!b%rrU z=V$#mVIHgx)?agNc*l%)0_r!t@9||eUwT9wK(6@Iq6gT6c+LVr1(S(lnZ3u5!) zeUvyeWOIJkY1MgP|lVBN#4?kLBYkV(wdw zN{AdzW^@V&yv{p2Cok<3WOj*_5Jw(sV#{|2SrJ%8#u9Lx5-CqQWrnwwf=aEK_}O%s zl}RE4=T3Xm>2@}(&uiXd$4vhF%yxEjvCg1j1WqhNBB2wFeWp`csdcRBw`XLu+%Nug zN9!$}z#b$#0^HV2K{yN5;5$g?dnHo;(>zRTFElv?pU5k-{^6|C{s#K_-#*MTob@vt z-)q~UT5kkSC`B_Hq^l5FplEk(+Au*#s$Vwwg%sSpUJZ8=PG*NW8hxD!Dfg%9?7B1U zfgvpMs{<#F-vEP<18{k*MK1BCW<`WBm$p>`S~8|vvIa?_;k5TS-}1|knbjb5Zl))> zqhFF`2c-@XAyN5DZ_F)ysP+Zzdr#aPiLh%<9DT8%ffr4)tzG{bt%$ImM3>;j1l~Hx zzZWzZDl~@Wa5=RAc`WyrG6ua4aE*;1Y_tA4hB1rwgTg8Gk%#+f15r9Hx5Xe6iQ)TLL%*@?)@o!Ye=CH=;cZfBhBNCl4Wx> zXqmVe!zdkszY6_m*ExYmE7fkG>hDnMRrhBWQ5Xo)dOiWM<(8atrctfNRdcmlL3rC_ z7DI2lNR|MYi z2mvhkETV^TANgPZW}eMw5}`N;sQ!7k80CYzF;U`zwE;Ic?0rY*&qx1R_O~+;I|*y; zaMCjgVEwgl52}(4eY%%)^Y2}W9FdnctKm0oI)Y{xwgs?Ni;4~2K$#2O9=RF1fBK(Y{Is!;nD<{AxRxivqTsuIC^e76Cw2}>(UBfK66u=b^{2@ z4jMs~+A@GKTY3r~R0wNJH#(gBd-|UTK_{?b_|r zE_V5oTBm)7u80De0j{=4&a1tkiHD}uW_;NRFsb{{NQ~xtDoK+;5r>*p9jo`+`AUZD z+PDkj*3I=Ke*!kD^dZZ$gDzKnNxmmQ=>UBrGOf|-EgiuQyuT?R9DaUxp(sYUPNYJY z4|OqUP*~twXgF7)s*d2)sjSFfM?{-yO;mqt+?-~*KNE~Hp%ZCwEo9n?8@jIIVRQ24F6yXpg*S_xpMP1eREMYL*%YYgy4jY zvz!RF2YcP8O$D(EVBIc}Ao6N2-1c%1xvH|Rm zUPxsi?%1)yaVd(xj^tB4nFCH3HYoSQi%`|4q@FZV6G7DR(q}yRa#Z>B6r{j~_Dqy+ z6G-qGTPK2W!L($BhNP#qAZWTCXGR(HJsiHB~ zcIa#XKPymU=;iB9>NDt~h<>jP2_naJpP{|?9^&wxJT>h-St{yneJtpzDRkTM<%W7C zx(vu7@0^`Jmo95Ig0osne=tf})FAgktY`*GS=>0+K?}5vi9%!(>pEcvE-kiLvSh3J zkwy0Li}86bJI-M7!yFKZ^^4GYBycz7BiESmE@C!KH~ve>)W9f{f+#tS@~QKY193ZF*vCb(CA@*22w@2`}ww&w5$vYICJke7rixoDE zk;Gf?#F&ZuY@T6A2FDGo8ey?RYMt6hl$5anAk?1^DX}!7K!kpmj5C0V z>n*cd3z{7!)%-R>l_L&aj+-3m@14R0=yP8#T2%HxJFhE`JQC=k>nu*{X-OL3d5lP$ zK_~&x1F+LzkGy^hQOfxH?e?R!N)s>6%udxHb{$Bpv}f>Qc;}-9pD|VP;og!O$tC_6 z@X9;ONW=QW_3?3pYGaR&9@l`f6oG*w{rmECKh#mzzOz|?>8w4iZZ7a7A#a)B5WvAi z<)GuY z-L{tUTsqL~nxIg8OxzmmXc(Et@DZ4`??Pwc<%sFqNYO7?naCFayTA+>UZa|^?g$2` z5<588uj*U$BEc(ND{E|7Dy*vy=6mWy5v`$;DP>R$ytC7;@dE2B#AkDNDuP?``RaIN zMO(0oLm4Af92<$<(Tjr~TTN^=*$=&saJ)C&O7A`pHKo`&q&)$2ql7Fh+Z6RZ5^20q zJCDPlQ(P!WRp1p!t@_QyN%z-{p@hB-(a(tsH5(#T!y6O|d&`Wyjj9X}W>`}tER~8k zS8apl2rNth+5C(dCdp2qwwqL^G0ic+f>#-+x9y6u8zisZm(p^;kZ^ z{em?;!Y*Rlj&yILK|=FZg$~8`a7+r=B3*)mVD|=EaJkTuMmRfLeRyam$l*Hz|IS$g z%C0DfY&d=NuzM4__(3vwnsqlpv7*K)uPBFzdn{zwt;XizA(NLcXIC;rObd&;iIoN+ z*HKN~KeoLQM!~^i)nPYBYv@WfjOH8EzWrqWTiOy+v6Hu0j&4;z8miGfxxdj~H3&af zY0$wSnig%q)yh8=h{%7*RvOE$DN@mcT|IyYzm(D<(9@!R+xQ+N+ka3FZ@`4IlG-vT z&Z9mB6FyKy5-H8GAy*l|2NSje`VNwmT4MEFj_)1_G?t=Sx*alje-S?(8QUGGDpk+) za_e;kqyyT+7Q*-^onym35uz3&rQ&Xb%hracKu?dhzyOzAX-W|D2WquL=#140tOS2?CbenO(haa{1dT8eH}H|3I>6F1R_yoY z01oED7tC#&u+xy^1OEl34y>2p${N5^E8IRm8X5mdoVW#(XtExA4=ISq7Hc85`q z*`iv;9v0#{lb6SEaEcs?t`l4Lx~bPK1DH18MYGg9&w?w}`$;YHK5q$Br`CHq4ru2D zQu7KBgq<2TW`gPcr~%yDZJQ*$191nh9*-&1IBm;vvypAdk_XY>R=`aqCtB}-B=L^Y zBmW|zyq66bM0#Fp5#UcWIA%eh{Le2Z1aAmlUdP*uK=dkk8M?Uri+|ljA)nj$VD}L2 zjlMB&90qGS#9U+IR-;Vj{&@|AMb;a!c?!L1r5hyv=`lvMQ@S#vJgJ2tAHdl7`wn+b z#7-?8T1kPH#oH>l<*O7>+aMH>^%TW|S2~S8iH_ttAZ%2l;Z$!`u#s`8Jy9lL?10Py zHZY7!!H9L3mQLHM*4uVudiGtBuF44#5+qG31*M{Tl9+Z(WCWm#oDBDsW{!hdo8f5owFu6^0AnVRGB2NW^*H|XH#mNUlCUc16 zk6I0y8X(9WN&Pi02<~cHCp(6uSWvv08%HsWywIc)@|d9Zf(&E_m$Le~>j4PY9a=R}bi1xbt}%t1JV9}l02=$8`)x+8)= zfzPMIR_Y+Hc~(*;jolQY(yzY)?V$|0w%?6ypVPbmRAuaZ#`AU-?t9?Bzq64gRZ?d# z`=KNETgMSp7vi*RD8yi%dV-R3Li71E-5h@dag3j;J~0X%Fenq_AjiNhD{{O$$NPgs zl(nF=4Ir#nn$d+xaQ)Dh5{$90E*7{T&}k9nZnRb!Uht@*!2Uv-UY=lprveiBQSKBq zx0?%iu3upA;1dTA528&zkF8qEs0~taq`bY}9pcutMVXkAOYx5|zu?y-@2>%6YJ2G~ z{EVjAuKoPiF#aM3hAwN;<=qch`gmd^MzajO#qyU*;ba;3$XAF@k`eE@3N)N|O}>jM zsBF?<#8--^ydTSEmyi}A?3W14bWQ;x0-GCcy#+^`%3~rvl@5Mt+}3)#5G=&0@mMMz zqO~fs#03v%5FhPpRxrLa(3{) z-2#pkhyXRl7a@*`- zLW$^%LiTC44XGJSDMFoIT#=~w$|J6wWoO8xzj1mxN*U#|)&psef2#y{U^$ew!4Eq?!?rpA^1+5OC*qG7Fq`gKU#a(kUBmBEFi(cuJ(AtPh=3x6`EI$on}vrp59-T(SVR? z(v*4mFpm|+eEJdjiSG5V%k1P7S1)g`1f=q%#6{5OB$Vk*H=+x5yxerDLKtQPwxX9y{c+g6fyXWcp4A8rSuxZ8TWo?kX{TKQr1y$ zCRs62*2~`h>uj9v9H`QPO!*4@Zi_)a=P5*Y+J!j}(JJGO&tlx>;V(q_o_ijt1{+{~ zqJu=b9{s$QCpPgfh)A`1osALg(U%R>TuBoy{F+pG6IgXv zR`FXQfpD^$Q|e+=bLlddclgCh>q6`lkPnl|L&cDqlUE1P!je$U;G;vNfWs6EagEzB z%>(WUwM#t}i~NU#`c@q)NT$NK-g2AG^@lbixSIf)$0pgGr{28P@{Xw3(Bn326?`4) zYBA8P$f(I3!!Fram;~M{1*Gk+GLquyU}ysSkmV)7c|e>f$#fK3v9&?BGRTPV6B?XB z5m>qu5tWd7u=!`mAJ?euQ-nG1mN!0{-Vo%&{1$NZY&3*fXJhF)GU#QjDU;Zmw&me` z@h$v&4CUK3E4xWm)l{d%>wa)}-{0=5aTAL#2^v7R_=HrRHDW36xu>0E4n^ua+p06^ zHSq|a?sT>PVcIo>d#VQAEge602?q65g@bU);|alzx|i6x7E%?GYTsrlL`)8A+OTS` z2bY1VgG`7dc^c#z->FNnM}FRwAyBH2S}Xj!KbpSVMm&!2(P!ciO9SqTUJ-XxZimce zHi?k2_NZgET5<^IS#P1=%3Tei7wD@H<*CTmo}>MI9?GNi&r$;VC^My8dz(rneUmB- zF~|`Saw0w C{tep@&oiJ~itt3#nta1^JQ$QI?Mf~l2kDqLL^2gbm%X$jnDg2{UwWtPjf|4o(^X~Z>f9dwux~wN%DM}%t#s!g`l2#0__t~P|vWwq*^aTZ=XI2xFmT=P&naXkQ|Lqt)qp$p-Kpc7?}Gb6sSSQ$x++5l`DpK8l&O6?-XBy zT)D7sMh6wwa>0707zCyYPW=X?d&qN*d!hVnPi}jr?(E z%gi173;j#@yPWG;xb=bl)+my2+66P;EkC8qma(V?1nHzw{V)_#*MzS9bZCv8x(V5x zo<%1TqICFT!Y?V&lA*dlmQQN5dW2Zt&Q+v1s8 z;GshrVfwLo^c>mE7RdQpUxqHnmEm1K!cW5qqyxcpYBANfpaiTY2$(sEm@8a)=u8jI zlikfCM&^1qBz$dDmT|;vhe67<$SuwA0IXUV5sSizf|v2F`AStu?!PjM9kopcb4YgS zIUUj72@QpS=ewkj3>w3e74TCrPhF0m2%A&Mj0tPsiK{Fi*P~3ATjwFuIM>~31xRPs zd_gQ(N&f>ieu8fn9=m|#U9m2J3)QfL6uX-*!Po88o{p}tXOh1-mHGmy_zXrDT7;_J zd*pT(!tkL60vM;Br>UOnUpeTBRqVvWVmOAmT^&Q;G4dYep3uIUyUv@RcEepW;#vTR zhT?&$#$&)r%HsK^P{#zZMRH9NVi-!;)5aKIg4kW{SJxwb+mxDBG}69$A4-$WQfUxU zN%{LIXQ6@=)RfH)ET*qo$h{L?(MIOf&Jx&~=+Py8I2bo*htB#)9h%Bg|2{>FOvp^* zLj=C`oMdpD9c0jAJQ*Rnx)Pn=_A=YA_|hk=L{Fc3oOv)g`^FvA`6*(`jSY6f8wE!j zu?xWt*-0Dn1yn~}nOjqE6%ZA~5zq#^d+^=E$Qm#YS0M`7yBB7)ffLtloa~}Mad%2F zd%;SkVBRe;c5l~7buViHcL&JER3oV*nxBU_m+^Nqm4xTVj#})#F^{VCz7*Og@H0-q+qE&B5H%`f!J{H z*RXgY3!0gK&P}>jPTS?DIyW*haeKk0J;QN~!4Yc07fZB>Pb*2dP7kyp5#n<}xUi|6 z5^hm2){+4H&~_B0wCK{&i8e3-)^Ek@WxOjD$*|aqf>56eSzX{d8+#0b3NX?nr zv0@nb2mZe4YpRF`nBdC{n0}TnD)%=dN2lm~xoA3m%u2`Z9-ZYT*vLhZjG^j`L715O z!bklXvD{{=4NwlqlCJLo85RsuP40r9p{`aN?yaHG(6E`ki9M3L1I!uj^5_ zhC*2F7^N#B%?Em`DS=pZ6{--$M{=Uz}OPH5eV+aGCk5?zk34zU&Zlv6(HF>=2|oJF0u`~f37 zta`PUVX$x@>S6BOUVO% ze{s8^{q0+3N6Nk=y~;_1lhq9h6AD%(dn9G=-vB&;*iumlW{Qp6h`(QC(j1BzLAI5 zCV2^#?@p*li!!4kV+NB+`Eb|u*b7M>R8Wq;GupUfB(R7>9v`Bc%wli%vOhT9d+h-3 zYuwigS9(GF83b7W9z$O2yOHT#1M^JZ>ICb@A>&{-Sg}BP90$#wHUdD zu;w>onaEC(cOoaX7?NU20OZNiM!Z6p??$151RIuzvw|4x(SSsR4^e~xvxbq_^Mc*k zh13sE*o~CbiH=frYwf=~mnXae-*$o8718?}=#4Fk4z*x9r|wo~p6>g31rh6`rf?UJ)GIE(}=vqGmrRHq|V=5e>^Kz-U2 zPl!m?W6o`L+?eGvII%Wx6f?pqdG~HVi+!U5K6w7p!NmM+=rygv2@! ze0={5BYECK$UbPnaYDq%01mKFl|X3kZYFo{sJ*uj!9*@v6{Yrviq^jcSoE~9~>^QtV2iRr874&oC z84cnU!0CBc*FXFvRqt+Lb8+0%TLaQ*NJDZ$jtkeZ?3((l4R7sZ#)_vSd8S6L?uk$) zsCpAICl6Eih4h2jN72$#l{Jm&GcFt#VFy4t980@pN?fhdwSWsH%*R@k54=~f6pxp# zZfFXV5-r&}7VUT1>LmTy4D+c?kdA?ni{*WO%TkT+tZV{uoyI12qrU82sK#Fv@(8HQ zjSAFOO}#7$G}alBK)dk&ezBEFHq;`~v;&n45`M41`?`|k=H+@apB}=0mgUzt~6bCSe&Q)-UZHF~BL;%;@CDp)~;sqa=Qp1dS+kx{uh)c+h!5vnz z?$CV8m{K&S9*I+oCAVX>^QrW$!9z3&_64J|r+ca@dZ?tHz2(W_Vv0}G>(H&GfcP;X zUc-g>Umi^&KU<1G^V#}>; zIj(QV&VJ(J;;QOD=-fpW@exyPOPFv_QWYQe&2;W5jHL7{CAm^cLI&nF?8~Zp{sQ&? z>Ykvid}VNu9spUT&>JtXHF#F6FyGG3Mlr8!fE;7$CSatq)uwd=zh-K;s4!{P&elg_ zX$KCd!ckl-F_Lg%2PahSLW@;`#9NySQB_$i!-{DewW7Kbkgid7rfLA-O$cxZupo{F z-Z9@FH^ihd)*TDLs4JGLio}_UJUa`@Lrysfh>IC=n;c(d)6Ve{TLH^gTE%@vPKM?U z)Vn|a;eVM%(I5Zt@4m8S{NN^>h2wsRn*X3T?*-FY^s(3fgny3v(R3J|RwH-Bc3V~~ zdfUj!Y2Dc1&6U0*0wu0QuX%#Hh`Pd8QT)~QRG~}$RXG9XThrpKnLViR&jRHJHFn)$ zbq-<=jP*@Pcb;l+yo%A6K{)6EFF0v2>8`EBl7z~wqPKTLWy2mSsyu70ae;w}wYy9= zu0QNhm)AD)VyDDVnWl&4a2IP_Sln0q3vMh9oNej4$xsw|h?iI-rKnsuhz5$(dC=%r zqtpEpkV!RVQn>E30tCYj7}1%M5$dl*$cI1v;U7xiw+}~*h)Z_#PX$lZweDGv;ze!! zPf+jE{Uds-%~lb8t80O?YFo7ySvm4(zPMgy&NR2QwiC{Rb-Gm%!rAJK_DUU~bxI0C zT{W`Iwi&Rf=4yH_dbKcQaqQ9q=9V3Dzzp6+)33}&rtq2Te2WRnYAu#U{#>G09yse+ zFxgWwKgeYDy3iQ~%+Unry2c(75GEoYaGfy~h5mu}kI^WME}~H!Rm-QpFB;Sz-JCOS zntpS%1WG{X*%`=|-5Re}=}uY2#BB357+!QzZt`b1576~44-z1r?f#(du-C-t=&lcD zSn9`ZaI%L2j%;R1c)=HBl|a*z$M02-r46F%XpXkRS@4`L@w?6fyre7PCzKC|CGc;Y z2Qw_%n1s4m)w%pieS+mdTXOZ{q9i)9YkH`BqesMfyrWA={2NskI@V|PD-|rX z4l0Z)*$IE$V4M+*uQ?7Z--TY#>a-AdX^l_AE_Os2RI2%m`Wl|_w(?8|9pS1$?^%K8 z6n?)jMPvX2X7>yVl49FbF-MJ2-F|<8qff#J-w)Cese9$hg>SXi>Sl5q3?{*C81yH@ zVc4Gs^P4Cpp=7zME^*7%R#>{*dk>IogZ zU)d1_DMhYSBuwsxBR#cFHzTUVM{=M*5IQ16k~&UA*UwgY6FSBOc~*6Bj{7yqMeRm? zQA~7;uUn#Nzi%u#LCm?L_PU(%I!(7)v?9k!@9%MP_~L=mo{l?RcvMGwU>L?uu>d_C zYi;_yv7)Z&WEg?6a|uLu(;Huh1B=xDSs46d2m_$$>sfCUjC-T-Ez$ssGH$V^d2>%t zDzwZRI*ZS3RYyh2?8q^7k2mHRzhPYZc)tsW_;j?jdBI_i6;I)i2<*P~Rph~|)W;K1 zr1i5}ptPFSi=l56dbmQ9Iq2#{r{i!K2fa9$g~RY;Z#=id3)PX(;Yq1he(>^2A9l4e z`j8g*c{@`h7_VKk?Qx6hFh2T-H~Mf;VCcmd_z@_4@w_(=;ZJ-GW!Sro6)#2C((Brt z2X#CX`SmD*Yn>fxPTCSPK$dt(TeDdux7*SW1$=!MtV=$xKv%>dw5|zxnL3}U@sU@8 zX{LC5f% zK)L^-;!&v|G*jx$FE#HhbFF(EOu&fwW-X-?iua*klu^2)1afp)ppK&MwHizhJIA5$ zGn&UFQ!$`w3(~dT@Hzrc8TXWNm_FbFsSpIxtS-palA#}^lN{?$T&3y?HYN0Ty5)C+9kaaTyT&S~_G;fgcQyOWj zN`Fe3h9z1qWSbCx3bL5U{I)im?@dK_t@|i72o)m40q}d&&R|fbRJHm#!;f@R9ur|z zlTcZ`X;&9((#Ntb{;CydUyG~bi5?I1n65RKdD~vpQ9xko_;GJEj%X2yH-Zio>#P2ES6eZNb!6!3uXIA_;U1CT8x^emYov{+=N2vY8tMT` zxcVuDFIgqFwa+eiP{rTv%f;KYHcJ>&kTC4 z9Ptj=HqGI+BEH1hs4GytS1=EgpI>_m95-v?)n@TpyGC2S+x; z!m?+oJ_q$=9+0AAfXpPRUJE}{7R5lHpd38{^*(5a%`z!7DWl(7vh z70-)ySF0HTyTH4DGI&*LgYAdEt%y>q=A_c08dH5AK9i%px~+Y7d>Atdo?I94V#x$F zSGS<-SPFRZ@PPTxB+qdXKqYwDlA@?kp&i}TkdlekuaZp0F-@~oZ>t#5WGybS49Zv$ zCU53kPq}#zE@)XQFO|{!>XOH$5yeMxM=G!WGGD)(shSim4}W#>Q2$7duocm>nY-SV zqC`y`XNC%~QToU)fwgS|vT#tQnX}u<5^Ag*oK*yzs@dzKI!3i;u0FyiMEUy&R|gmnmlIo1!cbZVv>Mh-S;XQ7sVmD7tuygbcne*+GC`A0QF;{7wZ%)|4M;T z9jE^CPlI^H8>4V~ndMiPqo@(k z3%yZHQR#ij^ZjvSd$!cl;xH)8DWsc{0Fup1sVm|W`ImH`)>t3BTdXfpXu&9aswAcT z{Wd9|^g*u!8Ow%uhd^&RwN2V5RpO;)Zt#_A`Y&1_RJ^M`2IL=ahIxO6-|@%*?<$rV z5aULP+4dbI^^{UTu|4aXPv~9^YK==fVJi=8+yCm&#n4y1PVbZB1{exjljJ`GWvR9$ z1HHD29h_sTi89E|Do`TXzMv2{W1Z_;5R4R|ggr7ks`uR5+5tLZcWMy29N6R!D%p*A zux^IdA8_VMm?voQy)V)|tY%`2zy$trP+{x^-s}N2)g3AO8V7{$bolpSE$8Up2MZ*g zjC;f3ryv@H<9T!y^)82D5RI=Uvk|2e1n;1$uefm4mTM&;7azV0pq2$r?K6g-O?$KX zIGnwUzamuplYC5da6zd8>$T}09ZnoI+{QX$ge}{4DzE^YH(u5w6p9ppX`G>Mq-cd{B zai%S>U;GDM3(?6hl$`^|_>X`1w=dN7KYVo_+$c?vu0Ir^(kPGF!y}Scsh=EI+P>DF z8$9hyF&FE;+RRdg*DAw@x#qL|q55J66PXl+5hbD(Q7b<=#bDE_D`OT;CMuvrA&pp) zb!q}Mfrn77Q(!7A{7heqfpUOfrF`S{Wf(DNN=nSJ)Ds-di@kmiOSgCj0-G{#>Knax zRm7Un8NRBWpr{zM2-}z}7cEowqWx>D0=#i+WwZhux8>GYgO z!^Wd6$^(W}r+O3BWtP2r8HJiRP%6{Mh#2L%f`4MV0Y*b8~wb*|5UE@f4&&{N4ps6APvt0PMK6x32b4fc~w~~cEUm{pP8*lJ;ETGxNfQ37KIEt{UK;a8a*VL#b%xfji6lT9{& z&~*zMRIjV5r-46qpqp`e2fxRn<>pt>8yjNf6|a`{Ytwt-vFVe%3GsDU2~XQzdsfN$ zUDMY5{eRL<2U9g1HH&+S^s*|4h-F|+TWp7OYNtMGhd5gUw&{w!$T2V54&{(W-T%iq zYL%ct9eY>5edB;S@${{q$?>GCG+i&5G#~>v{u`BS=At9@azPcOUN(viy`H!lFU$T} zcY3Ds^qD6f%*b_-q*rg+N#Zg`5-qz)JeKt=ohO%8WuIh!>SF(gJxh&;_WsNRkNJTc z`APhURfhSm%8m{CM;PPP>-Xp4L4B2ETU{hsaC{tz$@|>k!=5o)7(x|IMOn9At2Ycz zG3sZr`r3=kC=8$!PxfpXg9%&Kv}QUP6{OfUbjPajVmslNxkjuQ4y#fMYJa~#_rt{? zU1kUN>3Qro+1oZj_~RZW^eEjOEefd05b%ZNdZ1A-Ij6m{%pP{ki#O>mC97Pl0L*{e zCB0p1nVwwEXjtk16}(F-@IpZwW!jtanX*Y9={A{sQ@U`nN&a1?RfdGUF_)7d8rZoW z>ZywtWe>LQ3)M?CKmru#-VjatS()=-bR?s;$eWMue9@V*RdvjfGVAHk;p=eL)P5UG z@QbRdmxiDA)+92GU*iEbpr~R<$hL(e@?A84e-*17A>D3YJ%Vkof(l;64s=aI2BV@x zju6+0Wun1POd(qPl3%PR3?Lvmor`d6U1%==50uo_Hm$5bi!BKR1E zx4|szhtbq3&O@b~2PXQ;qDOox2iL27r1EM+U&V2YsG z1$L?U?R|P!JtBvuSC52OGfq%ZRqsHl4wYYznx_4bC&fduGgs<XgGDo)cU#~^0L zJL!3?rUrVIrLZ;8jw~#OxTvhh=l#PO)?vo1q80t;$Ftx^EIthX`B4{ZJ}C)(PG-7# zNJkR@P6$1la0Y)9j4ti$nrsKm4jq?*SK=CkNovxbi zN9lP#tAeG9%*>0Is@5nHur;J5FRdStOZ52{-t1?U`u)jbJh$S2n=iH6ewa!mVNT00O@C6xRT`$8R#f<|E?8`cjhhV_rWdwEw?elwi@jUU{sapxa!bq7ibg3cV3Ucv=j81`X4UhVem1Rv;s5d z_UnU>yR7~y9>1F$w~a3sTYqd116?eUHq2m!ZAGMFKN2ri-n=^c+!hWscj~9Meh_2+ z9B9rj7lx{Ot&9L+;335`2#g!E*0C?*Yx_2S$ZFk2W+DXv1vQSu574Kr4{n)0!$10I8wj0 zzf74Z>I=FEP!oc^#qGkD4Ev#yl*HzVo0!iE-We8XDH#nvUISgihCMl)`*f?1ng=F{ z=XjOu#nU5ylvX`GKT5*3K1xEgKT5)sr%Wn8GvO^Js}xjWgCVhsHS7-P^}@$Z8G5p< zjC5yTlx+AX8jjn&uJ6H6xY9K^I={*e>Y1c`lQHDD1S-ZbCE}*iDMK{UX$1n9rBqOk zsYy)x0mQSxQo8W5lnlbYRLjr^vJtLkD5zXp=676+i>ZlBt~jYh`G%EP9bjOcS*eTqq4@3-!7u7u zzcW85Fl)|+B2B+=(I)%UHW0`HS1(&HkIbZCRT5?|+>&aPu1OVlN)%Q+&tQ(5V+ zPR_~ku1JNMJfs(cOWV7XWZbbeilTIGiD@2RHeFztfpZncg&|f zQiIv+CrE7y?joOtJa*0zRZDSN%DW+sVH|Xf;^kr`AR?9DsoQ=qTOr#6*)H&NKYf1Aqq>$~#&w!FZ!oq! z91(_J3t*DiVCe&4xiw~;ORbVgl>^&Jku zyV2sqyvKPontHXT^HMxP+mv}=8^h0}-hok3;;zVAwQAEnb~i?ZVL@AEVW1M=T$m=8 zWah0E1hmF6Xb(?_)Dyi+^{X<72B=o#_bj}8%=SFEuQFNiUMs;=P!-Yf6MG@{5zY)~ zRO+rJV^Wn zQcNXgrlDWX>*&KgmGV~-LY*IPt(BEQ&#P84e0D4*=e)+wOs=+FR^+Z`^w(r z(h4D>D#{jpS!l5}cC_8*U${4At`qK>{yK-HvY)uE9y!G_{MI*rID(#UMM8p(y<^`+ zB0!9h%DBza3rrJLjE>5=+6jQu<7#D%7(X&kC^K%GI=!1UgmAS%Gu0Zl0O z23d(j$vvVx)6tylBg?JmU_17{1?B=&S?z&|t=1vSku7g+T%ASG%pOwd{T^-c&?
JTa@I)^A3k&;j`*n1E_?mNm=HY5 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�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 F{|{mL-DLm( literal 0 HcmV?d00001 diff --git a/utilities/default-data-handler/src/main/resources/localisations-dev/localizations (en_IN).xlsx b/utilities/default-data-handler/src/main/resources/localisations-dev/localizations (en_IN).xlsx new file mode 100644 index 0000000000000000000000000000000000000000..5a41b5c24a2695ca90d2cf34ce618e63d4d2eb95 GIT binary patch literal 576978 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%0Dh*ROPo3h-= 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

E$cbnm{X`;4f{bVzO(aGz|~B_+#+k%UE?Z z`)SajqNsaKNo{VDHPV(l7+S1`j^3JQIZOj8MII3R-xk05&;!FN72e?{YkJORz5+~jJKe_$S#Lm z>@8qo=VPd&&yZqd#N&Dd-Xu`Vi@ze#?sgUXBC?}V1uIAjRLPuOb|ENhCbBa0Z z=P>&33l_PI2_)9RCZYrhks?fUbam|^E6Y6DbWUi?UL&(A$&IxS$f9^4rGyx1&M zk^hI~22dCNFeV+r*AQsz5^8^HUtttLGP#fy6E3LibTB2a?DnD=Z7R=tLKx6 z{_jm>8)hJLSU5~W!DKrzD~bt`%_Bu#L&Khr(hw0C*P6&k1El67QM(Du2s1}(lo2X0 zDRBHvP%H10*R7{-D+t6$Cu(fD*n1Nt+bEbNKl`c=+t3giWT!CnC@TDl8tbgAsllm9 zIlzV(U`LwPFlU7RxC!-}lRQLB^R*74k$I?G z%+)gkU{iE4PJNH-#%{xN!gc$-`Wy(>;JOc*Yvg#t#*I_#f^}>)P62RyBIV~YxKN9P z%W~CpzI;LF=)v22TeJ!UI(8Rfz-b+Y-_R|~_Z^<&Bm!#&e%n-*?Ak(+HNhFs* z5`8tt@%~RA`d(rWvg>6nyWV~m%>i_rb|;Hq8V`zvMi9!X+-Iw;kTe(CT?yOBlt82f z0lTNY6Z}+MwUOurjy13!m>TsATZ2q7e3^(hKnz;5{BW6LtIX%#!*LfyXyEaf+_lIz zoeAl3;5N;kVRw}Er_qU^WMY@8Wlf-qAzXRGY+4ZS&f{`sTw67Nbf-mt{Z1h(3R19& zr>`)FU8j`jqe;l5QB&ka?Jz{XQp61BJx=P$8Af|B1}NYejJAX+K&^ET_GP3!(FesO z%{(3xc*N={5;?x(7W?NrTT(=l&oS5G9q69i=)1@b&UmJi6mQn7oy%%CQ*j)tun>S)k9j~=q5#Jwh{m}@QE1`5`L+R62FI2wXJ zo`-%1^9Wer9$+kVzcxowpcxu%x!g$s$Cpuj9o4?pX*K8pwFHdzCMdICnQgV&ULUFN z5M;Ft`q1`*$=Xoh>+i962J#Z6kNtHxpa&!#T%t(+Rj_Fg$HCM}wQHtTU^z#lPt8TS z3m>17^2wYIEUpq}v5~4q1-8EoOpmceHCbLKTg;ytEd7)ylWP0eIh5C=KeLB|#%c?@ z42x*Sct>q)GFo6PQ2eq|qt6UkR^&P=nc#Op{xd)Cft}CIpi3)-hwa?VaB!=U1wMdX z#@6c4>_)u)1`T^5%s(?GXYb@@RjM{8!}E_Vs~rXjd8#awFeteRBZfGKV(y|A+YOat zMp)X~jpF=6=53Ov2f2}xz{amy&0(=C%4p+av36Xe#%fulZSUy5N@%OrAbKK{$xx_- zM25Cq$Pr|lU50?+%5Ap?IS=9sQYG3h^@G6Fa6(^zXtHn`A1QOi?W7aFqk z^P>p&h=c5y*WL@lqCl%;2j4lmAyrPQ3yMk~8K_lUDq9FhUP@ktRJ{BqQ3>2qoXky` z+TfKmh)R|yTek|BZ`e-$Y>KW)8-QN1?p4<-v_%R{>SSr;8999i{ZwnP$nu3bMSL-m zGTPg0rE)(t$8+@Fd$eAu;C(a?D^D5;)y7YMn-L{F<2xK?$ni@R(9Gi?=9 z(qvO#MG9FSS%YI1kivo`cM<=FApA7Qn)#F*D(nf-8eTeol6*x(&dk=6pr> zwc0FI`slBtjEZNbeohswna{&ll2xoWbFV*Ouv~3m$Z;^LLOdy^@G-93uO~B9n=s3n zuia$q&;1n@iS>`Bfa(1e!*VxS$P55-7Aqgs!COjUB0yNg6kn(uo;21d@_MQ=SNuks z%RQQYcT5Gu3SH$4y(s~tF0*2rl*UP$1kfiWA%(7uO}1uJGD9Oqon#k(_f7*=mM;-7 zkKql=#g@HA)pvQc#lMpLXSK~%R0m5hY6y%3)vp9}!hYIbs5=+V3>TV(R6-g4H2bi9 zgHe)$AbAOR#8v{=Co)iL#4RQJrS|-HHz4-y41$Bt;pJ>}4jaV|ub<&@;J#K|9iovE zH`$y#K6nIy7?;aUw>QUe@Lq-XpC3W;ru6Zx8#ae9RQY2TOr2BSpSqq2S^*0W@G+Z3 zjj}ad&^lwsjSE|Y4UPwMNIgr%t)?o3-67Z>2mPOc9b}LRA-r4}sFHdOK(bpQ?D=R# zZ{yh6#4&9?q0MJ`(rm|n-K8$S&A(*Dz2qyE##JzgfUqb6SB?whUMis4WJM!RJo@Og zdBp6)B97UoZ_u#bv$sqf!=ns(#rnXJAcp|lOcb2ktNWH4tPl*xXNJk`=+r%%r4qsH zIf}Mot;?HAS%~!ugb^qZaXRrl&gy~OAQ}^RSI~f#e|7h$S(r0~9UgY5R#gd2K9Jl; zYmAI$0Z5{0?E?uqp2R2%fh%Ly)K5)8PG$qJxv zJn7O{_`p7I;s1u}XLfS9drUZ_$wqDYXM|YFNE$4$s_-1MFa?JEh}b*8x{v((cBxl4 zkOCU|Ik7mH!7<5N=>%xYD4@(z$j}GwrWj$3 zyu@_va6&~&Y)>jittVj)iVwu}8>5(4_Z3^&n zoXzdO2Ox4JK|%k<5g-`prXF-t`3C+3G|>xYFbxJZ5Z!6j35PkdFf(IDS!Mq%K>v-N zPnR>cYn=f{36$1OIIKb{n68f#zgHx-Z4y^Vl-E_W(<$%_%Us2EpOM-rB=zRcFj>MA zh_T=$N<6*b)vSa*Wi+T@gZe8Gegz0U%DEM}dci5f3)eEz4XP>aC@Lxmf_Pv~g9>Q_ zC!mNPw2yy9r%&^F2SRtcRb{)tp@M{R%~fHRkL6CncCC3op^V1BA^%BTWyfwo#Xg$-%GwQsK{XbJ|ye;@Kp>)hbP%eueL6t1Dj2-?tMh2|8w(xGbrpqF z;W;-e1bDz#z5_X9se$l5qTnxQ)hpten_u9S!`kY<-$$wcPCQJxjndYGv%6-Hl=FUp zO2*GFRv4mr!E)nuC(GjmNWKtVx3R!gwVC5Xs8I{?r3T)NK(cANpRcQV`wM^? zP0@gZZ#torhH~N@^>rK>2XP+Hi~>dUe3&K&Ks(=P^!gsCQQg{KI!o7u+&8L*H`wc4 z6e8`aR|kJOM>IqD+v|e2OX$5aKb^cHvGFyb>8PQsBUDr(;-;@nb1Z6)MkwK| zd60VYDo1P)<+0H+-9!;)wxJ^RTqo>PUl6e6Tlb)=+*>xlg{t@0z8F%FTmgj75y~wD z7?>=gl?%26g$`)I%&B{nk1i08RIaZCE)|eLy07InnxRbiYG^}%IpVJ z!eBv2m#BW%vf24XM_d9cL#NS%{bcyw4iR&Avf;2odR##=Vo$#yX@=ksOZx5qT z^skm!JpR?~25uNt>lVx`K$L9#cBk=$qW9zr7M3>{rt@_4DU1svm}G^Oyh|teI%K;7@HTv9pABcicu3l$VTDghnB% zf1ZMrSeO~%k-JayW0bC!92TCc7PCD9 z%JpP_AXEcdZHrHk>`x)Ra zRxPIXs(02iY6wT?Yym1?Iqw%k=iv<#=cPN$dN;j${cf+2(iBMxqY%a`fD?Da9$1EH zf{v`H7N*RHM~1L}X9!@fG6(7^7pLrD9i&vx#KF`(tO~$PFhTupp0rMWK&Ywtdkn~Z zsaI<;(MRAVNN-&ucg?V_>9rxGT5%8#!eQI=#%NcBrYU0nHeY5Sa2i)6gH$ej z>4$3njbxUdPo^pxrDGMNtw5vmcx7DL*<0DJ(N07OE|Hly;nq2 z&i;qM(M(WfQU5|IcCGQ);QtsMOKa+(3z0gw1yu-$b{DItXjB_WG-7LY(H#fC)jTF` z4tIe3^2TAx3?qk(^t=Y6pys{XN{BN!LcrRFosHJfHpY|~fV-Ym>KXDh@YhPvdV9$# zDb1@?uBOU8@eEL5l`hxWv(?8rvQ!+2IKIIM-u0m3FN!x+8oG~bjjCYx-ewhQ5gl6p z=xE*cc)40KOKZXjXR%Zy5+lVTPH|RH3t_F}%(e+Ad>x z!wm6O;U2&xWn4_#FMj{Wup(WPv+YJZ>gPO%tE-<`OObPXcVACH`oQ`r!V>~U+(A48 zm8>da^E^F|ryxfBV7XX#|H0Atc#QuW9|KKlb$gSC29>vd#-b2=KN-011(@Hf%&U#j zgzonGy*+vLz1DfIUa;mt@|YlTZ>wnanKZ0Bd4{yWbx(azIr0}=T-H)l+i%>cB&?c| zrXaf`Q|WF7+xEAl3Q{iivt9Po(eSF^WAFFG<2}ueCKm#dbyUkchqq@y#|r7~m+v65 zM%`#0q5Gt_EvcX__Vm~56Z%MiW}q}lE2WJqEhMQ48#BS)bZsr%sM?}}!T1^E&4VH? z%xAzbX5&ib@bbqA4fRZ|8m;S1iyM5b!WIXtomKXL zWb{b)ibLsQkNRnWAl1HZ2YmV=@FSMHQ%PB^>d#*%WO9BK4sz7~QX}P_1B~dqbNG=D zzyY@y2g79JT}-Mlad+z4J%dkFx-SU{eXSD*>H*z{c*4zK0&uh)e3~^nSR*AnCzOT2 zImA(D4I9AJRtR>QV$ZUcw*MxIbE8ZTenZ6)zD%y|yj;uEqnI&2ZS7eC3U zGuP3pliz-4WGn4L=wJYggp8>2Y1p8c7PE8-FAzuxoFQp6+DJmxc8VFYq4x6#8?aFBULhh{Bx5{3!!r<-h;a|5c#hP8nJJ z^p8_MBWoM|Tv)$nI+1X_e~LvkT410?#CT34N*u zKIBQ1hDBqXaUqbz8np3vTC-^cSND7P6z1U3!nr+6z2|yCgsC*5DoM>ksJ3n%CCmD~ zrlBiG&tk{0rUj9j4>wZFOzWQseb^Zpmhn+-%cMa&uik#AZ4wKre7V_H#W8w1#9Dpr zygj|J?}Bp&pAN?(<5C3gX);Aw423Z`1VWAt(+gA)Bs2^Lu)m;^4JECW<0)_r(={Vd zt8|6AA*|rnpS#w^_q(iW$m2k5t4E2<_aCz`Zs23uyX*~n&Pwvu8y@z?y;0M=XSLQm z%@eWt2*KJ4{Sn4YJ(US6L*}*XNQcs8JP4-eLsYkIG7au!)__GrO>HIsZF($-5F#F% z0a8r%HID}$o7%KtUuaF^{wIS<5zbv4&S zJ;W#BsLYxV8Q!~@EVvDmngt8e44_bJh|>f`4#ah9j+)X_HS2kY6uvgj(o?#@iS(au zYXikqmB)pu-}eA`Dj@u%N+}z!Qk=QL0h2lUzSECv6lkd!jO&NEA7$O=LhEq`9fhJNCMpj~Ks)nyVxqj5Zj! zTt#qn-P39xUzD?q&UnY-m*W z;4a$v=yBsX)+ow=35t_>Tsf}D<20;@(^_j>zNZFhOBdvGqOH};czs%ivflwBKeMQ?@t@$sXEbU2U!pQVQuQYcRMUJIwgAbp&n3)bNiz3+XNF zYu?Q|_7|en*sZ$)(h^qrvOauZ03BsOAK0l?TsPjS$K+`rqe_B0KqN|&?^DO>jH)p> zw_Rm1=|B|~u(}PXFHzeIaAMrb&Oe{jmaK;BSyiExC18oCO!p0PTrOku-EPPRbr)8*N0=H0!<8 zunJtGYcOCM)hdp(Rlq%;;D`WwYB;vaOzv&SaoTgGIG-dr%6o1RwW)#I!c|n+N2b9B zACE&!UZNytrsdSEUR;3D9+BoT7dpAhD13;1fSlGSHE7jpobG(;-Lx@2n_5C*H{H@x z!HV@sz53qIg*F59T-hCQUuhT)_g(DwYAN_wV9uGjo3q-|SutT6u4@&02-yZt^R(sv z;)eyT(H~^Q#ch~qyqad9dpY7=HVk7z#&ZsQEE#6n?rL&=OWH|pII;5v?6nbt_^p80 z2liAXAg#UhooU!v_L)_@prht>TfVb-XwA#>UOpM-4d&<28TT#!fyi=}|W z^5&>}nXf3n2VF5AIGAI2mGFKsT&TeK33S_uq+P;!N^wgg@&^SR^}bS4=-FMQop*S^ zZL6A+87gJd``DHYlCiz>hIHyDe4^;`+1#_F7Dq_q?aqM)B$~Zj-YB^JFc#WcmoN2wVZk z-O)PRlG7wVPirl%9|5zPR$n67+?rdxta_6T7+z~T9nS=B<^t&gF~;$n@-enmPri8* zTz%{ZqZ|#!_)gZm>@z@V0p1)>3;USCra;!CPEG?{44SFY0q-OjWX2d!7!>WHiT-{6 zE|`sPMwh|a?e*==AH+O3_0n$?Mp+NhK4`=#X$TPDU_#m^Ja3bw$7l?s96crwS?lCU zWrrz)I&%!2uWByY8Pb_$$WpP1ddzY^A95i~Q0`r#Ptf&Wicu+RvWpDL9 zcGdC58n?c^uR^n53R?|7fp8ImAFpM^ALn zM<%4B%X1j*467pd${wRto0F0HUS;u`O{mn(7)jm5Ojp8ylPe79-Jws$v%I5|dfKjD zEpALa8{+vf=uhMY>BU}&GoZZ_eTX6^4TwEdpvY1ISbapn%Fig(fm}Swdkzn5^x^Kq z@KgV;A570L``6=O+P|M&_Akf5hhcwW-rwDA-(x!QL!>Yt09`|0_S%x+_3WQr&Bnv? z;P!eLjPCm5n_$wvyE^ys7Pk|YeGLxu`W{R*#wtjpjAl&dyoP9@Ca)7`*3m@8V~kN7 zu~sLzcVTo!J%roAY$jQ*v2KZL1zL@fD<_R#95Zqo+#%mHN!I-Shgkn?Z7m#MK}388 zt-@-Be$u6m{CIxfjs$jp4$Y7#UYmBv+4njq!aJfsnhZ$m`#Kyi!m@o%U8y0b#;; zZOnCn`d((CB78ChbN1MHM^XA)5_Q4A8oRv2x8s;4nc*t>Dtt41UVEN zH779I?>9>}$=YWI$rVz&B@K>;SJy$mDzjegnUJK546BW+&qmX6oJUVlT1A2m!C5Fd zuh1sAWm|VJeUO*<9yP=av$g8b#PI3dWiW3WskZgeC#XG0colJfV{)QF*WREP#7+D;Ifn{K^c=GxMNa@5y{rGWI%(}t z<|87^>|@|(gU$-te}YS5s7=g_Ww(f@mX*@VRfnWHBSE zAn4!?XC#`1a8_$%z&=&r2pb96GZ z@=>=Mw=WnG42h|DB^e>*slh;?A}9rqBFHE{q@zqEa51}C&0d3MzRdDhm9B#t`0^r7llAH6ag6T@!dAwGxUV&k_H9V+k8lz!`kIwmIQ)|#4Qzo52nBlaS7?7L`V6VpHOfMG`=Zk;({!6;m zIuQSUSN96_?Q$>q0AD{%@9DQ zdY!91rJMhFvM$Ko{}LtVVFV~BB#aOyvxOFcRpU*?#QO$(>M2-`zR ztWJNkffF0ZeB*q8y#rHSR`l}6+f*{!LA3kgF?%jAoCs3`5=s)>0`_0Zkt?htG?Wxu zk#gMm!cRrW1!|h*0IOY@fMoKS0*f#P;US_+JkGL>^Fx*}yYVvHJ%|S&v;arvio}Pl zQH#W^?9@nv=HZ=+pPdwk7$Z>9V5*q>Cr8U56E^t@s0}$d85@?i zhR~U&>-SF_sm|+M6Z<&F=w&ipC6x*AY%^{bxur{V)z$hjR zm>)3G7?Z75^j%fTAMcr%DvsNPc+`q_!sz5lmwT5yCNPmsYg6(J!FiAILgQS9GE(4) z7QX#ng!r|e3w)AH!Punm) zyq-Jc3v^MCq>17<7EpW}b{&k8zK ziR7N~4hA&=k-09z)Y5Qpwh{xPt^yrdmrc&PN;WGK&WR!r7u%JV8Az4u7~i!&RG4*3 zWRa`0Xci7-!cwx;k2JjY7fSrl&Gu?Ba+jVnoe%tp=gj8h2#jA$4S2JWGhZ%Fzu$O) zKmMqimQ83@K_m1p9rq+d**MF|4(cWprFoUZ&Nu8uj3b(4-K|Q@34$5H7r^zHY)MLL`=IPgm|y#XCMyLfnLg$NK3v&>LXcK?`wItF z0-zs4xRNEAX6MMlUJrDF)!i@-j!9E!%3OXM-xmq9WF3|%DfV>#5W3xLjzhp}FMTRz z#lJwm0I5(U9>r9r&L&$|LK`F9sVPq6hHPGT!8xw6d*-{z;uXSRnF3S;{(4a zlYP7sJOJnnMH+-yO$H(~0p3gti3MGKQ<#52k!#=x={wBt_5i1{cprtC!_bKLlI2eV zMy5)9sASSjnl%$zD4H79(nREBAd^2zqiutU_BG7Od7p{sbQp#fv&vx`B2nocLlR+U zC4-VlebL?fSi@G>7X|CeHc&zQEaySoJf_Y16td&>`p`b#VvaYFP_>>x!e?%`ug*){ zUJxlA7VR}iN)}H{iRfH=f#QMye-ue~Be6A`6xF~I(VKtc6xAA3ngSE(zWy6>yw*u~ zH}QHWZ1E{(-F--MOqv{($Na+YLF@23kIBpE4G6^o+JPO#Uu*`v)XljF$7^AldAP2MmED*Y8=_{1UwC zNk2vRtswL+^!KZO{OT**q@=JNQCR|h{~e*FukgrlK5j0Ye{%j&{Qf{=2}r&}wJA<$ z=DE*hg&`!PlyC)f;zVe@e+_{)3KbDNSf+7Q7ynj`cQI;!}PW0qm0Q=ok~Gm zRJ*c}>3_ArU19S-(Bc;qD3C2tqo+I*_OGV%&39ffeFRWZA-g3#JenPrL#JPmWffm-_AH}p;7wN@}XF0@865&#;h9Rsck zixyDnBeHMrbG&CQ1a&PPagB-sRgM=icnd~Vk9`8?RT!7$jumY~$^V34nL{Pw(FGEZ zP^GEakP6R2-2*8WxgskPQyqY@EvCgooI7-WKTIp$2UzX61jGVhMtJ5QMTg`8WtZO} zYZG0p^I}VLf)boiA^_&R78$-#GR@M?c~5OHaIBLp(`ZYGG5U@R^9wM+te zbG7)(FDl`=(uO1h{q@&o3R{~Lfa|~f&9A>QVH)4qW%&PIt-OHKwn6-B z$|xNf5#f)C?4`NtzvDD1Q`vw2NxF)62hg`2@e`z~ztSOUo$8b(c zLoe>B{r<; zL8Pe`iz~Dp?CnmmLXFkboh-dz*0G=Jtj%JAG=kiPvqWiE?W-3&?(b12jDDxW}NP&Vca z6KYcJxfTvoV|cbIF@c;RVRiq0RV%|C#tgkX9*gQ+lWKE`l58PXR7&d-FMbx+GllS^ zxj;W+R0@A5^wQs{^E6jgBywNu(4~Whv{|_1?VmCgY?9)zi(a8wVNuy9kJ}R0Zj(F+ zUL=$nwXxPE?p7QD5~tKYh~3=xZiyrz?7^doioUXBSReXA-GDQZOzN$$kFDEqLOS@s ze1qk|nSe1oisLnxBY4>1W{Q~X-LexCBtf=uxtdyWu)YRpUo((dNkl13uud`+4riMO zIj~%(Y z^CzN(4I@18p!aLEp6t-!22}1WMbg~iK31kqz<&_dqvjMwSGWtj;ZxAUcqAbY8OVod z$q_Y254ei3cQUjcZ-_-8IC?S(vjE6ytZP{f=Nx@Sv>>;*=3yK^F%n-aJ>G<-VQ}RO zVt)FSO5EaG;vSW8uG=9;5E8`!&(Ms%RE{xuS=`bcO7VRe9CTm!Z zVFa|noF>Y;*aKCU^BPmP4*t|@b)VDa+jA;qYjOT;7@cXgBYq3`;N<}&4?KnhB?*HI zn!h#7^NWC9zNjL#c+deBs5wVccJ-zmv5=oHQ1p_=6dG7&4${G#aHa_g2H#++WwbuR z_F6NZ2*WLqZ~S32VyEd?N|{=HPpzX~snTtjjx~}HUKVi+S#un&OLZAPD>vB==mQ5E z#)lF&@uu1za2bZx#hxrgO>RJZpz@EH=DH9lXlfxoC#4Z!mpy8F9Viw8d>%wNt`zxb zluDEI95y!y3BO=l`L7^2088D_vsE0~Ye9`lFcWT>(mff^k9|~PmU`ljH_Bd8Ja`aLpy;&$vnFWqi12k9Oc0KN#PnJfj@FGv5=iL*Eb=s`b%)-#b?kda2=4 zo*uxdxyEA$ zH_nr6^Xu{6=CL+8G@eWKwPB=`o+|#6^UFQfB)|MBj{7Q>NB%FMs)(}y7G|8`lMZ3O zEJPL1q|hye?uAuAO%wGEd-N-r!!3#vFdr`r(QUIA=Qhiq9?&0QiT9WZd5yvg<@j(J zXr57KB~L-oleVWyrxD}l(-gAXNEI%`O{uox#g4aDU~yp*mO)&&$6%t;nZhX~!ciy2 zt2A**K&sBVW_v>$Auhy#Mz2JQYa}v3Zk>H9wg~byq=EvZie&ASQTp`Zkd(#^el+K$ z*~Ksa_BqP`?XMTO(`y5X^p2B4>OOkHE6HxlvC#MOa`$>s3jxp|TJqLPw!J?Z&t(r# zFpy0-+g$8Ns2O`MIEwU3xbQCLH{^_VofKF{Q2}|qI={%DcV$xU;?~~UMOC_%H>%D) zjGv}JkB2kZ=k3wpsF|cH06(5A*5gD|aww7aQt;ENhgfq$fh^vXbn|4Xm zB<{kZ9njVW+Cw)M`YK2EOv>M=w;*%C$0gz(TJ;Do`vn}T=t`r6xdYGxG#(ddWR27i zWknB|c;=uk)(;rPO_i^Y3aPNrk^XEpiSjshS>w<+#?UKx1wN-vF6bVK6mP}-YG8*j zz#!gKYgl!*2O3to&MTOdR|oq?YrK!5Jf|0YO8Y^ce_Hmpzy7zs{q_I)+h70Rzy0-p z`rBXs@4x-^|M}Zr|4-*{|Mma)+kgFURy{fi2}Zhfeh`+63npfIe|!}h|7C{U@)%TQ z5pTr{=%_5V_)2uOiS{a}MjZu$Y1$YosBW6Xsi&wG6AWgdL;pv?{mlut=No zLSHP8;%y#nDk7bYwsHCtG0)fP#X}JWkQ^}yXb|TFL%$6+1>9l`VnK|KqVM;fS82cJWaSThM3YLO)%9EeJz10bPxC# zlfl|yNC}1!!S0GuXo!pZ{m9gla&_b&!!lnr11JiS0-Nn-$zq^xLAUb&)UFpMWFcml zV0sCkxhE#u=&{87?_98vB+r1wF$FJ}DwtX4!8Uo~!j|AyQ01Apwi&m<;S^eLGm#{j zDcVIeuLsD2%xb|7peN5}yJMnO!Qr!iiZsLsg;n~*ndsv^6aT8HUg_63kM1LpvnL`f zSQY|Z(4z;PpPn)z&tpNtEdFTAu-{RV@;qXcBJLErZN;Mn3k`yVwcjFti%;eap@S6eNYn*+W~($|rFoF$F-Xdm7mG8i2Xv zH9Okw1m)Goh%SRD*aP#sXW~OoGN70gI!lZQlPqNql!-_bN@slvM=G#&F7z|ZD=SV# zpOTVpt7-JKC8NW8g&Y_TBjyPsHyh(P+GSL}7GKFcz}Je4IJVzVCMO~XK8k$c+^Hvu zS&?LlUVZcmVa`Vtc%AvoFeWxC_X0Xf+k*|ZW9aC|D%voM6+~M)(jZEh4r9D? zP${S^0tFl=6S;etk8t+U&)&xc_|MH>kE#ZQxfX3BDyDMxG1Bmy^N?zv5fMx4x2{LGJ?=6{l(HFfi2{{uhvKk#G!13&gZ@MHf2KX$$& z-|%Dqh9CPk{Mf(Y$Nr6`Nq+3#@MHgmANx1_*uUY&&bRn2KlX3=v46{t{ab$Q-|}Ps zR?`!H?BDWZ|CS&7xBS@os=wpM{vAK|@A$EQ$B+Fxe(c}zWB*RmL4NGt@nipvA3I;i z_x#wu=g0m%KlbnWv478x{d<1w-}7VtUej-W?BDZa=YjvokDXKzKW?^<51+R1|3{+# zETwNdKJgXql#z%A;M~XQ8V>0Esc7Ej?INPzpCT8vvp%^iML$m8b@1j>IE|>Ad*L3B z4aA@0byfS#U~3p@Ay;t>gineH6d=ROVaW9AARL?lI8LHuq<9H+d{)%;$$N%p4r0>f-+QiNzS+n6~kA($#$l)vI)+>da4YIr3bsQy& z##@Dfb%m!6x^b=2gq9{EOe0>O7u1B?ym&E10&+(q#|=aOa)v>*XcesT*6x1e2!%WR zBvge7ul*j!=#k`hVy0n~UW`uwB-gFY5w*!T;!U5#<2UpW73(CTcHj%aR-|9;3nfuI zb(wSVPJ0WD37#R}B&wiEr=T}+e(bi!VbrD`@f7N!j=O!)Jc_z-zMT#n3=Z&6KZatS zDhda5d@V)vAn`nDSI?hd(1cVcrf2q{H}Qrv<(4}n5ecU5wdX9{j~tE7;?MYGA|_Ye z_)@nxzMT}W$~O2;uxM7ArB|o3D@mtSaHDQ4m)}vdtJ>5IW#|Y}1vzSSfVWU0bq+#z zWIW?GA|8*%ogWGIRWN7c_-i*U;ZS^9SjQh6&51kEXns4JFiG2LvZanuwF`GH7DWzx zCp%R*DlCn7je*At$_05=J#Jf$-WQH59=h$a$4B9CoW84{1J{B?9`EAkNWRoQR^PlB zRn;u<#q(NtWx|>WhvmA0E}rlcd=(C<#a6nHL*FkPq|tZBpbRJ8Domy+=P@vnmTJ#NU zY)3>}?Tn&BEjR`E4o>xyEJxkBsQZ>$M)y)4{31z@cuW7P2)(Wjy_VaD(`nqxn$ino zMfT7oZ;^FYMoKYNt9D}{dl&p zY{qGN+nVq0Mk6)-XDZ2&14jlX=zrdNJaI0ZU%n*IChB60;lT7l?jY*Sk1mPg-H3CG zJY|rhIzoWzm^9p5S3U~X482Xz#WipLDg$RR2UvrrB1xJ+;yn}pybbUogJzzBwBl~~ zMWG(AoC1m9QcfLQiU=bakkFqRKGP^ExVPlX&rOUs4!~uihw`X{0$UgAp*S+&2>n^| zWf26Tj;dL|G8CcafbF5<9f>3)QA9vGJZ>sH7MkZfO;toh+-;l|`Ho^dG!~3}V5m*L>mJ4UTG<33xY>g zs0-QvIi@}BjePnvpnasvcT;5CQSqcX?oUJ*sf{xR2OZgT@z-r_{_mxA)(0+8?N&+| zr{czHfl8t?_9q^Biq;r1-Z>YCRGBkG9`XN;q+;*{QLWEoAf}LUtPvvX3Tt)>l5jOP(1x?2@E6RIw{H*7}P@r7G$c3HAPEo0sM@t9>a+Qg6zWGTOjTZ9}f2^%2=6j|D=?_sTJ*Hc zV4Ifwut$0I7?%YmS1n}}vtb6Ktx9K{+;b16o-lSV96_6kZmJO!4bi2F`c7le=s0>- zkJ#r%tWAOik$)C^ADA>9SL&n5(uo5u$B~M zMW5gL>)81MM95twIM@a#4nEOLY8dVTbiVxu{0$olvkfMLXMzIwsXV^$lCq$lzSl8K zm)N$+?p+;CSNy)ttBv{kzW?gWFQInKkxGSv-U>uScgI-8D2jUUR!b5`c zPZ2Jo_z)hFJb|A}SW6U2p^*>b`Er$ixQRrN`VS6h@&`11r_xGXQ#-Blps0s#@fJk@ z8+(!~zKD#VPg`NMIs!=o3C2k9R6 zDk%o(E_WtOUa=s05r?(tehz=|%rC^CKQL%m;-uLjI-mt+R(^Ml@0+-x4lkA%8;EHG zq&18X@sO0Iyp^eE`0~QPc;^h^zo2^`VxX_^;3MRe~|`~-IHYBYJ<8t z=J(kVclj{MpD>Yngo!Jzx6#kQz%ci^U}#eq-8&}$%~n=2L&3<&#ox?m!;G;pl)%-M zONeAnuoL8;6cjY2N5R+&HNBW-Hv_e=r z(PZLWXJY6tf&TXyTBIG#P8>#iq0Tnz4TkB^x?HJbBK$a zY}dr3DI=0M*6qYAm-o3zA;MW5ttrucULDHaD+YAMD>1xPRdKXInak_Atbh2@*(dZg zR@%RFjQ=g|O}x3OV}0e!l)P+KH^SFfmr|dG({gGJVvn@MppQ zNG&cZgb`y{JQ|;wQN?ON1PL>sYs%{75wV{%Fmm|uMrU^DWR^U&teXSeP^u9zt~G}4 z>8sYLRJ(F$tl+hom5<*(UCsQVzi=nca2_n?0h@TQ4YZmKeG*h<=3csivv6m_EBB*I z%%|a!%ORQKU3u!nc}~wJI7avwlT85znA~F8DJDW<8^{!Ju??pWqu7QDb)g`cCfV?w zq{$wro*rp}&YgCd4g08~cZ-DUnlhDVSJ@p|qnx-XBWH&w5~f4VwbU&-8W`>%ZbkTV z5%Ey%Q|`9z#Pw>eGp#G8hk33!_q{nyOQ7!Ajj0veSqW9z1)VRU3|JiV>338<0~3t9 zSOoJMvWG+*t1)^YH_lmYUqn6l*tZ0n&4)(F+Pk(69ICT2v;ETnOQFI~i-Qs>G;k_Y ztveez<9UF7?8Hcv(D$fe89l|@45Ql?|N1ZgTha0|tRwsr>qYj$6NpG@en0`1%2oW3 zB{=8SM@Fp&JzbS^Ks9q&+wXM|VC!;5zH1ff(mw|AGhXv@R~lTV^oFWB%kQ`)(BqAf z9-F=xg4v$HG&g&k=!yw4bYt>%2BdxDB#&<2d$NVF3%8K>!V{xBB3+qlq*t6 zYn*a@m0pjI?tQo#OzB+*YJQGEC>B$J$bWTS4WLs^#_vx{fZU#(LxZw`PSn1{(;M0!E)Q_liCR3V5{#Y7T z2V7R>)kAyU6mf9dv<()-@|0yS?3z%}eJt{nQJ=!i5A>>Sv23`QhMhFxgrot6PHKQU z1)ak+)D-qK*T89;Yt5S+v57bX4ESqePVzF{$i6VNtdKk`9kfvH6XCoC(lV<_pHv*7 zH#dl*pQ!}_pDVaSPU)#H)xBaJ?RY=BXLK*3ckcL<=fG@qrQzxFQVr*`r9WGF&aJ<^ za&E8OWe8#)8O&PcB>FKBX=G4IM`wx;rMLkXp6kN$uF(TIKN(e|>)7o!6LTHNrwNR( z4w~myo2jKqEW-wyeofic zUOE_H=%uxIJRwpm%gjh{On&txeRki6^rvrWPy?0CM6whNH_uKv%=A0w^G;o~Wownq zNu=|Y&MX(8Cw^{ab5fsiUB8`@M<{sGIUdx-nu3ZFX1HuZ9pmk-!{nN&;n+kgoo>H# z&^zf}U+*6*dk-}I!g!Tj#+ft8c*cfgA#M|7-V&-X}4%y>9 zXPpJ5S${c3;j7HM9Q`}y6cUUasgv`+RmB>$zb>YtR$am^mE2{2siL$*f3Kc>7SsX7&apaR(RQFB@@-{UrsAq%PscJndWNbK1qA*%EC9ZZ& zvWF`;4w&igO9mllPD5BA%gPAs^69ycJPQY;-sL>T>H5|A!gpyfVk6=LmI-gIzwj4* zm}!QdDmAYpB;0T5_^Jj6OV*=Asz@~3I==-zY)6{j_5+r)kZp-Nz?Rk}w- z80ki`N5z1eY%*z9s<)Hk)=b@^)sOQ)f5H=LBfZ{WkIUc%=<5$8i4j)idqm(;RgRn- z*9FK)a|gwY`j}=x@d4+H2WjZOe{F?ou03pZ+2@+OKTPeboj>^koMnq*FUAiKu}lwv zK_IC9@Is6LvvAGBajIan6nBlsIj$o6?)RkQr8c$QG?ogyaL27vZ(>f5 zzhEX*^apIG7!~>UIw-Wym=%651Q>dM2U{$9hS7_=IN?zzJS=Lv%W;j~ojg}e)tf98 zULZ^H;Aq}m)}b!yWN^SCUt-+9;tl0&&1!XKd_CP+(O`S)PzoPr-P-a1vua4!;Q#*-ij(O1b4pfxp>6wt| zjx!dK zz6ScBeKQ1`4K~F{ys4y`@$N|k+MtrdU^Tf8SBu4jzRqxIw&lQcmmcZ#U>M zpab;fVv^6W$s91V!GQ^(58n@LB88&b#LsLz%^k)TPnnR=P;`ix{1r`XPFT$6c$XdI zwRcr+vz##GlQ&CtY)#3YU58o4&f9#$25?_Qe2ycL$10}Lzv}!}R#b_=JD|&W zUopI6fu{yHVDVM}QD_A1#kSf3CDZT8fpXVHwu=g8hD2U1ncmBC993R{QjNXh5^P0@ zW<`T&&xG+0SfL^it54T0h=FvUwv-DtX}he3a7@W%2M+2Z7Y{wli8TPDpx?)|;~-Kq z!%_LX9Fe~dq;ZVJ2@AbT?E19?(TmP#$;Ulk!qK{8DQsC4Ol18P#}8I}kyt|;d&N(S zGH0W|Y^weKmE6#YuOu3+_)2a7YY%JQZqzo9fz;0=uN0ASMk7|CJ(i}_HqZ5``5kgl)_!yC^{6kUQm&~=3>`|%>91>Rd+-+5R z8c3OZ06##$zbKLAyqBjmD=Q$XQtI_AsfV?q<}la)GGRH_?w^_WqOB(#C~KxMP5hC` zSg|tn7Ts2#9rI`u}ekTjh3k`>ii)Vq}xI*79~2E9fXgAdMp zsJXeGMPe)BJEq!ug;Y|T5LWEXu`J{HipT=N5jcJ?wRvnylE;>DI1^;@|NZa(%YQiq zea+L~|YuqMXTkGKhZW(`=xm zPCjp=#~0pufjTE9!b}+DJlQj^>IU14%lU}PE=`DsU!i(7VeLMHbN&(^dvcQ@l;`M$ zM&t%9IfWXNg2^@mQbTmWgmR}dz;ACPOf1p&~=P})CKVZVXJ+q-eLyk7v3N$QQa$vR&=(#CR zCQ{YqQtg3An{%5PG);6=BA=7>meDa2j3Uh{(pkx6J)T5QOrEeE=#v#SrcGc2a!TC< zL~6|6N^{+1TTJ`Pgh|>~n5P|YFQSxYP=n$Zpj0kF5s2@PTy8DA-+fB*m|C}{6^2Dm zsEC2?-VFPhVG__imt=5;DRJ3Vokh7YRIpP&i&$gtf=i*ez?XE_^CgKSu|TEId4lco zN?TYYsK4;aZT7TfjANi;W|W%*8e3hE0MR}%5v_tO1Er9@52(;+!_Jf};*xT~{-wMi z1ZA{jv)P6ie}JQ&Fz0tblU(bx0L^iauq{D1bUtM%F-R|wAQ-%5yrmPnM6)Ix$1-8l zZLOYohO+|d%b$={@FiR3qUV~9 zgVoZLg%dxd(MHd$>hDs?o2N&t)ZcGZ_}_sWdZUpy3_dP!UF>ItecQobB ze{5UvI1yR)ZZKcXMlKD@>W)TtGw&9vB@RID>~1wfw;nj7@4TOeo*2>Hd^lVM0er$1 zt~|kq=`l3$Clh~mshITLU={i^7)$dv6koy@pJBm$sNKKM#O7AA7iEG8dtmHvT6*DZ zzEnKy%z8%N6ee@E7y<1qeY)B`=zi#qZrs_>dt2*%hyXxjvk|^r*2rGHmE6o%!z(Ws zqH`F`$lIy`l69v*kjsVp5%JGN2hnAz9$?$e#nS!h%7dNahQN64hA{t^OoU=HQa{~v z5n#E7%auEkt9~Zx$Q#hN;ypNl_v6YB&YTO5>lhJ)yM);4x6r zZ0Ng_k04LjV+Hf+h&evA2=a&U3be*KcihW4*ClAt4eloMAwV)aWjLQsfe#Pof#g%} zA~eEyKP?z)R1k8(!n?s}=}keoTk`Bu4_*J#gE2%dHW8=DY>D#$%p|PEVj7pl7Tcn) z5;yRM9vsgS@0>=vh&Jtcvv3t6ZJr6u?MpqhPNYA@@R$CdJy2U_AxzzP9!&3mmk+N8 z^PeW}z@zcp`|-UQV}9sIdrMdSkbcx0KmC=#79@c^?6BU_b;MiD!{ylj>5a&NXMrpJ z^k=Y~fIs#xElHc8^+;H~_#c#VCFnZ4CycZMrqdW1Jg=`$^N}4z9WhqRC1V>gBb~>CPye*kP0ZEQYr`qzc9>`OdlbwU zm>LsA9{M29h&gd*mn--3T;gxg!o~dB>pikgkOi0cv#aKLb@tX<_^h$ejHINE-$1}` zU=qRnHe8@}=F*!lSVNx~Uy34c!8x-b5f1B2))LHTKg~fo9DmtnEWX_0tQN{%lNwH1we|HlR~>;i1ltOKi7h zEqIH4*Mhc~W?-}aZD)=MR=qib8!U+iESo{79fLG%If@R(84^JU(PsQ@_^JDo z$cY6)aSz(1H-nvJKb{u6MW=i<);p^qH_-mbVlChpgdbP_qBcy~4S=Fqj6)#VPtp4%lSEzrr>X{{9Y5#5y@hM9D#ofaN*DCllTogW{q*+Tb zX$xAIPtQ3E+u-(sRvSxqk6=LQ-F$6e3*OiUw=@HHQ20v+JwogEek?oAh=3N$bvq6x zZfz;-8)F-I>W@Zn>;b6`=aYG#^3}$idFZKi^CsNIJoMj+3!=mlIPDNGI4_xbnZaS= z`m^PYKcC2J*!p&!z}Egc=&y%tUA3o&!;HQCKr=&KXwwP3;VST#xUp)#6L;Val`{sX zIUBKRhnP1Z>Ah%7=s$$WeW-t%35Q`(CUBU(YkzjR^oCb6|3`Y9n{X}tg!-!B_FV_Z zn|1w$%zjd4RI4c^SbdX95PGRg%{z1js22nq^~+muC?o1%)xVt1-J6gsS6PQn@&AB1=#U=dw7Lb(}`(#6j<35<}(`7PluuFFa@>fw1G4^NQ=e=oUUbQ zdXYNMSi6Ne$oAiQf*@F${+_~_`)lN51kBu~0@5~!z62;Dnp$gMv`sY-8be?-_k&`#y<`04Auz50}>uo10Kv7ElC553AxVc3c{a3 zGBR=3zzxo61MBB^4FhYxF)*18%#5KY2ET?DfOg{>9r#)h^BXS+d}Adwh!}tY?sm*R z*wC7JOxx&;{HU4VC>?bpvY@d?P8ulYlqbZ(>i1^ zuszJ-1iHS9*Laxm7uT7rt-bfn0D;{CJkjAOucOUr=H zK~9(A+yu^17bM}2*EZ94ioEov_#VR&QOB%LL06&OB&{X`wrQm}^vKt3C|!GP7~S;B zCn)~#_|7W?!40;f8_3PH;&WMZxcIbf;xoA}1+d>cB)?}ks(b{^%tBqC{GRa&XM78Z zlK>h8NCK@B9|@pF=pt}B@*{wKl7e_qU^4+HaOUx!0BeVT0@rg6or3Eo>jcbt>?Yat z6jr+cCvg4qk1S~Uv2QoD!L(bV4FqSdUcc=^`UXw71F79cZJ_oa95BjV=%d&x&7A=1 zMtuUN>!a`3Y!u@xS`xOmkqjpmZHt1;ZZo_XvTpMP}S1=`Pp}hC#UWu6)n{g5lLi_r~=n zIKk1H?u*wHEMA_AGKPzEbDIDr|{pN%~7u(k&!ymG@U7_83j-G{Cf zcFl;qeZ-8zEuR@fYR1%E&5XslYnU;@d9WOuIRiHFgW6vBckYNRPN!Vb+$jjG4={-O zKAU@@I33}==!ojL3+K`aE}S|(_$Yp$fv10*-VMCj@M`J?*8!|3yH_a`x0DDqb;X9^ zZ}vI>x*8U403}NeKkq^q9A&$J+Qy^-Nz2nuVPG*HID)Q{kRemrS5pH!NMi?I;k!-4^(!+yzyEvT3VDaeRcHi8U@zZ3@dZA0mPK_ zb;dAn3ZiG)%yWCPdQB(@@5a~e!&98jX>=BXo@!4~bklSS*Bmo8z^fT^P9Nd$XaM=Y zuk9L4M-NgqF;Z^}q=)!gklOZ;V)RXk(!N#%kd|x6Vsra?t|Cudlyn0=rWXMkiznnW z>KscTYl)^8Q1I7&D7l4t;VgJy2mZK<{h*w?8A2iPYNt;W>K3SB2wL&rfgMlg z^I%4vr0T$XSI5qSss}~qN!5p@yAbNZccg9T=gIu^!y%7#$48e zp}WDdKzqZIv(8yPIOuc*(}A&5{MpKTL#sNstv)oP`&JJ!>&DfG!|{7Fis`bji#n6f z$kCf*H82<#`>=Ys6@$Yhi|WDXXIw{|Hw@j6VrkencnSSO(G?a;9sHy!^ii~p@^rdb&RmHkYu=POO#fm8A}X9*fJhN zMX1yS&F68h-0-}yi>q*J!qAzmd1x80+6W8E-F&uKPFG9)I}Rg)CXA;MXY37^R~Wg0 z33bqexEx;LHirRnF=~v+ybZpMGRCNm!oGmHQT$>3_c=HL7oDC(Xnq;2{0SO5LEgc{ z8s{N5uluL&57hE+#`R~Q5lpAt1sacNr9T|Od$orK)Jk_aLfdE#4RoL0AS8N=6F|cC zZ4e1%$!aBV-!bLSKxf70TXyq*1n-^y2GnZ)kI**r-$3`xe*<`Y)oASW)LnFa-8E)w z7G**MfN22f+t3c6;wtBe5EQ46m?(xNVKIo72PT7Qd2mup%fpZ&+8lE=*22Tvf{&J) zgJAXUky8vS;wMP;-_qYq`Q6SynV@&Crh5AJ(kZ;{mQrX&4>tpXEgc8m0AHTh&%G`C zByi4K-WthzbrpgYA3VkRjcco_>04UN-2!U((ByWihwodVE_C0CWE=L-jMLjEf??G! z96`-WZ2Q&0vFcX`5!`MYw%~hr;1Skp^BuvhC%t!T zop*%TA01~M8MZ9`Ox9lie&WbvJX(32nqR#g)52cDR}grYKE};Dvl4qd+bKrh{yBy3 zqs3GBrmROAYr~x}jI+jY)&S1y{jwDtK*b-khwn*cp+~F}TuI@?9uJ+uY&zK_a67Aq z4Hoa{ssWaHH6~|u%b(T1N|#Q}qt7ZNW5$4b565bfAFi`mQ5 zIV>v%&ms0PFb=2hgy3*G-^9)M%xv%PAc)(6bJtxWowe)|<;*3JNM}u?82#Df5lH8a zN1&Wf#S-rgM63|coIrteJ_$>_H%$Cl1T0bLid$DuQ~SB=-QbsAo|?gLM`WG+2~0tm`;;{m)zXH>~$t*7@A^eZ#t*x1Q`eVvKTpV;I~m zE(75xIDs!J5-5fVX}&@C{LzHXiruYb5%_ZqR4anpYL?Q3!7ZiEVxwr|faAy^o-okBF?R$AJ1*-21$KjPpi+9yI%ILJzKf?_a+T(!{-*uV~hhE(YeB zn4u@OxHJR;p8?(}3dX~kx+;D>dNBs`iLyq8cTE`8`VT8?5yD*|wSGSnS6``hMVdr` z3f`QI-41El&IoReB5%Po;3w%5j#;Sf;B{G~&%y4bgSJF$k~UkylYGFIc;e4i!dOeR zlhk~6Sb8?5gKu)xSt1zh4?M;(yPF-nugPV{L-(4F3~2U!YEn|!g0~V(*`e@>p6qa2 z8G0-c=9aW;NHN1Bv{I*N5DaNBY%oq!OxWO@B#f{@=|J}&% zFufP78w1@M+(6d4SmnLoo%rKD&_^^4pa>_~3HxmVB;mI0fDN-CVybonQ};p|S5|=4 z@taLB;zmiz_sFdnV`Di4o#4LZ(S!*`%IwS_;N-_{l#hv ztQ$Vf2uQ-58KFC2$qbO)Kw?&a-MC$6qgZsmC*0H-m@>wb31PC*9f;lFNCu!Ls*wTa zBxI2Vq$vF}KRwFP;rx+Usb#{!=7nXy1?I~dr2w=WUSg_nal7mK|%>_y`4nEH@(7wihJ_j<$%uXA5vh0(H* zTfw*N;~IFG6;8cQ?$yZ@G)D8{pHp_>#`C#eKvOU?74XZT;VH=asjO`;Rl>X8dgTx8 z1O@KM1GeGKLQfgsVbL&>ossgpXjVpm4$9D-3|Eu$P;AAT4pw~#%m+W518y~4=2N2s zYGj5dkW-BO8Axs3svqJH;G*8GR;8fuhG}nHZQa#!ehg}O9<;C#hs!xA^7Ej#CA+&D z9k`JkbV$hRMuV#k$q(_Qwr@m! z*FYb6tmbZ-!pWpW{*+PWC@^;&OQCo!PvO`rVG5>UwVmTa+$PFj@uriJPrKlTfhdR( zCU14&RMz!S!I=i3K-9hA8Qs%tSmyLIuX6{|Fy;=NarrusoCg30C%Bev^8(mVGdTa&j$rOg#*3XqNl-JTwe7p4!$Iv z&n$)$UbzblSMTZKU7x@&Z+-L@=%;c{tvCT$O$L{!f%Jf>Y#0`^qafK~`-{7`N$H5$ zgQ7`{VTCDGW{}z4G0ZC$@ZF{wy@Re5HtVWugQo9C*fA;yyevf^<2D; z3fBa{`fateO57!!bps~SQcX4_wC6Ui;YBgCzKNY=$3N;{pl$)7A91P6T@? zXOF%l#ycaf<~!es9?PCiAL~P78FC*I<6>trAzJnA1f{oMCpO2XpOl-Jv3h%Uiegs! zOqg0rU5{myjk4T_qYJa#i>HgT+=s{oTDHMqgeog6O{nEwWMi!5K5Rp<Al zr4MDo0b5RnF_;MlseMw&0r$?t$%S0=w{Q!(p*Lg|+Re6|uzLhOZ=SW`vNWJ) z^tn$5I6{hGCivXsob|c^;Bn6ytY-d?D-5&`WdQ62_$&jT(F8=Kyz#wT+fcQxFC&d~`{uD~eiX4=DCc>7;M_8K0Q>8S?O{?%DKRO{8(ua;%1Qh8R z*8-T97?AEUsDhdG0|oA-V1ryC26@xc7f?CIeV9@2{$nZs*zi~mXY0h9UD7w(EfAzl zjz2RX&S)jsA0Cy%IrYA7;b5>h&onZC=$j!wSa~@pv z_q(YVhK#?1C=dA)3d@*OvWEQz&^nfeMeXhQ6TSGT!MG!-E>oe*d&h*Zf`t3nXahK% zk1)ZkmKU4=>e-0^6o&z*-HH{8b4W!`q$fm!g@T}j?Hik11LIUF5H({xPo<@9Vm(3X(h!*QaB1wK0x{R44%{*0+j{~M zu7=zzgdGR;LCQ$)`vV%BU|2-N z&|%od#4zI4(w3vOdF|>$1(J^#*`uG@n3~huAEsDVmr^7j)sC02M zbnv}TNQ{W*^h_HqLyusHm!U(li8gK#vU z{b4w|puK@Obl}Dru?WV&!1k=SF(5}5s`nYs33xAvF)T+H(ioVd18NM-(SbBXpXkDw z!*g_D`2ZbVn4SE1MSEvJ|jV#oK;$jO?h@NA@7+#8+E53Oi#OB(&_*0OLRrNe;=%P%hj@5<$^Oj9L%n#`NZR-PJakX| zAr?s&frtm@Vi2*Ax+p{}ur>}658W4u$cUwRKV!t{k?QT^5wR%7h(tVwwK32tDv=pl z=bXY~oin>uv5AbB=j=Z#HPJdkkp`ppC_XDnkp|0}u#Az4SPYw3MJ%EzS`m+6idWQ+ z!AC6W$75p_S)g&zhx*ZUaf=$vvm+O2FpaT`G&qLnMH&o4{GtX!d2h5_5nBEvAk6vt z$k7?-nWC)&-A&WkTi&vX4rGWA!(58tS$SETvvFQ#7Sh zJ$c>+Y`N=7Vdb~`mdug_f>7G~GJiYC$q*s1F^L=_RUeC_bzA;4`f>D2Y zQ{bxeu!Vhscfur3<)w^5862;Ng!!Q{IdzA4ns~SR=o2I#2(mkN&inC~ymZd+lok z9p)zjJ4!yUY2F7tGi@fWJfZCCkW56UJBi%`uzoFn{Z~ z?HSietS5~+`P&0U*;et>TU(#aXTPcUGrTzqr2_X>>Ybqk{~J4T_jl;U-Q9eAw{#cQ zr%1N~bPu0={LOoL;Vv!- zCn5j4ggo0M#bFn{&Z2#MS`??z{Vv{|eon}jUHnk`>nuI}o-&oD(R1<`l}VN|fibgu z6X&yPe;?{e8pmd+ zK~|-kD1UWEQAt+L-E5p7dm*1wr%L0`hj?Aa8wW`>&Yd{Vv)swn>nhLV%{%9?i($&0 z5~_|Kqa<~9FdO;BX5HU{V9w@m;vr>`cDc~sH zN9m?IY@i2aLU+4gM4RU*UB?=Hzqp590-H!TIPDsa;}_3awcf`0I*$eG(7;U-;5abr zke@n5PWr`3(2L+Lt+cCWCFNnxJt zHwDPQ;O zp&^eF?uZKF4J_umgfToMk7SEV%GqRVGD)fk2OW{#xQ7EUMnS%STOkn|K+4wx=@)M3 zhb)7=4m~Rw{6V%MjCW9#C3C!tR2Oy(%N^y}VUxW8^P+rf0*tZ(?nWwX3W`Ja6cbXB zYw>fWcuK{b20^@zfqNTA2rRQW#Q6al$`0(gDao6BzJX2k&@=r*+2(t0?tjScIZ~O% z7fSX`C}hfZ8-n z$yHSB#Bvo8ca~0&LD2Pm%$Taw=a+3l8PSh9ib)Joh^PAwFv%iDyNXn!#_`OR;f{HV z$(|VEiL}F$hcC$`C6YqP+L#{K0s%LfaRf5$Juv7UH*bs01J9n+ZeV)9%Jx9V@ne>g zqG__(0Leg0>ui^i6K58q?UCP71^%e8@-;{+2Be^BtrQMhI$Eg&^GEb+XD8W>q(mlafS0QQiV zniiMPR`CD?3YY+LAMJ2Mb1K&}Lw2w{4%X_hJyw#eD}^PZ6d)=|D$#-B;m>ui5OftnO-V|s#Z1vBHn4kK3c+9sRWPiqEwTACD~ zEWwmByo_a+pc|E886W8OWVS!-=mUFLVF5Q6MRmVV%0ZN~SS4VPC3s0d0H{h9VZ)21 z8R&F*LRm@ueVoKQGV{0NkW++}8UreHjGU2l?_Qk#eD9PLL~!=eXRNPqc@+tYL!e|o zof3zoVw=6-y!z>(BEv@dE-O0hU6www1q;}_CC76`0Sc5Hy@^83nk5S6aCix{Xb1Ef z!KQq@rV;2)L6^xMm#W+7i!lN=m(kC z4HTpWg8>W0a}yX0UvL1yKhDcnZcIC+Op*S7^~dy@5mJI7e~dq)zW*3s!9jzTtylLs zN_H$@yiGs_29CbQlNrgsqE<3?9BZ|-bVi;?Ge5_9w#bvUwh6V1=Q+dql5`UjZ8RxB zfZjrVfrdS2g0iS^Rb+WNAe}}_(ZnE*D{GSlh_qHYoLc8?lG^6QnyZGxAap`$EOJ2N zW|&4=!A1e~W)TZ{z$>6XqBo=Hm4F{45W*MBY$R>ax4=si9$c~lP8~n!HX#r*3XGH| zzThx9jQcoUZ}(CDB=ih|mvCGSct7*?FO}FUIJh+A@k6h{KLQn+F(0k)XP(|Hq@aDlV z^Tpjh`b3Yx1}sS*cF}&%2?s|VkkG!e2l2++2{oHdsOCAXO2JdrUBN*ZYry$oiZ^6lrg2(vcjEZn zL4%mXDM(7ZpS88P%jhLC|gq z6Qh`dfTfaA{FqZIuQrqMnrL0hiAu5zPpc)fSV=y8>2OIOT{>d!};6_tA6?D(;Y^H-xaQGmUFCK3GxCab|zqwg}} zzS1JW*&f8+*2o5M(2AoOPu%LBmGfI5T=}SqVdEaky+#WeYqY~@bm05cs4cq7hDOx_ zaeGG((z=)zwT`9tj7&FQuR#h<*R00Vh&?)IkeXAjP1~pj(oFZFjE+YjEv(fejuAtv zSzfB!ObUPwY#Kc;tnRZum1-p%_ISOiqnQ{BWe0S6i@Jj4^cLV<8H!CiyqMOgAsfcX zjAA1YFz4Un3Ofldq-Jwy{lLb;-{|z~OkMqO0&s1W(YL02>=;~GqH!FR>JLm!T<8{H z7=f0u)4GV&qDprEiS~Mr*A=-`ji^SIqir%y;}^={MH$zeTb0?-&~Gjk`b4qJ{6|oB zsi%%|NYzL~C&m2naRMagmLRf7Z z3pih{5!!eXbWEg3<9Hu|=9L|)9qY7(2V}H<%^5~Htr6K(#HoUPtOpqEvh|b0^+}d+ zBSB|@^_E^U0ab(MSiOKtt#j@78A_8B2YRCFrj8Ob@I2VwCaEZb@S! zjo25NZ5Fk($k`t1OC0Y0Jdg(~ZD@kJw;MNysZ4Z|pp9-V(5 z?GOLS!C5B^L_Uy-g+m{Txz00tqu+sBXE{3kJG_}xRN%y)*KrK1P;O%f?ea*|yBLIA zdMza0?EJ|QKaK4IH78IFoX^w(w}f^MdG?%a;*A`GlR)cP<`i2{56H%oS03*iWzj^a zYPW%|!eOfcb~w3?bwL}%_<$;rqsMmxPWIsJT7Lb7prZ>%4KD)1f;j-GJ9&6@qQXgG z?&1w4S>cW8eDN_ZKFqS;v&W!vY+-#{*>3Mo&B{wxQ?c(I&Jj`FVLGhCJBJ`2v#{4XB5@&K z(}W#%7~|V7r+(0(Ddt~db{0#`-xyAR#*4QS4E~|o?Oq-EfQ%7nITv4dG|M4!z8a=VTY$3Z;cL~F0vQXw*MsSwa{fIavinJ4s4}9m5H)RPOA4H!x zEvO%k)RxKTqf1~*R@6fkYEH-)8>_R!nVp5f*fE;3m4%oUW0eiq>9G+zXx;^;M&O=OS-F*xqZ6e{f?&^jX49l; ztnK}6s5-~qqO^!Xt2f-@UBZwtCEpI~y}qLs`%d8$uN;_zWeZXY7dR3(tg}%rUQW?I zf6$AcQ8xvK@&mC#P=^}GeF7CEpymi_Bhn{80$iPfRxK&5K>upzCW&7__M(=yd$XmD z=j9C&4H_uk;xpgN?2xQaKPH7RZcRADuPS4W!cn79yP9wb4Zuu15#jvQPDai=#LCuE zA<=nmKgQ*XT2VyD^OAj_krc}~-=jA~%$BEhZ)tDvSrpS+!9z=7OY>%$$ z+117~G0ss^5NzWTU#6s-wv09mD%0d8(Cx7f0#MzEy zVidUm<3^o@bYAxmVd4eXXJL$BuAy6OSX?8bjNk9iFuy1h1W1p&^oQ3T#>ijHgQWR|(qB%#v-FK-EH z>49%4RVm=WQ&FMD?(&L~&?(f_D!dxFGh*2lMCQ@})WfjJB(l6y*UJNN}Fxk?G{}| zZp^a`OHX3}Y7x|*_6Qi+?s9e(!jcP*tc4F(a8dvhx5sEg9iM@svQJrc3>n9rj`3)~ z^}IlbV8J3f2n!gsJ7eN>YT%df7i=eba_Z8rgDA4}mn&eVj8RUDGzBi%JLU!&&gqFy zvl3_$yx(CQY+KlH=zB973cQ{ZB;>_hrV*;yrY1N#MHvEvUFu?~_kiC4)lo4>izMYQQ$Kk~iCoTr9<1qn;8W$OK?3p9!z1g?AL&OaApMz07j`GpvkT#AxC#Oxam_I^ zvc3@pb;Lz6??pgmV-7+M7wy-C4082v>8#8R)r&EhuQ2_pjEH@A<@o_7aM3SwjaT;! zTD+vBc?vD)ay~w5Di|D)R!DdXiii8{j!&$q1^#ixv0n;Z%i!*W&4AvIaks!V0`>o+ z=l0Vrpxd-TbJkEGi<$FAtD#C!cV0K!h~W~Zo{Dn>WxBYlWf#T}!oqX91p)kF75L%E zA2#gP_ij)nr0m^@S?`PUu{Bx1$8n*<$i;JrCHV&as3G|8K5GXo+*Yw*Pzk3EqSh>O49Ux{t& zD%ayVI1L{>3#pdlP*B3;3^N*CUyFl;>iq-_v8kB|8babaf`Bz60nAUKJDlx|0U4QX z3x>&Jz=CmkT22A$-BeTN8Qm30=QrKjxyBCAIkonInutdf;*l(7*HD3g!RrMr+`tc(SLSiHK+K(PG+}K`HGpM3LZj}j zOqv;uH43h(u0+n@%?u*Tl~w+1k)@2=SFK{PrM0V}0Od}FtRR74ranh_3T!xmLqeStdZ@-~=Z(6I+%$4;v2WZ< z%u)w`Ojz3k4@b=p92{!!RFLB!IU$IHhesu*^u6_$b$((a8fIlg zO~e+fJ`#*Db)`C>;{GFD+{8UsVR!w6dM+3avEBKQRNT({>WKT-~*$X2L7y7=;2imTPmnDSo`Xk>sYzL$aiPvzICC@HD39iyb00P zc7*7uX|CT?Sk@yvpc>M$3#}$gbl?ez^PvV*%7(}sL9k$Oddwgl8)`2z7tm(S7~SVY zWxDY;0Onb(ZG`i?;gvTe{)7?&i*@a&Vsk4-aBM}y8AeH8F&GU)A8 z46z+}1^;P6K&GrJcn3jF5Cp@ViQB0Td>^MT07YWH*SI24wN=*=&xM>TdryX?- z*~>sr08O)?t|0KbDXc9K+K#qibwKz~M!&@9>7zvzg@!56`pIe?VwI^){(${D5PXX` zw=XBXw@nJfe21ifjCV*1hPy+`<3pC0#RWd*zSuMwg?qp-@GASXxdX>!n{F3#v4}bV z_*mZvP_TiA+sQlm49d6lyE_Np#_=%q>vU%seRhTz!YIxiU1G2x7P)mWHc`NII=pq< z14c$+0>s|-R*oRMIDcZkkFvERbA_@si^tNApB4x9^W&WK8pO=$<}d1dM3S zri8(#{iPFD_wTvq^P?!)y}occfJX5_6M9wTpK|Wy!&*5Lbg}W}(1+faLxT(V!{8zu zUci5c^XUiXq0r#MgF<`}L&EiFp8-uKgAdHBALApR>A?NKz3G`k7pK^{3-|#&rR5$J z@cq+0xzW6=(LJEiypz#Bhta=!F+6UmpL96fNy0we(7e!abGntnbrLh#FPrT3K^>+3 zBuIf4L8jC>2Us7jr-5TUw(6qMxgBiB-S2C6B*PM_C`Hx{w2^d8)QLnRCrO=Xw{x1@ zO)88VS-ldYc9ah6Y3GM3Pl`<<9_H5}rS4;=5Mh@@ydh^1VX#q$OK~Tns^v1#w6l#0 zXVYYFty4?!p*r<=`|KXWDr%wyi|820=+}ZcoP-H2n_)N%6~eAHr2AczK4H8yM-(>(91;LJgHbx&qwB>>{5 z$Hvwul9E_Skt~vmsMr%3LqdeuNs($&%E*|qGV6QTqcPh#-|Olt*h^S<2S5V!A3Uz? zvhE$5F`KRo@pZuA?(pw>A2=N9tm5#Z0det9-8KKClhep>He9{<`W zSv^1RL|l-CwNsVFn~hW*=GahMF(%&7Sk+!{j>}Ld|NeLt+9A}iEJx)h5xE~kW;?20i{AEr&>=a@jdW zP2{I|&IgLCUe4n@%l;BIk)OHI4(i)-Rezq$lGGj#SN5c%*wH-I%h~ny%2r$J1eJ(e4eM^H&=Uh%wVp0*|&N)N%OnC~qC86AD{y`q(kjsV81BVZ$D$d;agMnRI@t5$?zkbgx=_g|-g5Bs zAX06=S_>j_x2$5b^3I{$m##IIRJn<$NL8i`l8!v3cB1OQ2m8E!cHCOH{Vl0UYsIzP z;Z%8R@uVT8Zfj?7f9sR9)NuO(`OcARvu&cb9adq;z+8gG%Rs zbf#l3e<-f^!B(>&B)#`r#_5>Y;!HTe3(>3&gaZR>o9v(&Nq@u0>t z%L%Idcu_YW<4N8J@SYQ=tZ#$vwd*ggq{9;=>TepuN-_7sc(93{J~Vcp zl}l*o9x9aO5ZAlkn_P*desqeRqf~b5BTajX9W*+zC)X4*E{t%xPPizls#EVfmwWUs zZ=tu^#wCa-qKvy0K{x(vJUDuGq!2CCDmU4)ro4oQ#8YPKecJeZn(|F{$sI|ia;yRr zZx7`sMZGUT6~$@ZEI3voxDFihV)diH&HSU>1h6DS`-nSq5 z1Knl{x5&R0U8aQwU4)&&Tp4F2V0SiaxIBuP3BoYUYc9Zgb`lQq zH5Rc;j=rMoy^&;bVQpTHtin6|6ey{&=%mg2P%el-}#OrGuQ6fvxez|_C zPsO3KdWzI8>hrlRf=mwI)~oBBgTkks1cO%l!BSVgNN4p=9u%5hCl3h=E;tkN41Qyk zhUzR%12%YdqA>&ypUiu3IS38rGY&DW^;%ODmYvy)Xc*SHqWgaCwr%1pNt526H)t=H zXQ*s@&EQ%efq*-V1GXDfY5e+C%hIOS=GdyG`nNq@6?G@Qo4ETR6^S}QnZ>1)*K!|1)}U)^ur}-Og+BQ> zT&z#+Sv-Azja#+@Q$|~0R+w_(dUJw|n{`lIr6{W%s(x}o$nBZ_bJ_8tU5i^!+JHjh zYu%>>mOI9mDzlOCx?4A^&Po*ZKqkdnTY1Z^^yHp+Knc5m;P>78YtQI9Uv)Lz^O)=W zYssVmo^_(HMB_v(d!H(m+j$g=h!$XFX}_`957wL9JZ8q{{PfXXepZhyh^r5wH6U*o~WgsxTLNI(=S^@v(B^lyqof zK$suD;x+Tb_RGTj6%%wEmadVjwC=r$82gBcL&q|WF#$GZYuQ(d?#R>2wzZ^nhp3k) zM%bz3A%`l+yRXpm(Q4>hyiDo}<(3g?iVbe17FZREOZ8b|GaTm+kcV%4=&|#5mQ4zW z;eZH0iV6yue9LM^c;+SJUfp4l^Yg{e65c9l_k3+>!zou3-Ihdo2cw}g3B$ewC>z;V z=`EIu52g=s*QXKN!yI#XO7Lm3x%dWhFZtQ z^sIY@SG3lY_4qA}K#mNp#es;N-sT%g&6>OeKOc`);LOtlK;Sf`FrmeFotnsF2i~Wq z^>T_)T;~?AwUhC+&gr-1v4qQp(V(g&$-ZuWd+tXrmABgl0&ldCv0WeLE3Rvun-=BE z1a%?;V?I3DII*TEn4UVvI1pqkSe%>u)Le>?I0^~_Df?0$I*sDn64igvK2)c_N~8tO ze+iJ))SAommB6(8gw?5m$1g6oN zZ|g>ts5M5|h#uR&*LU0;mBKT-?9YM^>ayM1(==whvX2jk+%v6;PME5OznDcS%}X9c+9HRrUDg0xZGp=`SJd8z2Kuz#|Nw^|O~ za{N7>%Q+Y0`w={$KufKe>>V+i0j@Vl%S^3mV}Qf5$f>Q=~p_l*Q+NX~X|vifXCK_uz9d_vXI_%V4!P9h14MXyI zkYQ(83wsF8(^Ebl$d0RS8&@_ok515LMOqAx_w5@lQEe9XrU2(h&m#wF-SDrtg;kz- z7SU`=7&nX7t)_O2lyTQYGG%UgW=Y`$yKU696h2!R9K@D|Ust0GrCiPDaOcR_0^iG# z>qfjXuVdof%|Xla)|TrIg>Iu!^!LqUx7{*RF49_14|q3vO5SiP(d)iZ?z+DEEr;1Z zSM0<5L$meIbPjLM*}E87v1i<$i;tdT-r>~rV?W%yAHur)sEE$Hp8hR=x!mInk=s=# z_{DPLM=ps_bHASxc;XW)iI>JDFX27Ff^w@4ic-ih>xJ}oT&g4x&kl}dGP^{V@u z^MHSsN^}u!Vh=8V=}O5-u_Aw6_K7#VG=Ys4{NB<(a?Fk zTJq@o3uI`lZD|Y5ej3!Emm1ex)L+VN6<7e|F5J0cbS0T4N#*S#gy ztCU)m2qddPKo1pQ6fdk+9T_ZwQMINX3&gH5aGA4?^&prT^!bPl{#i~PO`LTD-T)S7 z2jZCnN4(9nhw=+%H<@?k;umlE=%XIB9wsF3TJqE--J0u%Qr@FxUTJ7adP@DPmy%1$q=fi#;NOEQS4Un$wp*2r($&h z_+R?`SW4_w34Ni2k4=ejVx-}bG+i7sD1=OD&d7-c>sT_5s+{9~LOpy^^6*1?u81d+ z7DZoPY?6}WJRt?&fK#3~WJ=EpFKi0tdOA#*2E65Q8C%GK@I@dQ*UJ8-0pIRmd0cqH zjBB^0=E|`#Gk4QbD0Y(uej1I6ct5Uah8QmU;9`V?+6+C)a!$SAxmB4~Gn|X&Z9z&p zx2zf|bM%8zCzo@?&9lNa*0%g)?sS*rIC|urwRb4DO8kI=mf??N_dxa|i5llN0xXNs z0+7TFj+BqkPjc%tspJ9GG3vND;veMnx+#u2!4In^A5K>rYB6)H>|NQ@l5bl+N!9cw zP01$LbQ1G;9@*Dc_O3)g+c<$IJu;2@uD-o4-^KvE?%1yCd3w0E@`kLsp+ zyBlMDwhHPKz1+<<#H*j`HU);iHM`ZXj=ic+Mxu1^9zQ=-T+rAY=ZCxG= z=pUw(7Zo|u;>tsplQr_FlixTlVqRiLD1= zUF_*uD?d{!lnidn_xVL1Bj&N=I&=4>I*0tj5r73C}b zjFw_cV_aNRR{P0Qn8ob!!Th3|D?#@si;W@AHhmdm9!tsV!UUY_WFxM<;RFk*tXrr; z4&yXLVZS!5q0CZ>dDr|clq2P-l8$xXI^&B{JffnR;3s8zN28IJ=(K$wmgdnlEOIW_adGmp{teM(`$&$FHXP!*QZuM`(F_XbOFg z2Juci-m^&wK3YVD0h$}g;TAhC#iv3-vl;}s*Xa2|9kvdMeli|p2)YmLgB@7*ma ztP0Gj2^)>5YOIu=pI&p0ZYIa0k>OSKs=C#^`(6g5P+FL~y!Uc@bD|{USiOke&1OVj z>cbu%hewBX=lvRPLSQTIDp+7<(F@aY7j&abIkCGL%bzWH6~)TP*23aikB36RS8`p(Wz|B)T|Y5E?N^1_T`$}6>ysDc_dcEd z3LE#!na8s zqh6loEM9=|7VrVnrxV?*Di!4<9^IV&fSb&+*ZpjThyS~0r@sT;eI7MP&RR|Eq-XJ` z52M>s4Hls-FvPU8NF=p(NHg*TnB8q;&*A=w_A1fHWbn;A#v2vp`feb(ObUCG`%?pF z>o}1ehuGO_!0O5L{zg+8Zyy#92;N%8T)O{2R5vQ$ry>2)82-E`KKs;Ff_!-pTN?zs zaU(G(->B%qu6A@G8=uo(dcwsSYBB7Q)4o^};g{w_dX;=3uoOYjLl~t^?z!7L(4@e4 z#LzoY*wU3-s2a9}ZNThkH&o9;W(qlh?)3y3gT{^J8Vl^C1E_=Z(+rlTX6y$< zjGs@DI{b8AtHc$y7Y4|dlI9@baT;Jo+88C`MfO<0AFl>5cTK8-`poM-zB1d`HZ@Qq zE&$>syi&VEUVdNvExlB1<7$r17dU0^_SQo3y+|c=4p|jQLprkAphPeV zbuyhR^#`q|V0*h18;3A0K$>C*SCnL5 zrjcRBp^)?1NOBXe5c@XK^Y??$iPl#ni1TpCVnHY4;}zOjChxV4T>T z)PgRrW&xo)LH%}1w|bXU*bL(7z>Du;Ns`1ykHjUQDP`S0Z_J|6CoN>k%NTKxKLa*) z_<3niB+VpQ^!@P{4X!<&UCiB~2m` zJM_#=N=C1pQ>upwV#61_ zn-2x2DGsHs#v%(oGwd7FDdky;%#&nq=qI%()a+lvDv<>q=2)k+0BuR8wkb0 z0@ZqIG)od3%_1KgHQ;NmOR(RzE~b@3AXm@d^yzO-MG6lJ6SfJ1}_9XYw*?b`g}(338gWn#nM0lqz{WJ5YHQ z_L^y4BxcULeNLzSVaJW<#!P1G1GmRRK0Rr(yt-h_fv24{h|iL$*2>8rEoh-Q@WLUT z-Ad{cTeI;yph&1~VAbL@U#=~GfZAI%V?Ml}P4A+#cU1B#Uo^v7oYraw>QeL7;p=La z59Ti3*zxb`E_=roPg)l{yhAsnD;;Pe>bGN{j%K}#->YN<&4`umDOr&2jRR=f%`~_6 zqr?g4%Ct4TPpg}sZ%Hc&=tn2Z=7?ETM#N$2B}s?QPc;-qeJ!vjiOG%E*S7xd_{I<0 zaNgqlb-lS{oPya<2BP4D&ye1*QsG=Pfd1te(MUDkaV3(bnBsn%llu??{#VU;64ll> zj~=|Z{UE#^+0ARs!Bi9VLlr&(2gQ-A<_fNcZrJ(wIHClect6!O3wlG#77x?t#Q0QB z-H=+$*kij744LIW8a2`d6EdbRe=LujUwxr=0V3W zPR79iET3j=c$4py@4?ih)wCzKk&Rqxxc4<|DKj|5V!ea|R9Z+dB0A`!QR--BbBvv2PDAgzq|sZ&vh>i}`@NSHaW#N8Q7G zw}Z!eYMgZc%CvXRg>3@Hb?{*lz{W;7tiQkRmSNSFN<%9!UUCNTehF9TRD_#Ab=eF? z>|UmNq~_bmdX&}fSeIUPym6l6)86F3Cv>&f)_9BTxPnwjPq5MKpS`jv-VReuVo!WN zBg92w+;l)Z>NeXiTaoVhl+{AIaGIr*LOg1n z9BKw0&-!5nazJnqy?v$!LSGZDqX_p-Sk_0c%*frmm~3lnMzP7ke)7z~#Z5enc{R{3 zDcTSD7}$PwJPTa4z6weacSd=}KnFkA&bRkKQu>n)MK~m#diI?-SsqQzl)_2joX_a& zX@eSpYi4|eI{j(+3hx$`4)L)myvKBysa4_3%IILYiaz8(y|^&uW>&z&{~^KKY~_jz zWYIgM2_v+f+$&`LKo6R6Xk?#ms9IV$XPPeC(59o6xs}<;d-atpQN~SGio9yuDrV6A z$P8I~Krqi*vo{rkWImPLj zs5f_S9MMa`hQZo+*eeNjEzC*mHg>0+fYreP z@+-eY)})T=Y7#HgC9;Y_U7aQQ+it{qdf~+Ha(U8RX|zTBL`eb}b9qE^yVM|C+KA+t zqd7YYo>^;b-Lrf5<_DGszU5LvEdvA(5C!7qLn-n=RyhV+03GobdVWuxX>%D>@A6UF zz^i7zN+PQ8k~nt}bfSZ?&X#6099f-ArRPT&K6Ex48b9?dNiC>hPN~(w&zK+^un3c4 zWiD0NvRI?(_^e6SWXc`Z;Jh31os08DbyeX_m?s5thhyOtLE3AGJz7VY5USR1fizZOl~KBq+O{E%r@oQ9o##3IFmn#oC{gLH={>-{_X*%plEPuBOk~>=T8pa zr!T=E-U62T^fDHECjDCGn5o1aHNz~`f0J-MnqtWe(q{uj7gJwk<9GxJ&NzO?fNY$IM>4(v*iG+qk z6GpIK^(eCR>?NFdNDrw|!$fg%3B3Xzc#H2Gw^;fuxcWeS5{h}idOSjhVwX$hx2UU0 z2}%#w=FczsTzzq_F4}G5cj8C0*M-Zv;_jP)-^akK_E=NC0ymC)%Qb0I6e-g;H3iqL^sU#rjNnAXA%oZf@>r9=&qZ9I#%DVw41kwvJ0uuheJ@VCT*jUysT|$ zxGN(_cBaqkSYa2Eput{AlEWc1SCe2~){Tpsa3|Bwc@LsAFyXPwwaJOOrP=EETzSCepF z)}A!nGgYv}`bfCF=~@hB9qX%wB!t5uI9HP|ysYhMNh>3=Zk}r+vUcDn4d>OdDlH^Y z9}Z!9E}l8|9pJhvnB6ic&f9tI06W{!*C@(lv;?cBeLgQ)5%SfOhG>* z2@hf-=&*ZHMG_v!gxjI_!jU9Az-&*C%0CHBTsZNCKC!<$TF<-0=lVGQ>S*BYTfZ>9 z=)iwrNG$uA39bX_#am+8PfSqRGha?n^8|4o^)CI!P$>j)?)47+Dp2zTszVcR^fvrL zP@fAVUg<6PnWF~sCtm1Hij0Q8L*3-VInx{PBSAIc!#UCG@PkI({hbM7YufWf_8lHKqT?qaRKirXNxSa{U3P0R|s{eDT?}mb^?_`G>b}($w3C0-JL{?^AAjV2VpMy{|kBlN!XxCivYG9 zRP!~Q@q4md{V0QIG=asGkHMlsAqQOLYkBKY9+ z>feN-f2hL$pzwNZQZO6WMD!J|G%qPW(@9gftuNoeb@vZKa5dTg;<+y3A7i^k{ag1x zWBlv2-;qzK4Jl-ft7ZRKdSn9RvcMI$$z-|9CS<2Dh;eF%+B9G;I#D<5C^}7i+s>02 zll#lT*1rD_%Rhz&nmqo)^6$xiIo``m|EJ>r9*ul4@V|`q5(y2v4D7bryXXyUSl`fc z!juT{)lc9ew-EU7Z&W70UH&T$o|YJ--2W0?sSx>}V*Xc@Uk*GkC8fXD{EuPJM}hyf zHUDqeXZG9=OnKWBkO|DAWESK618lb8)D0n!$wKf3pK8b;J8S$w9qgKf>BU^^`UkOL zU6Ve&lc4TN+4mgi>$zB4;#_d+NrVbiZVRWIS^VHzlI$3=0P7!9casF)0F)r&ccc<( zV*r_zkRANw_f9d85%JR$9+QI%@-PoZsLdZR<4J_94h}4GcJ7~@0vSAu%s;4uT?JKg zR1H%91tF;d1%(2F+&+?aAgpOES4c<2n;ra@AWRO`&2VYZJ5P41r zSo%yY#`y=FEM%!0q#%>UObfmNLne^o)gRQsF1A4#$m-z0Sv#)MV{(u|z7YF!fXVN9 zn2WjpmDuXs$sbBzqYT!A9}wjI?12G(Jdp%$p&hO;wsv!VA0<4&Z(One9XuMphlCGK zF_00lEeX#~feiSgurcPM5oCV6kAiGY`2>H^BQ$;B1ttVUEkX`({F zbWSCGUw)x8AUbcFUp86eO48h7(eE4BkN`FqC2I&+cr|pGZd5~M+6>MR_-|%yN zTq9Wdw^ys^x0h#X^0wL!98j<5_gp;{k-ZO#uZ{kiRQGFA-80?4VpaSVOZ``Zp2}GP z=D*Ftz~AOo&EI*yFUyQEnl$Hpo79UEsFoLL2665O7) zzZ`CVIV68M>=9`!f29nYc#?h$MI< ziz3i_v8@k4x!l$T9A0c|14b^kHJ56d)cLm);O|fMbP2Zy{k+^iF`^!VJ~#6fB*34q zS%W?|@dYQqAD^yh6V?s-xwyA6piYB6H}FYf+d`p^fIiprQ6<1{oa$*21`qn#xkE9a zwtzm@UaPpb(W3%EpMiXR@$f%SS2PGe4*FTR3(=$IbrMZ>^oZ|e%mwg5q_aR}(PVhW;ef{dI+Pg9zM-FCnuQ&$gjQ1DVh>zbL=Lf6*Bqb$1n| z*%8$k9z|J3G8!OEsKdRFz@KLYP;WETyP1r;qJ>u?`40$@+uD`;AQIba20kZ{qYoHb ztp3se7R8PU%K;)F^lHeZgS&Ft_Z@ulArI-88Le6k_A7)8wT(6@O5Pu+8x7}5428_v zd*U@cnt!83v8F1xcF4RINVdjp(=|aMZ$}Dvzt7z0DT_mB_+zWmtrc9a{l5U&tKiFu zLB<{F-5;~#+eG}cpThOeeo|(5C3MJKXS+>Lg7k_8+m#di3K`&)v{CXJ@MWF36L%e$ zrhYpx73>@TZu#fXHJ{u+%mo1I-VRc-3IDOhSGq{-6`TA|0UM z0R08u=4-&}?gUJe?*F7YkW=*M6i;!~{*M8Pa9sbc`JWYnn*m}rbo^IG{)-pfs+Tjd z5;KW@g^;06f7y*M`v*>%*f;fPAQPGr4p|)>nELRAAxfSBWa_*D+=-$8z?$gD}pKvo9_#vEn(bAUPmNyzHpz-vqN;5Qt|gyJ2< z`W60nSaV|y5#+@bQH%Fh)A=wQ0QjSCt&f9631d=vAJ!(GHRc(& z^at)=4{;?9KxXaCxTjqiGMK0~e^3Xz_+IrxRtE=OGdF~+4i1btdcum5#{!u;lEFU* zIOJZ}qk%|WKdiGGF%qiUzJ4{IgDb%4$J@^17aD|TnZ2c;{nD_;r4ZY3DMT!W|!{j?BO)?UODk*C~{on!PYTd!ObQSb~t|R9xnlu-_%k zp7yG6()rj;enxku{fy_pMH}Apr+J7aPrhTxp58-hdPSb&?YHESq{nHe5xR;pM_pSi zf_c9ssoB?;yV4$)z#nQ#z-O(2ll(NhidS`|v?o)waP5KP>zQ?O^TPTfyXgmbic2c= z&=m~U2qDPSwlneHKPCX-dIDoPRb}i-WHdVrMFuo8$wfJGn=0xm$=^@s(q~ncbtNog zFjx-6e^OUlGX%m7H(+EmliN+l)op2hF_oLe5ZIH}8jVNOPy)h@C0CM%Psh@Kt}b)Z z_9SZPjTs>j-{W!7aeYy`vjAO9;uI0q@PplB58Swsw%Ol}a|#*?{DB4gMtF{XL{A-? zN5oh}a()b#Vo%sK$_m^iE?6V&Z6p9PNwbBi*)PNUG*+r<|BhHf>KiAMSlStSGZW^ql19 zh&#kXZR}+&^i+O-^;3DR*cRc-PyTc%`xIb+@IK*aZd0)a45oAw1!kx&lP)oZ2!!wSA;iWC8(VD-qW| zs~6hLnIyT3Ye@0VS**$&{?!C&`jre$&-(+TH~_3d(*YyLKhegET>^W+2Gl8TKLfdK zq!4Fd>lAY9ca65V(pLaB%q|e~O?eYBV9D({c!QH8=4ZpXAi)oN}<_wS{Z@G;p{#7?-t+^&u*WromKw}X(vB8xa z1?XT7<8=ji<`~NSS|9;sV%q4V6*;Y2uKAMu~Mou=25s%56 zjWeMuWl8V6TPzqqAcP>{GPBZ!LR#ihBYnRv?mOkbsdjg^3Z<~qwZ(A7Mui-7s@gD+sB$rVJ3xo;$ z-v}>14S-+dQqGEF6=Uxb^Q$m{w+i3EZTLNCd>~gipITHD8Rg%gH)qV@kqLKP{#Qs>RfTC}<^uL{~M!#(lvA+TY$^2Fx zqypQ}c(QDUB7W5{^8U9~@Rv0z5+R&sS_fR9b%rdB6V+lT?yqX;(|={r$NZ?XJkkFv z|Dz2f)l6qwq zDF-5+)u90=+Md{S#Qw(u-}hIUOYhSBZl60N@8XU#=O&>U3I#)>KZnCX(-m@q9(x9d zjixDN_PH7g1~HhHxa3m-%$JwJ)Wo@;f?;4@22)0biLgPp!*yYxNehude}?NqM-vyq zgnkF7XzP!L_D%>2`UKV=6^&o$7^(u+9|et@SVedNN*`7f8I4V72#N$&6bX$=?j;(fP$JX^7&rv9x5V(m{!q{`UGQjxLQYWa&|S~b-Ut~%eTL2@ zY5r0G^#vvvftc)5Fcb_-Fg!87kQtO2`I;)s7Z?~}m|y=opkcm1!w5sez(B)vK*4;0 zf)R!a=0^&CLJfXE4K7Cx9)2k~O%z4OM$G*|NZ3h;R9uLHX{{I5NhIshIR9<4@V>9m z-w?EbHh6-C%vjXhOF?3Y5G}5EJ;FmKM=I{;(oPk$f;9UoMp*$O!|d_wVWdd`%QV@yFc84rKOyB_Sf1%m_Jea7hx-p+BFZAmST~j&?_c z0TI-)2qQi8il;w728sxN06>P4@Ga@3AY?KU8-jm6{Tr^0U>soZbx?3_6?%UeDaL+C zSmgWTca9_t>|>JpSd_mmU(tUdSj73q+{`k;)uBTKa42i=^!D$JRl{mvq=pW08x4@K zq9ob%d5PrVvCK#H2M)0t6+ustyh2VgHCTK05BkX7ykbOyj8L|!Y?BaVprl^?L($-? zQZHF|m{bpXOeTIzf$V8zVizb8ZZlDIGtqxDv1>CCZYxoAE75-|v1<$GnVBLvX7-10 zaebuWqHPKZ!$@}M9jxDJ{+JEM4i5P{{W)!kd@sZQI*2aH5I*bK_@E~X`9R!|(f6No z{x$XQ2RO>NXKKQP&nUoJe>e~$;2^kTCPqno{+~m|6T;si6Q=BX`~xwuR3w*zkjdD{ z{DbvP=aQgC|zV^vgw|-(^5X!6YsG=M!XnS%yu!9{)g0T{2{Ka9{SyoheyVF0*(Mwp*QzVLK~1LH8a%@sPFxVJ1#iZ1{FjDZ^G5 zjV#cbh>!)fhJuAMGj$ z{Ptb)E9%pR=BpBQ6(jJnYqf#=Z>{@2?n#G4rwj&}RHG7cI0QG5X7V+yuIhT-+GM|sbs#aXW!v%Z%O_S43C z-N6fmV&Ay~?DC8af`?7Nd&dWWt-!#Z%Y#e{_S?3llxdM_Hp2@dP*RcaD4{DO?~x)R z`)bqS%}pL7;HKs3w6ek1YNxd7OKp&r=%=a9b&DyN@;70>w`JlFvvO$+DtM|Q` z-N&CuQ*CqSObc_3tk=dC*9)hOj8+;uqh zLRX?Zy4Vc@)tU;h36^hoHM%W@crNY5Kb_vYcdWN#mrFU&_Z%R;_-fkCQGAdvGnH_E zJmGQ`hy99sOd}U3z4RegF!JlWcoXB}|7OER7nU=1q zITrrt`c(Cu^E8{U;fkAabdy(!U(koQ&t$<1uLQMN0S`d2uyu7eQU4pcRwe2AMcPYmM{FHjX?+qQUOEsSl9*t|(l8>29&_TZRQe|M$+`sOj=!rP}= zpeYzLk4NTaX7$qe$vTSY@M_O=3(j0%z^^!qUQFX|Qmd>qVd&dj!){4zBYDEj!@8(qS%4}e&g8% z=)33Qa#$ke{xxIquw|M3C?}CrPVmiab)A5uqOq_nBvM&On{C}fL&X-a>veq{D%ym#1^6v#@-3koc<|;>nzuA{6*n1t{Hhbq9>#`{I}$mwKcd<50ff4yt3?8sZX@wC_}k zZZP60gUfu%y1Wv3nP*J<{-w#LiWv{lxsB+>^Qti}#Lian)Z;70>5QeJ zz!))G?&R^t9Kke9&PFPSx1NrZcmTnH=NWY6L1*TGCAQxySwyy06#47Am1Le=>SL#p z8Mks$@YqR>j+0TJ+<24MZ|WEyV{K8zh4knv`3pV}hc5J?XqR)W+g7>)NyA57X@@=M zP|j&EM)NyYumIVQdxK$oV?On|g8YTh6$@K8d{0|ytLNM9gSh<)4(A z+J}^vcW{H1ee?1g1kwWz6F0UE0)Uhvy48$4m45~3x-N%W-Vmi*nVzWd+twR^aQQEYM#xPG=dq1y>AM<4ys(8c8bJ8VOjLUg< z-AXO9UMbB!b0tR!jTaO%NuT$iXnrv0WMptUSrC+A1-S2a|wddN`rn@e{ zk-uF7KLywmDc2)c)v9bzRS$JNcZ#JDFBx0*9c#1|Ia6TWpL zD$|jj?(d9>^9U&5r$z9!*CorttBw2IIDPW{Y(SB?anq?^e;0ejc@s(rr*?XBCU4X; zKXsYD89y^I-~E2*Hc+K462mL9F&^;s`3)tkadj+CL~m#DQeAp`OEVe4oyr&~p0`pK zsr?0C)(gppy(Ro*=dJF%1Rdf`I-gYBvi!-#IP&uR4qMOKA0?bm{f$v2siu}iq!S^g zkJEH?CS=Q}zgFM`tD0pEQ#@79O=`bDj!+pJ7o$2_QFj5(Jz0I~J`@h?T|Cooh@0&R zH^uWsi?{PPZ4-RKTGJCVQ|HP&wNzziZv5yPX4+tH%i<=O9O)hInuA2pVsZbWv>Nfc ztyrP4c_>8Z zy$6fCy7>)nTv^-c-TDD1-Mryrv{z$yM1h@2FOdkR?N}~c14sc4O=$&gK|#?}>$Vvb zN-8EiM4`}?seoI2l9bR$3g^8oSK?NWqt}cEU%h5aTKN<;nP#c4m={qwZypAH=x6*& zYn^G=U5Od-SpQn$qdt5@C@$CH$d03Pc`Kl#s&2NeEji+>%<#(F<8F%3@jBsp6?xRe zqT5$*L=?Ss{!cz(Hoa2-;pD4vqFs^nV9f5X@V@F?LGlFfwI^#P)&8{$k|Iv zUDW<`auUg1yM*>06xnl5WqF&Vq-zcn?pVln(cK1hQE_L3>LzRQuWB~bl>5Ai5Z%5Y zQfDyO*%fVE(^%*mRUgZ!CL0@nOr@z()FMG)w*8#Qg2d&hN^WL_U4*T{?S z5Z${E^yy!*YV}+qP@NmVOlf*eAOYX%Zw_7>#Ht}>p67_QVgKQovoD(Vr4Jj9$JtZm zz0)He>ha|oxcdz8F{|*cFkva+ZG`q$iiNA(75HDI>dKdwZTJT3AHKTT>pkJWspP!r z&(REH0r|btvY=iIgina8O1DB{9A!ito7XZIE7}+|RH=V-V#;-V;#1rAY{0HPVB8B@ zxNGldatpFQY0@pE%(@#~Okg|}Oh0Q@0P5+=*;0SU8CiCed|yP_oU+h_i+yIbui3y3aV93DNhY~~BVasK#B+GAD5|#-?Hf^;7y5jW1_G+4IvrnZRgG3|1DgKHdZNPOuFspW z*ltUEk&0x6mi+UE(V3vDo5%T|$KzkWoj15~kXlVWtXnW1S=@c;>YP|zbaC~FD_zLy z5TRL?)_!vJ7I~=_ZLz~mlXKa5OjqeyY3#vq&=_=ow(HzEaBWsR%+=JT6X8L(F(uyJ zLPV%I%9F%FZ7;cO=d`@1;+c4D*1YTF_HbTpa-c40EwNmT%@O8W38FV#aLUE#UoRgj zXX7A?_cq;4UYBJtsAP|6#?etIL<9}$G>#UpixV8ot!Jev?me=~#a$58uqGXlA2tke z5bh-pTig*Z4>(w&FscA{G&LsU^3q=Iwx-y0oGk-}-J_295CA?u&B{~f2EDXf`O0eP z#nOpfHBI@y#m&5G4_5xt8C;hBSzeO~&JG?OE79 zJ%AQ>`>W~2v@^dKd2lAkTyPRcu-tVw7a%jq9&OE#U15+P-Idi#2fL(1%taN|fFBKi zFl+oU6ZDv4Br*74;YmgDVM|5THY!;spS911p!xcg;Ynra*=cMkw!N}W$e1-zBYPJ0 zVEK+fIeCR{IS0{M+~&rc2JfYDthiiV=MWKEBCOy$P=J}($BCKUNgvk{@R@Sat-Wda zmXfZvY{ZDHb73smFmUeTqfLG|H$2EAad6y(?fBynl=9t>0n36i=_fa7Bxavjxb<5J zxwKKnyqOv2xHCfZkimm@Tp{s2zO&6G9Q*>PX*=5ddAZ(vVpQ(T#sb@S9}@#cX}3zX zsXiF%a%L>FHf+k=*xj06IJP|LhzC3}uefZ|M}Jqh%hEA0nTr=am2KLqJDgy(mw9y0 zdj!ek%SQ4Z4rQtzCdN5wN#%bF_g>L_iO=Jsrb25r?^sc@vUeG=wSjCf=ha>odq?F^ z!=J=I0i-zMXzopftM{!E()6%Z^_(mi#!D>@k>R3MI#eE*Y}zbqx|3BmS|X6(u%`QT zAzwZgd%GA2lzYEuvAmm*!kp-0TZL(MLSSlvg|bxYTagzi?p;y4ysHkoGon~NpCNar z#XaaXT*`bVYrB9v`0XNG*qG$ZrD=rp-i8XX+UDoH;+!cCHsR!mo2-SWuv1=qeRNQ@ z5}VBy=4#W+ryj*LjyydYhP&yzp=Ux&qwb`xzQdX=OnUEeTbT8f&F4ShsmvYjP{ggu zz?vihA8J43Sq~X1XBAJja_OnI`(<&kdbzgIO#l};2R~wO>k=^yoFAbk8ka1d+oItZ z->SVBVwonsO?VN`@}LQ4g4?M0;0ZohqUDXZO6z^ySte&H`eD4gOuNtQXErGt!c1vv)CdTzI^yAfheYbF|$r_(Y=B`dwT zB%en*7K2h0?+<4q6BdoP2GihH26XmI!7T3i$Caqsv3@BY8Od(O(7wX$aaGHdUB z=IlK)Idg(w#qRsuNUT-ut+UjT9I2|7^1>J~sM>sAduABk6f|tj7RR`>#_HlZ_6u}yhMySg@SOe!_!C%c|L zSOk&m$r*=^E$=R53R8i1vTuxQ_PvN~OV1E(a}`wQ=Z=}+jxJ#OcG;F-L{U0RSZAbG zGRDl4yw)VQacHZe8UPQ2%}3kCk5vWw&PCp%H)^&cPki1$9U zwd+V`3Bz2fKy5bQ!}2#Kd(ta(Ju4@_Hqi+az&dt(#)Ccy3}u#x=#KK~G(WQ88xRMb zyK9ou%9l5gvd9VC3wXSp3*cdF6sfmt+K1JO`L3bZcG=y~Zu4$x&Rg?ABxbCJPH|g} z!E=VR-3c;)nCXmJ&xS5f?&crUg)TF(yR{A-D0#JvM=xbUE7U+mC-Le04( zH`0)QszJ6!w9N_9*Gp!4LE*YsQjI2Ik{0x_WBCbi$x$=+Y=2^l8fT>J=CBW)t)rpn3gymq0|E{HPb0Q)#%`7R`429|!{QE3p{MnJKD&w>A%Fo*DZ?JiWOr%f?&#JwEE>@LBGE%cptrPz(|Y^;ZUzje z=E%66slUf1BmHnQUje7~)*XE&lR#7l>q)2q8v@gm72cS-_B&`8_>x#$MFEq*F4!Kt ze^h+gG2LXxg+@V*=ZB3-N!vXshK#p$g3mvQ;7%!6ML_y zY)bOYE-dok^1Is5WfMZ8?1!tJ4Y%XdXsuVo0FfPhuy+rK8u$PL=>U6sED?A!9d=Zw zV^{QGYV0K2g!%}GMSJw>oHyAkQC{TMPM37|wWq!AitnC#+rL4f`{N>R7GTXq=l1Xv)TtuxC?^ z>*3zyvSy4$Lia8@*U?NBgov>|gaO8UMH^%_(jr-tDGLUC*>DLt5S*6z>{AEg>r<${ z{d{pSI=7Kkj~PlG4t^ZPSnGm_$_l?Za&#}r^{FCnCr$zpC7`sVvhuesjc7~+d+IAb z$=dL?x%M!GPk-M2I9SrIg!TzbF(QKA72EA)TsH%o?93(p&SYdI8m$BHfDb{FUkdQ7 z;bq}I*z>x1GS^b-5xp^9A%3hAa*L4RYdJ`9Im?DEM0va>4c|j^_PeWzqq^e+98ibO zT_p>M^bgV;iLjjlH0Ot0YuX$aXy4xC8)s4kEc1%#+QnN!7Zj_9e6}rYZi9b})rLO% zeq{vLu&@~~)lfux+5Y$jC&!$2G&TC@PjXQiwn{OL;L@$n3p%0$!$O4a`u$wZPmK!U zbA>MQ=RgS`xs0vE?X*bUl-6m(P7&Jq^Q1zZ+vygbUPg|>91#F@<`=%~hH1_fQNjHw z80AhmpYT}dKtx7OMg_tr*7}RPvf$#>P}4{U`gSz*hrUQBM?le+-=-YC*Ucg7wH-}B zQ`dyejW-$Kz4A=#-A!we18kw%{gThzESv2<#Ue>WOSUdiG--Nwqx{#|KDeb;@_k$J zJ^MDxV^owRJalW@o-i1^~y2jK2ZSGKoCZ;XRm zM=5CKR*Q42-1H#SV&mc%+$3}_5YV(zE}9iz+jn@zdBPsm!~$V zr!IklGNe9&QrZ%UIg7BoU;{l~1@N-Xz=nK~Nswy>8P38xt-$i)?L1i{fe;=~7HBU) z=#aV44BV2I?A}gGY2=~av4U!QHa}J}p-ZQ^W)b;nAZ%`%+*GYh;5~X--GmS|5B);! z*_RqNoY#sVM#ZX3LaMs07$->lWlpq8bE>WJoa_rr~CMcL|R$Q@cW_~#Wx$=XM*xFWubq}@jotBp_Wec)u! zu{YSXG1iSwRuOL^9($mKGwM%jhkv~_05VINa005J+jR9naln~xPokkk1#=$gNfo7CcwS9c$}VzuCKpo8B%EF;aXo?Zp4GSUpmXxzeO+4-Pp&_A&J zAaRx2VXNClc$#5SA`P1tsECcU#X$WO?Sc=$(w~J zT)(E1M0}utW#@azx{Lb)^U@{02Sp*bxldQd0zPA;?b6a)@H<XVOT`|pi8(JFZ4i1Jh^fR?3m-2-jd=xUKb_v|pkBLJ zb*S*oe(87f-1N{$7#X`-+N{JrwV2^TNpARua}9qwLTak#`!E*sS2cZTglz!BtA)t> zAM3j=XBD(rj#Uz>yCS)!)AeabVN!7V5x<5f4IIxh`fRj34v#X29$GxA z;3i@Br1j<~*h8UifIZj?Q?osztp|gEBD&^!55+@PHU-dwCZVvL6E)O;)>x9aNfgRI zI>!NhqxJwtnk|+Icg=`8i@0%4=jdYjn+q3XVKetU%Am@0->@bvsEX@QJQ2mZKN+=d}D)#eVvUhiP9#hSad$uZpgVyrlkNYSo-(H8^s=VO;$wJZcS=`jS@nkvXfc!L7PH!_sp%`oFT z%ji=?T~j_+14x^OITa;nc7qz$MMa5VAh-Aw+1iB0R@b5c(!>LC+w&^AX{v_CQ`%h? zMFyufZmmJ)`Oqg7-v$yJI68}$Z+Y6iHTQ)w$TWi3k9bgyEHbmnCIc@b0*W;FKlU@) z@aoK^RqAqrQVlis4m=k5=Q60c=Iy@rS7wg4GaBZjzE=2hsTs?+S$214aTYR?bT^12DO!xZjoG>kf5)Pazv_`EDsL$Q|KQ!)=9+JPIo5xue~`W~zea>B<&> zh$GH2KqNYH6SSq5Z;j;7?n^qkb7L=AkD4+{lJl>+$h=rsXSKY;!gk9-$6HIkHih6^ z31_q=>P@+nudWvIKa`kwzOR34&F|K%I#Hl|{u;LR&b4TyTl`|YhW+=}!fTipA6`6w zg7o}-__$@}eWhcfkF4Fv_PW^7n-+vzg;*46a4PHL7CTupIN%t+z@)tD0M}4qMT?O;}#lB{n&NI=@xuq4o9slI`-I#F8uFyXf9DEojEQ%JXFt zV;8Lob%b2~@WDRfSQ|j)$p_bDS=tC=<#<4@yy!#TV1AEVR?0BWJb7O=S+L3VQYJ2P zT~}|CNespNx~-B%`GQ?;%3>3x+XGLnGEl@ILq6@7%%KFAhrUg10?asG&ONe2V1#0}%t30sZWeQ1@Ac-NiQf)Tx6UcG$A}(vfLyaRhqI$Ghfh zrH*8SVe4_DjGQwG?^IPbZgXl$zO{=Zt-Qp;+t#!D+g5ND%RA?|q6vcAUA;311us$eZOw28QEt~taXnl2r~C)$UA6j#lS6P3PU3lv zTaaYk2mIq=ku`Aj@7(9f4~Na&9dl1lAC81C#EkL8$=2-T*-jeMk{;%*!#nOyPXSQ} zk29lU#bUg=688pt;fU^8K2;UoD0O&av>i%`RM_K|VMdB+Y_id%2P=FFN0a0Or#bI! zrnLIK&+E(UcO?%5>~i}OjBRg^U4F=7`Ix`%jTMJ7xHLE`xBtlI&Uh}&KLP*lC`@W` zTdEn7GC!^+_G`*ZfHg_)q9|_DJQvK?P+X!rQPL3hJNYt=~~hxB3au9vQjxZAa6-$Ph_Xc^sR z7yW#FN7QGhC##=)I&>09ZYK`4oNs=+UN!5BoHEZ4??t(qs=x`ttCHJOUD!PkK}GaG z#Vqi9u3%b<#cc+UV?Ta#r_S0c2FBLGx$zx(fWwx)kj6m&aEfNnv*4kW*tf zwD**>Nh&?nQkBWKZsh9xk_Qfk7qZ{oM?T|TZg|n$Q9ln z=`~<1pJKoIHC@IUl|tr5wA2YFI^)!Q-gP<)E0@RDe9z1Gp+ zqXvXkz29x@v_OpZx&Vu_=#T*I8nMY>kj5_Svr+35;z{94xr~)c|T56^gj27_D%xl>>NzHKlay@ zZFRqZZCW)jm#_j8K@#^&ivtjL>s2#ahWK@X1)GbDZxUM6KYIsWhAbVZE$c)~@Agfx zL?~-dZ9<-BgC?t9NF1{5+m$5oS}|{*LnBsE;|u2Zs~eXfrQsTN!JI)XXzs5U$d@Bo zBlDJVSf4aoze+H^RSdv_;$ou?2Q+d~lnu=ec?P40LNuInHr{$P$6|EBD1DlI-g)8uygGUjNk?B; zKo|KM(bL}|Frz-eR*&my1`(^!8WXCf(NdM`G)y7AFn>@U7Rp^C_onewHLTMITFhsyJE=i&c+9PygawAN z_RCdgL0y1@`94l&s*-xVE&AqJN|ZKHYI(HVWH!{(AXhH;E1a?sM+(ofGhtj?tzLC) z{;#J*geK;1bRF-E^{4fC#OeCF8Mz`B2kr%5yaCXvLf0jTu7n9miJ;%+zYTGrOkpLz zDCE;PIr{41(paLXQqDZdwSTdy<0EvP6RKBf!aL1iDaGvC#-v81C#GIyF`$26cI+7y z(W+;LY{^0dwdx8)`{e9laQIFY!VBt}&|NR};}rqjx#gxng*8=!o~3hA%XrItce)R| zwSpue=Q&JXqDr!6K$|(B%yOU?LO^q^H*w@By|bldrAGH38a9{ubE0Oq{**yg}847M~>V z^&`p@^s>poN!qT0TL+d(!X`Rk^QG+O>g`&Ed_%3NhvzO|D-DlS2NAWA3uGM~qWed` z*n>}SZBVdD0+SN6MXQky=om^}|jYR}!O3kYSZDUmETI#A_rE{|T)0YF` zuHIh`!@yoytbNyYFZXz#YotqD@~sxltd3N*3%0(_167zPk+Z!z`Nc*B`*BFdW%YnQ zXYsT;#k6!VK)`XWV!y{eaz35=+r)RF59rr}Y@F>wL#VOhFe%hiOhGPwwo6$~&QY{? z<>4=M9rm=w^^c@ciy+!w!9;>H{VF#D04%cn-%&gxD}vY2d(P`9leUdxkq(YBA`lY$ zCs;qp*sC>NZ~0~6-3+#B5~urjsVwsX0~8eLr0}1tbP-Stv#rQL6&*4t`uJM9E?ZiF z^^Ac=>#X=2n$o$I>Ro9YaxRN~IngdcCg$LuO>YN@=&^BHn?37Ymm043M2CiH*Ciu< z^cER?;W->))S)98D>MCk8T}Dh#yG_0t@dwWKkx2_=}`H zGs~_Z`maG>*|S1A*u1JJ4jaGBHGT8t`xQ zB#nT03~69iSV+jxO7vx({R*ljn_5NtLdfOkZ^S*Y-WgzpjDLWCq%!qn^@n+zIx*@r z-91FEx$gBG&1xFOQXzZU?B}#|KJ~084El!>`NK{gMw?mRds;d-zq1D9tx>jL$l+O9 zV9>Xi7n^{NPmCfqv6))40V%ik<|0bVI9;7gtmETJ=VST9?Xl;s4t>~y?!(uVt(P;Tet zgz}qho}2@$J{j6CKSp5!@+ABw`v|_)>D)fB5`KNB?@}GT!2Jv%XTB`syqSk<^E&h= z6@^bvX8x!5Zm%a_fv_=o38RmB>b=>L8cJJaf80^4;*oan=NDBs&WGAuan|ee6-_$a? z4sqmzG%?w*-|%yN%?`>BH<$`f%BIBSr!%4!8Q|3C93PV@#%SuT9l(R0R1jlDcs7GY zJ;M{-cJ!g?-JcHw2RTOUMU1slvNJ_O^u5Rgm$W`2Pmb3M&;ercA)2G9##@A!N=p7P ziMvAJS6=th!0!&6LvJ9#F%Or0OfVx8u;j~xX&Rr>r?bJi)65Mncr#0@PGx?+9Lwx3 zE>1Y>-t0A_HKa+!4{204VGka!yDr;S7@`7$Vn&tjg^y=}-@JvLUwF1mrcMuk$qbFy zZ?3n_J|5p>#f%J>#J=W?A4a7k?sBG}3ALYS>)AYH!UrYkC2wlxARSrtq6I_{1T`{? ziuvu~8)#B_2pQxF5mHh(?y#nQymFdoFX6p%XiTNzwXCgTD;n51L_W-?q+0<_mrF}yJMX2+7ka~JxsBiL#WMHat3nT(sGTQ zTGmsXJ4TK3pSIJVca)?3z*Wfk#Y~2l<&?h_i@AYl9CF6LU(qE+KRIAq2fU{r75wVl z9n}oTXfMk5A2Kr+;yRpJ{d|`xYGV$N4g`_H8%=Oji@7;|c3Y$0+sp%gJvEB-@(PL! z1IK&IS9&%4Liug~%xM929qx~l4l9$=KE4g_pPYCdC8R%qea~c*Q1QmgrZz1vsASuU zbJ}A;VMiV`>^u7MW5EF60a;lNB9F9)z z)~1f^ZZ_8K>aei%w=W-8a^jx)Y%`ymhk2Z1Vg)o1*kXA{knu)S$A*V317I?1rC6@4 zi=P04gBxjfW{_VSQE{;wgBAFa#60a{%3aPjWI3(A_kxs1qAF`&cLQbe+&=&hcTC`~ zUEj*xFFL+>N?ONaj`P+_22blspVQUuS*1e}uO{dF8J7@pR$#=Lj4b`!>Txt9JrCR2 zw7GpgUtXZEnOyeZ5|$u$h)n?x)7iYV3C62;m$)>kOjNkAWP$`j(OE9K4T_&BIR24D z>3H+n)bhpw*A=l3DlDuo;{4-hei~;FqCM-Z5Y7EWbi;$AZJ2i)L%(91Eeze_xoMI^ z$C|DPw>i$fN-!xNq_acDFW>R#@Fm6Tz%U{pi!jOk*Cfhbk-Y{QN9=FpF*$ z!+w$-a7WLV{Sk{lC%D9@tCcvUw7F#0<*H|S(3{&OpW97Tn0?y^H(&D_^Tg~NdSI3)BJ7avWM|)v zAmm8iJ93Lawk-jFct0uX8-y2_H81ha`TA9NLb+A^bw}Cb0KUmm?WNLku!^^#N=Nrxr|U+gPoE*P{RhB=!gajd} z{{7KIRLPN$@c-i_PUfaIrW}8loPYVsfsR7df;b7}j71XC7>O@DRGC`AH+J31GjnOzw3_EE3<faS*m+8SJgmq*FVh{07bRXVUZadLX3}a+KS{+P*!ySglfSwDFcH5DZ zGbr-x)elu5#{Q+ABCtmdg)j-)*2-J8rFla3(1YibH?iwRPUvOw%{A$`LU&@RQtSBe z$r0N=Z0^t{jj*k;lRxSBj)h#IF?8euZeG6|Mn<BZK%i7tjI)+deBN= zQI)dCe`j1Z@1VTGVb|pOV3`_=dx<>LeWI+Kj?tO+)XFuK4Zv<=S`&Sas-UreVC+`L z#p)~D7HjjkCusM$-`H5KjSCXX67g_4J!U{z#ZLDZT7@2oKJ2F{jbbv$gTJ%8V^0*5>4;U*IuKv4@jh;XDZKW zuD^II%GH0EiD_dO`;lG^A8ISkY_Gh(0LKic!{dB9zHU zLC)L5IT6EO9V#zNr5FHkXi|T<8~rxY136|~+)+=SW$(~1g1nU{f5F| zbL8Ucx~>2EWHGk_4dqP^#ivl?x{(AG48w|OYix(k{sDVffp|t$`O)ZGE(U2AAk9Ff z!EOhq!mwpe_(y&pSUB+5#*HUMcFhUPFyMxoZ<$g=<`QEAaRa%596`doT{YOM7Ho*I zr>D2q(gAHCX)2YT7gO;uX;R2MW(f^ zn5>306TjtVX0eOy8R*&xAoAhT+z zxbUd580RCiW3b71wY#=RxYmXhtZKs~dkGS($#41Co1LI_#k#RxXA@x*>kAb?_2II5 zpBx~waH?T3U=;?h`>|E$WXXbE87v*3F03tys^MdGx%WnA2XM7Gh(m1hHHW;SNFs0Z zHcWT6=#!iz?OGY3aG0rkloA1MkcxeHpf$~lw>t+!bA-wmBjE_^*V!MJxK2tF0GdB` zwRlXOjS?lBe#@}2U80I~WbQ{-@m%~SZ0X2hiooLO_H|4{P{*l!amcA<+N#tF&qQcYsRuzp$-1lRVTFk32fCLvv zV2avIRu#9TX;w-Z%fyO#}bXS7^`M|KM+CY5Si*FW>#)vZge*aEjPcWZU-GIZ60j1Mhm2JTFid45rxsN!#0{XLa3a+-Q;aA^)tL<67_^xqHFc#~U2;lsXM19aN+Zj)#7W?&OV$lEi~FG)+`XAXIE#{UVP{ zQtS0Y<2xaFuZQCKoO?6e!Da9K*{+t*xSVd;7NsHn^6P5^ABxpXK?nAor^l=3c2C;H z&$LLafFiR_>t5opx}}LYSTkC%Tl2$y;Vj?F@A53%hrP2eqnP?eFK?Yu8hTE<+=X`< zFW|Q{n@h%-MRwZba!SWDy$laX%5un02vGhBmJ#?)lV2V!%8&M+FzC^!e;;4J{dLj% zWM}JSYU>10ceginH2BNJe*#XkWaf7ttI9pzW>|lV{-^l*E#VOh0GV1la%v`8fX#o2lE z(nro;1V?jIQzu7`zb}8sc7L|UM4%YE%?b%ABLw9SirNLrzfrjUO&J<#hvsS&NJvJj zNPkcyK0p083irQJj`p;RtW%MZ;*zlcpbUHeD~0FZD8}*6Xudw`H}6pk|E(8$l4t+c z7T$lO%u=2O$30TsKmC(JPxh}AzJH^%3Xt*!KT`M}+k*37Haa5zf0X~R@}H*h&sTlA zl>G#0z62NPFUS3#)CwYGo{>%vfA=E<9|5C+2`Qe|U zf2Illh|YEXE&6BD@F(EU$Iw53mLBx~|Dp7!_@6!QKjJU?{+Iaw?SGZ!P@nx(1LyHv Ne$@4H|6eKb{{cRlW&HpE literal 0 HcmV?d00001 diff --git a/utilities/default-data-handler/src/main/resources/localisations/localizations (hi_IN).xlsx b/utilities/default-data-handler/src/main/resources/localisations-dev/localizations (hi_IN).xlsx similarity index 100% rename from utilities/default-data-handler/src/main/resources/localisations/localizations (hi_IN).xlsx rename to utilities/default-data-handler/src/main/resources/localisations-dev/localizations (hi_IN).xlsx diff --git a/utilities/default-data-handler/src/main/resources/mdmsData/RAINMAKER-PGR/RAINMAKER-PGR.ServiceDefs.json b/utilities/default-data-handler/src/main/resources/mdmsData-dev/RAINMAKER-PGR/RAINMAKER-PGR.ServiceDefs.json similarity index 100% rename from utilities/default-data-handler/src/main/resources/mdmsData/RAINMAKER-PGR/RAINMAKER-PGR.ServiceDefs.json rename to utilities/default-data-handler/src/main/resources/mdmsData-dev/RAINMAKER-PGR/RAINMAKER-PGR.ServiceDefs.json diff --git a/utilities/default-data-handler/src/main/resources/mdmsData/RAINMAKER-PGR/RAINMAKER-PGR.UIConstants.json b/utilities/default-data-handler/src/main/resources/mdmsData-dev/RAINMAKER-PGR/RAINMAKER-PGR.UIConstants.json similarity index 100% rename from utilities/default-data-handler/src/main/resources/mdmsData/RAINMAKER-PGR/RAINMAKER-PGR.UIConstants.json rename to utilities/default-data-handler/src/main/resources/mdmsData-dev/RAINMAKER-PGR/RAINMAKER-PGR.UIConstants.json diff --git a/utilities/default-data-handler/src/main/resources/mdmsData/Workflow/Workflow.AutoEscalation.json b/utilities/default-data-handler/src/main/resources/mdmsData-dev/Workflow/Workflow.AutoEscalation.json similarity index 100% rename from utilities/default-data-handler/src/main/resources/mdmsData/Workflow/Workflow.AutoEscalation.json rename to utilities/default-data-handler/src/main/resources/mdmsData-dev/Workflow/Workflow.AutoEscalation.json diff --git a/utilities/default-data-handler/src/main/resources/mdmsData/Workflow/Workflow.AutoEscalationStatesToIgnore.json b/utilities/default-data-handler/src/main/resources/mdmsData-dev/Workflow/Workflow.AutoEscalationStatesToIgnore.json similarity index 100% rename from utilities/default-data-handler/src/main/resources/mdmsData/Workflow/Workflow.AutoEscalationStatesToIgnore.json rename to utilities/default-data-handler/src/main/resources/mdmsData-dev/Workflow/Workflow.AutoEscalationStatesToIgnore.json diff --git a/utilities/default-data-handler/src/main/resources/mdmsData/Workflow/Workflow.BusinessService.json b/utilities/default-data-handler/src/main/resources/mdmsData-dev/Workflow/Workflow.BusinessService.json similarity index 100% rename from utilities/default-data-handler/src/main/resources/mdmsData/Workflow/Workflow.BusinessService.json rename to utilities/default-data-handler/src/main/resources/mdmsData-dev/Workflow/Workflow.BusinessService.json diff --git a/utilities/default-data-handler/src/main/resources/mdmsData/Workflow/Workflow.BusinessServiceConfig.json b/utilities/default-data-handler/src/main/resources/mdmsData-dev/Workflow/Workflow.BusinessServiceConfig.json similarity index 100% rename from utilities/default-data-handler/src/main/resources/mdmsData/Workflow/Workflow.BusinessServiceConfig.json rename to utilities/default-data-handler/src/main/resources/mdmsData-dev/Workflow/Workflow.BusinessServiceConfig.json diff --git a/utilities/default-data-handler/src/main/resources/mdmsData/Workflow/Workflow.BusinessServiceMasterConfig.json b/utilities/default-data-handler/src/main/resources/mdmsData-dev/Workflow/Workflow.BusinessServiceMasterConfig.json similarity index 100% rename from utilities/default-data-handler/src/main/resources/mdmsData/Workflow/Workflow.BusinessServiceMasterConfig.json rename to utilities/default-data-handler/src/main/resources/mdmsData-dev/Workflow/Workflow.BusinessServiceMasterConfig.json diff --git a/utilities/default-data-handler/src/main/resources/mdmsData/tenant/tenant.citymodule.json b/utilities/default-data-handler/src/main/resources/mdmsData-dev/tenant/tenant.citymodule.json similarity index 100% rename from utilities/default-data-handler/src/main/resources/mdmsData/tenant/tenant.citymodule.json rename to utilities/default-data-handler/src/main/resources/mdmsData-dev/tenant/tenant.citymodule.json diff --git a/utilities/default-data-handler/src/main/resources/mdmsData/tenant/tenant.tenants.json b/utilities/default-data-handler/src/main/resources/mdmsData-dev/tenant/tenant.tenants.json similarity index 100% rename from utilities/default-data-handler/src/main/resources/mdmsData/tenant/tenant.tenants.json rename to utilities/default-data-handler/src/main/resources/mdmsData-dev/tenant/tenant.tenants.json From 7a3f059e824951323ed52c76ec7362e8a93ec3a1 Mon Sep 17 00:00:00 2001 From: Lokendra Tyagi Date: Tue, 4 Nov 2025 14:37:47 +0530 Subject: [PATCH 3/7] refactored --- .../StartupUserAndEmployeeInitializer.java | 2 +- .../src/main/resources/HRMS.json | 2 +- .../src/main/resources/User-dev.json | 4 +- .../localisations-dev/en_IN/egov-hrms.json | 14 - .../localisations-dev/en_IN/egov-user.json | 20 - .../en_IN/rainmaker-common.json | 81302 ---------------- .../localisations-dev/en_IN/rainmaker-hr.json | 2072 - .../en_IN/rainmaker-pgr.json | 31250 ------ .../en_IN/rainmaker-workbench.json | 8270 -- 9 files changed, 4 insertions(+), 122932 deletions(-) delete mode 100644 utilities/default-data-handler/src/main/resources/localisations-dev/en_IN/egov-hrms.json delete mode 100644 utilities/default-data-handler/src/main/resources/localisations-dev/en_IN/egov-user.json delete mode 100644 utilities/default-data-handler/src/main/resources/localisations-dev/en_IN/rainmaker-common.json delete mode 100644 utilities/default-data-handler/src/main/resources/localisations-dev/en_IN/rainmaker-hr.json delete mode 100644 utilities/default-data-handler/src/main/resources/localisations-dev/en_IN/rainmaker-pgr.json delete mode 100644 utilities/default-data-handler/src/main/resources/localisations-dev/en_IN/rainmaker-workbench.json diff --git a/utilities/default-data-handler/src/main/java/org/egov/StartupUserAndEmployeeInitializer.java b/utilities/default-data-handler/src/main/java/org/egov/StartupUserAndEmployeeInitializer.java index 61c1c40b..843cf212 100644 --- a/utilities/default-data-handler/src/main/java/org/egov/StartupUserAndEmployeeInitializer.java +++ b/utilities/default-data-handler/src/main/java/org/egov/StartupUserAndEmployeeInitializer.java @@ -44,7 +44,7 @@ public class StartupUserAndEmployeeInitializer { private int executionCount = 0; private static final int MAX_EXECUTIONS = 4; - @Scheduled(initialDelay = 1 * 30 * 1000, fixedDelay = 1 * 30 * 1000) // 4 minutes + @Scheduled(initialDelay = 4 * 60 * 1000, fixedDelay = 4 * 60 * 1000) // 4 minutes public void runPeriodically() { if (executionCount >= MAX_EXECUTIONS) return; diff --git a/utilities/default-data-handler/src/main/resources/HRMS.json b/utilities/default-data-handler/src/main/resources/HRMS.json index 454dbe39..e2843087 100644 --- a/utilities/default-data-handler/src/main/resources/HRMS.json +++ b/utilities/default-data-handler/src/main/resources/HRMS.json @@ -61,7 +61,7 @@ "user": { "name": "ADMIN User", "gender": null, - "mobileNumber": "9999999904", + "mobileNumber": "9999999801", "active": true, "type": "EMPLOYEE", "roles": [ diff --git a/utilities/default-data-handler/src/main/resources/User-dev.json b/utilities/default-data-handler/src/main/resources/User-dev.json index 9620679c..f39ca7ff 100644 --- a/utilities/default-data-handler/src/main/resources/User-dev.json +++ b/utilities/default-data-handler/src/main/resources/User-dev.json @@ -1,9 +1,9 @@ [ { - "userName": "6555555555", + "userName": "6555555444", "name": "citizen", "gender": null, - "mobileNumber": "6555555555", + "mobileNumber": "6555555444", "active": true, "type": "CITIZEN", "roles": [ diff --git a/utilities/default-data-handler/src/main/resources/localisations-dev/en_IN/egov-hrms.json b/utilities/default-data-handler/src/main/resources/localisations-dev/en_IN/egov-hrms.json deleted file mode 100644 index 84b114f2..00000000 --- a/utilities/default-data-handler/src/main/resources/localisations-dev/en_IN/egov-hrms.json +++ /dev/null @@ -1,14 +0,0 @@ -[ - { - "code": "hrms.employee.create.notification", - "message": "Hi $employeename, Welcome to mSeva. Your profile has been successfully set-up : Username - $username Password - $password, Thank you.", - "module": "egov-hrms", - "locale": "en_IN" - }, - { - "code": "hrms.employee.reactivation.notification", - "message": "Dear ,\nYour profile with employee Username has been activated on .", - "module": "egov-hrms", - "locale": "en_IN" - } -] \ No newline at end of file diff --git a/utilities/default-data-handler/src/main/resources/localisations-dev/en_IN/egov-user.json b/utilities/default-data-handler/src/main/resources/localisations-dev/en_IN/egov-user.json deleted file mode 100644 index 5c7ace22..00000000 --- a/utilities/default-data-handler/src/main/resources/localisations-dev/en_IN/egov-user.json +++ /dev/null @@ -1,20 +0,0 @@ -[ - { - "code": "sms.login.otp.msg", - "message": "Dear Citizen, Your Login OTP is %s.\n\nEGOVS", - "module": "egov-user", - "locale": "en_IN" - }, - { - "code": "sms.pwd.reset.otp.msg", - "message": "Dear Citizen, Your OTP for recovering password is %s.\n\nEGOVS", - "module": "egov-user", - "locale": "en_IN" - }, - { - "code": "sms.register.otp.msg", - "message": "Dear Citizen, Your OTP to complete your mSeva Registration is %s.\n\nEGOVS", - "module": "egov-user", - "locale": "en_IN" - } -] \ No newline at end of file diff --git a/utilities/default-data-handler/src/main/resources/localisations-dev/en_IN/rainmaker-common.json b/utilities/default-data-handler/src/main/resources/localisations-dev/en_IN/rainmaker-common.json deleted file mode 100644 index 7717d2d2..00000000 --- a/utilities/default-data-handler/src/main/resources/localisations-dev/en_IN/rainmaker-common.json +++ /dev/null @@ -1,81302 +0,0 @@ -[ - { - "code": " ACTION_TEST_UC", - "message": "m-Collect", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": " BILLINGSERVICE_BUSINESSSERVICE_OM_WATER_CONNECTION/DISCONNECTION_FEES", - "message": "Water connection/ disconnection fees", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": " ERR_WS_PROP_STATUS_INWORKFLOW", - "message": "Property inworkflow", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": " PQM_PLANT_ANGUL_FSTP ", - "message": "Angul FSTP", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": " PQM_PLANT_PURI_FSTP ", - "message": "Puri FSTP", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "AADHAAR_IS_REQUIRED", - "message": "Aadhaar number is required", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ABG_ABG_GENERATE_NEW_BILL", - "message": "Generate New Bill ", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ABG_ABG_PAY", - "message": "Pay", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ABG_ADVT.Gas_Balloon_Advertisement_CONSUMER_CODE_LABEL", - "message": "Consumer Code", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ABG_ADVT.Hoardings_CONSUMER_CODE_LABEL", - "message": "Consumer Code", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ABG_ADVT.Light_Wala_Board_CONSUMER_CODE_LABEL", - "message": "Consumer Code", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ABG_ADVT.Light_Wala_Board_CONSUMER_CODE_LABEL ", - "message": "Consumer Code", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ABG_ADVT.Unipolls_CONSUMER_CODE_LABEL", - "message": "Consumer No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ABG_ADVT.Wall_Paint_Advertisement_CONSUMER_CODE_LABEL", - "message": "Consumer Code", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ABG_BACK", - "message": "back", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ABG_BILLCANCELLATION_FAILED__MESSAGE_SUB_HEAD", - "message": " ", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ABG_BILLCANCELLATION_SUCESS_MESSAGE_HEAD", - "message": "Bill Cancellation Sucessfull", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ABG_CANCEL_BILL", - "message": "Cancel bill", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ABG_COLLECT", - "message": "Collect", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ABG_COMMON_TABLE_COL_ACTION", - "message": "Action", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ABG_COMMON_TABLE_COL_BILL_AMOUNT", - "message": "Bill Amount (Rs)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ABG_COMMON_TABLE_COL_BILL_DATE", - "message": "Bill Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ABG_COMMON_TABLE_COL_BILL_EXP_DATE:", - "message": "Bill Due Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ABG_COMMON_TABLE_COL_BILL_NO", - "message": "Bill No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ABG_COMMON_TABLE_COL_CONSUMER_NAME", - "message": "Consumer Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ABG_COMMON_TABLE_COL_STATUS", - "message": "Status", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ABG_DOWNLOAD_RECEIPT", - "message": "Download Receipt", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ABG_GENERATE_NEW_BILL", - "message": "Generate New Bill", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ABG_PAY", - "message": "Pay", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ABG_PT_CONSUMER_CODE_LABEL", - "message": "Consumer code", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ABG_PT_CONSUMER_CODE_LABEL_PLACEHOLDER", - "message": "Consumer Code", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ABG_RESET_BUTTON", - "message": "Reset", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ABG_RETRY", - "message": "Retry", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ABG_SEARCH_BILL_COMMON_HEADER", - "message": "Search Bill", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ABG_SW_CONSUMER_CODE_LABEL", - "message": "Consumer No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ABG_TX.Electricity_Chungi_CONSUMER_CODE_LABEL", - "message": "Consumer Code", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ABG_TX.Electricity_Chungi_CONSUMER_CODE_LABEL ", - "message": "Consumer Code", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ABG_TX.No_Dues_Certificate_CONSUMER_CODE_LABEL", - "message": "Consumer No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ABG_TX.TS1_copy_register_for_old_survey_CONSUMER_CODE_LABEL", - "message": "Consumer Code", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ABG_TX.Transfer_Property_Fees_CONSUMER_CODE_LABEL", - "message": "Consumer Code", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ABG_WS_CONSUMER_CODE_LABEL", - "message": "Consumer No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ABG__CONSUMER_CODE_LABEL", - "message": "Consumer Code", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_AE_CREATOR", - "message": "Abstract Estimate Creator", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_AIRPORT_AUTHORITY_APPROVER", - "message": "Airport Authority", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_ANONYMOUS", - "message": "Anonymous User", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_ANONYMUS", - "message": "Anonymus", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_ASSESTCREATOR", - "message": "AssetCreator", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_ASSETCREATOR", - "message": "AssetCreator", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_ASSETREPORTVIEWER", - "message": "AssetReportViewer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_ASSET_ADMINISTRATOR", - "message": "Asset Administrator", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_AUTO_ESCALATE", - "message": "Auto Escalate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_AssetCreator", - "message": "Asset Creator", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_AssetReportViewer", - "message": "Asset Report Viewer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_BANK_COLL_OPERATOR", - "message": "Bank Collection Operator", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_BILL_ACCOUNTANT", - "message": "Bill Accountant", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_BILL_APPROVER", - "message": "Bill Approver", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_BILL_CREATOR", - "message": "Bill Creator", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_BILL_VERIFIER", - "message": "Bill Verifier", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_BILL_VIEWER", - "message": "Bill Viewer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_BIRTH_APPLICATION_CREATOR", - "message": "Birth Application Creator", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_BIRTH_APPLICATION_EDITOR", - "message": "Birth Application Editor", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_BIRTH_APPLICATION_VIEWER", - "message": "Birth Application Viewer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_BIRTH_REPORT_VIEWER", - "message": "Birth Report Viewer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_BND_CEMP", - "message": "Birth & Death Counter Employee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_BPAREG_APPROVER", - "message": "BPAREG Approver", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_BPAREG_DOC_VERIFIER", - "message": "BPAREG doc verifier", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_BPAREG_EMPLOYEE", - "message": "BPAREG Employee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_BPA_APPROVER", - "message": "BPA Services Approver", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_BPA_ARCHITECT", - "message": "BPA Architect", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_BPA_BUILDER", - "message": "BPA Builder", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_BPA_ENGINEER", - "message": "BPA Engineer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_BPA_FIELD_INSPECTOR", - "message": "BPA Field Inspector", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_BPA_NOC_VERIFIER", - "message": "BPA NOC Verifier", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_BPA_STRUCTURALENGINEER", - "message": "BPA Structural Engineer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_BPA_SUPERVISOR", - "message": "BPA Supervisor", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_BPA_TOWNPLANNER", - "message": "BPA Town Planner", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_BPA_VERIFIER", - "message": "BPA Services verifier", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_CBO_ADMIN", - "message": "CBO Admin", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_CEMP", - "message": "Counter Employee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_CFC", - "message": "CFC", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_CITIZEN", - "message": "Citizen", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_CITY_ADMIN", - "message": "City Admin", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_COLL_OPERATOR", - "message": "Collection Operator", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_COLL_RECEIPT_CREATOR", - "message": "Collections Receipt Creator", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_COLL_REMIT_TO_BANK", - "message": "Collections Remitter", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_COLL_REP_VIEW", - "message": "Collection Report Viewer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_COMMISSIONER", - "message": "Commissioner", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_COMMON_EMPLOYEE", - "message": "Common Role for Employees", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_CONTRACTOR_ADVANCE_CREATOR", - "message": "Contractor Advance creator", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_CR_PT", - "message": "Property Tax Receipt Cancellator", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_CR_WS", - "message": "CR WS", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_CSC_COLL_OPERATOR", - "message": "CSC Collection Operator", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_CSR", - "message": "Customer Support Representative", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_DASHBOARD_REPORT_VIEWER", - "message": "Dashboard Report Viewer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_DATAENTRY_ADMIN", - "message": "DATA ENTRY ADMIN", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_DEATH_APPLICATION_CREATOR", - "message": "Death Application Creator", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_DEATH_APPLICATION_EDITOR", - "message": "Death Application Editor", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_DEATH_APPLICATION_VIEWER", - "message": "Death Application Viewer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_DEATH_REPORT_VIEWER", - "message": "Death Report Viewer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_DE_CREATOR", - "message": "Detailed Estimate Creator", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_DGRO", - "message": "Department Grievance Routing Officer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_DIRECTORTESTCODE112234324", - "message": "director123456", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_EGF_ADMINISTRATOR", - "message": "Finance Adminsitrator", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_EGF_BILL_APPROVER", - "message": "EGF Bill Approver", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_EGF_BILL_CREATOR", - "message": "EGF Bill Creator", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_EGF_MASTER_ADMIN", - "message": "Finance Master Admin", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_EGF_PAYMENT_APPROVER", - "message": "Finance Payment Approver", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_EGF_PAYMENT_CREATOR", - "message": "Finance Payment Creator", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_EGF_REPORT_VIEW", - "message": "Finance Report View", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_EGF_VOUCHER_APPROVER", - "message": "Finance Voucher Approver", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_EGF_VOUCHER_CREATOR", - "message": "Finance Voucher Creator", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_EMPLOYEE", - "message": "Employee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_EMPLOYEE_ADMIN", - "message": "EMPLOYEE ADMINr", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_EMPLOYEE_COMMON", - "message": "Employee Common", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_EMPLOYEE_FINANCE", - "message": "Employee Finance", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_ESTIMATE_APPROVER", - "message": "Estimate Approver", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_ESTIMATE_CREATOR", - "message": "Estimate Creator", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_ESTIMATE_VERIFIER", - "message": "Estimate Verifier", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_ESTIMATE_VIEWER", - "message": "Estimate Viewer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_FEMP", - "message": "Field Employee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_FINANCIAL ADMINISTRATOR", - "message": "Financial Administrator", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_FINANCIAL_ADMINISTRATOR", - "message": "Finance Administrator", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_FIRENOC_REPORT_VIEWER", - "message": "FireNOC Report Viewer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_FIRE_NOC_APPROVER", - "message": "FireNoc Approver", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_FSM_ADMIN", - "message": "FSM Administrator", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_FSM_COLLECTOR", - "message": "FSM Payment Collector", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_FSM_CREATOR_EMP", - "message": "FSM Employee Application Creator", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_FSM_DASHBOARD_VIEWER", - "message": "FSM Employee Dashboard Viewer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_FSM_DRIVER", - "message": "FSM Driver", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_FSM_DSO", - "message": "FSM Desluding Operator", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_FSM_EDITOR_EMP", - "message": "FSM Employee Application Editor", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_FSM_EMP_FSTPO", - "message": "FSM FSTP Opperator", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_FSM_REPORT_VIEWER", - "message": "FSM Employee Report Viewer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_FSM_VIEW_EMP", - "message": "FSM Employee Application Viewer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_Financial Administrator", - "message": "Financial Administrator", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_GA", - "message": "Grivance Administrator", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_GIS_USER", - "message": "GIS USER", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_GO", - "message": "Grievance Officer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_GRO", - "message": "Grievance Routing Officer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_HRMS_ADMIN", - "message": "HRMS ADMIN", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_INTERNAL_MICROSERVICE_ROLE", - "message": "Internal Microservice", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_JUNIOR_ENGINEER", - "message": "Junior Engineer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_LEGACY_RECEIPT_CREATOR", - "message": "Legacy Receipt Creator", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_LOA_CREATOR", - "message": "LOA Creator", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_LOCALIZATION_UPLOADER", - "message": "Localization uploader", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_MB_CREATOR", - "message": "MB creator", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_MUKTA_ADMIN", - "message": "MUKTA Admin", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_MUNICIPAL_ENGINEER", - "message": "Municipal Engineer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_MUSTER_ROLL_APPROVER", - "message": "Muster Roll Approver", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_MUSTER_ROLL_VERIFIER", - "message": "Muster Roll Verifier", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_NATADMIN", - "message": "National Admin", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_NOC_APPROVER", - "message": "NoC counter Approver", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_NOC_CEMP", - "message": "NoC counter employee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_NOC_DOC_VERIFIER", - "message": "NoC Doc Verifier", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_NOC_FIELD_INSPECTOR", - "message": "NoC Field Inpector", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_OBPS_REPORT_VIEWER", - "message": "OBPS Report Viewer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_OFFICER_IN_CHARGE", - "message": "Officer in Charge", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_ORG_ADMIN", - "message": "Organisation Admin", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_ORG_STAFF", - "message": "Organisation Staff", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_ORG_VIEWER", - "message": "Organization Viewer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_PGR-ADMIN", - "message": "PGR Administrator", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_PGR_ADMIN", - "message": "CCRS Administrator", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_PGR_LME", - "message": "CCRS Last Mile Employee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_PGR_VIEWER", - "message": "Complaint Viewer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_PROJECT_CREATOR", - "message": "Project Creator", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_PROJECT_VIEWER", - "message": "Project Viewer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_PROPERTY_APPROVER", - "message": "Property Approver", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_PROPERTY_VERIFIER", - "message": "Property Verifier", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_PTADMIN", - "message": "ULB Administrator", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_PTCEMP", - "message": "PT Counter Employee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_PTFEMP", - "message": "PT Field Employee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_PTIS_ADMIN", - "message": "PTIS Admin", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_PTIS_MASTER", - "message": "PTIS Master", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_PTSTADMIN", - "message": "PT State Administrator", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_PTULBADMIN", - "message": "PT ULB Adminsitrator", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_PT_APPROVER", - "message": "PT Counter Approver", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_PT_COLLECTION_EMP", - "message": "PT Collection emp", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_PT_DOC_VERIFIER", - "message": "PT Doc Verifier", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_PT_FIELD_INSPECTOR", - "message": "PT Field Inpector", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_PT_REPORT_VIEWER", - "message": "PT Report Viewer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_PUNJAB_EODB", - "message": "EODB search user", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_QA_AUTOMATION", - "message": "QA Automation", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_RO", - "message": "Redressal Officer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_SEWERAGE_REPORT_VIEWER", - "message": "Sewerage Report Viewer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_STADMIN", - "message": "State Administrator", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_STORE_INCHARGE", - "message": "Store Incharge", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_SUPERUSER", - "message": "Super User", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_SUPERVISOR", - "message": "Supervisor", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_SYSTEM", - "message": "System", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_SYS_INTEGRATOR_FINANCE", - "message": "System Integrator Finance", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_SYS_INTEGRATOR_WATER_SEW", - "message": "System Integrator W&S", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_TECHNICAL_SANCTIONER", - "message": "Technical Sanctioner", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_TESTONECODE112234324", - "message": "test3test2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_TESTTWOCODE11234354", - "message": "test4test1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_TL_ADMIN", - "message": "TL Admin", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_TL_APPROVER", - "message": "TL Approver", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_TL_CEMP", - "message": "TL Counter Employee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_TL_CREATOR", - "message": "TL Creator", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_TL_DOC_VERIFIER", - "message": "Trade License Document verifier", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_TL_FIELD_INSPECTOR", - "message": "Trade License field inspector", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_TL_REPORT_VIEWER", - "message": "TL Report Viewer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_UC_EMP", - "message": "Universal Collection Employee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_ULBADMIN", - "message": "ULB Administrator", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_ULB_OPERATOR", - "message": "ULB Operator", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_WATER_REPORT_VIEWER", - "message": "Water Report Viewer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_WORKS_ADMINISTRATOR", - "message": "Works Administrator", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_WORKS_APPROVER", - "message": "Works Approver", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_WORKS_BILL_CREATOR", - "message": "Works Bill Creator", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_WORKS_FINANCIAL_APPROVER", - "message": "Financials Approver", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_WORKS_MASTER_CREATOR", - "message": "Works Master creator", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_WORK_ORDER_APPROVER", - "message": "Work Order Approver", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_WORK_ORDER_CREATOR", - "message": "Work Order Creator", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_WORK_ORDER_VERIFIER", - "message": "Work Order Verifier", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_WORK_ORDER_VIEWER", - "message": "Work Order Viewer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_WO_CREATOR", - "message": "WO Creator", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCOUNT_HOLDER_NAME", - "message": "Account Holder’s name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCOUNT_HOLDER_NAME_IS_REQUIRED", - "message": "Account holder's name is required", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCOUNT_NUMBER_IS_REQUIRED", - "message": "Account number is required", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACCOUNT_TYPE_IS_REQUIRED", - "message": "Account type is required", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_", - "message": " ", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_0HOME", - "message": "Home", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_11ESTIMATETEMPLATE", - "message": "Estimate Template", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_1PROJECT", - "message": "Projects", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_2ESTIMATE", - "message": "Estimates", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_3CONTRACTS", - "message": "Work Orders", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_3MEASUREMENT", - "message": "Measurement", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_4ATTENDENCEMGMT", - "message": "Muster Rolls", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_5BILLS", - "message": "Billing", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_5MEASUREMENT", - "message": "Measurement", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_5PAYMENT", - "message": "Payment Advice", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_6DASHBOARD", - "message": "Dashboard", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_7MASTERS", - "message": "Organization", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_8WAGESEEKER", - "message": "WageSeeker", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_9HRMS", - "message": "HRMS", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_9MASTERDATA", - "message": "Master Data", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_9MDMS", - "message": "Manage Master Data", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_9TEST", - "message": "TEST", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_9WORKBENCH", - "message": "Schedule of Rates", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_ABOUT_DASHBOARD", - "message": "About the Dashboard", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_ACCOUNTING_ENTITY", - "message": "Accounting Entity", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_ACCOUNTING_RECORDS", - "message": "Accounting Records", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_ACCOUNT_CHEQUES", - "message": "Account Cheques", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_ACTIONS_TEST", - "message": "Action Test", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_ADD_RELEASE", - "message": "Add/Release", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_ADMINISTRATION", - "message": "Administration", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_ALL_COMPLAINTS", - "message": "All Complaints", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_APPLICATION", - "message": "Application", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_APPLICATION_STATUS", - "message": "Application Status", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_APPLICATION_STATUS_REPORT", - "message": "Appliction status report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_APPLY", - "message": "Apply", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_APPLY_NEW_CONNECTION", - "message": "Apply for New Connection", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_APPLY_TL", - "message": "Apply for TL", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_APPROVE_UPLOADED_BUDGET", - "message": "Approve Uploaded Budget", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_APPROVE_UPLOAD_BUDGET", - "message": "Approve Uploaded Budget", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_ASSESS_NEW_PROPERTY", - "message": "Assess New Property", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_ATTENDENCEMGMT", - "message": "Attendance Management", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_ATTENDENCEMGMT_INBOX", - "message": "Attendance Management Inbox", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_ATTENDENCEMGMT_SEARCH", - "message": "Attendance Management Search", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_AUTO_RECONCILE-_STATEMENT_UPLOAD", - "message": "Reconcile Uploaded Statement", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_AUTO_RECONCILE__STATEMENT_UPLOAD", - "message": "Reconcile Uploaded Statement", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_BALANCE_SHEET", - "message": "Balance Sheet", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_BANK", - "message": "Bank", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_BANK_ADVICE_REPORT_FOR_RTGS_BANK_PAYMENT", - "message": "Bank Advice Report for RTGS Bank Payment", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_BANK_BOOK", - "message": "Bank Book", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_BANK_RECONCILIATION", - "message": "Bank Reconciliation", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_BANK_REMITTANCE", - "message": "Bank Remittance", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_BANK_RTGS_ASSIGNMENT", - "message": "RTGS Assignment", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_BANK_STATEMENT_ENTRIES___NOT_IN_BANK_BOOK", - "message": "Bank Statement Entries - Not In Bank Book", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_BANK_TO_BANK_TRANSFER", - "message": "Bank to Bank Transfer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_BILLAMENDMENT", - "message": "Bill Amendment", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_BILLGENIE", - "message": "Bill Genie", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_BILLS", - "message": "Bills accounting", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_BILLS_ACCOUNTING", - "message": "Bills Accounting", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_BILL_CREATE", - "message": "Create Bill", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_BILL_GENERATION", - "message": "BillGenie", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_BILL_INBOX", - "message": "Bills Inbox", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_BILL_PAYMENT", - "message": "Bill Payment", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_BILL_SEARCH", - "message": "Search Bills", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_BILL_VIEW", - "message": "View Bills", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_BIRTH", - "message": "Birth Certificate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_BIRTH_&_DEATH", - "message": "Birth & Death", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_BIRTH_AND_DEATH", - "message": "Birth and Death", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_BIRTH_CERTIFICATE", - "message": "Birth Certificate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_BIRTH_NEW_REGISTRATION", - "message": "Birth Registration", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_BIRTH_RECORDS_COUNT", - "message": "Birth Records Count", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_BIRTH_RECORDS_COUNT_CBLEVEL", - "message": "Birth Records Count by City", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_BIRTH_SEARCH_CERTIFICATE", - "message": "Search Birth Certificate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_BND_PAID_AND_DOWNLOADED_RECORDS", - "message": "Birth & Death Certificate Payment Records", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_BPASTAKEHOLDER", - "message": "BPA Stakeholder Registration", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_BPA_STAKEHOLDER_HOME", - "message": "Building Plan Approval", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_BPA_STAKEHOLDER_REGISTRATION", - "message": "BPA Stakeholder Registration", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_BPA_STAKE_HOLDER_HOME", - "message": "Building Plan Approval", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_BPA_STAKE_HOLDER_SEARCH", - "message": "Search", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_BUDGETING", - "message": "Budgeting", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_BUDGET_ADDITIONAL_APPROPRIATION", - "message": "Budget Additional Appropriation", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_BUDGET_ADDITION_APPROPRIATION", - "message": "Budget Addition Appropriation", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_BUDGET_CONTROL_TYPE", - "message": "Budget Control Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_BUDGET_DEFINITION", - "message": "Budget Definition", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_BUDGET_GROUP", - "message": "Budget Group", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_BUDGET_REPORTS", - "message": "Budget Reports", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_BUDGET_UPLOAD_REPORT", - "message": "Budget Upload Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_BUDGET_VARIANCE_REPORT", - "message": "Budget Variance Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_BUDGET_VARIENCE_REPORT", - "message": "Budget Variance Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_BUDGET_WATCH_REGISTER", - "message": "Budget Watch Register", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_BUILDING_PLAN_APPROVAL", - "message": "Building Plan Approval", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_CANCELLED_RECEIPT_REGISTER", - "message": "Cancelled Receipt Register", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_CANCEL_BILL", - "message": "Cancel Bill", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_CANCEL_BILLS", - "message": "Cancel Bills", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_CANCEL_VOUCHERS", - "message": "Cancel Vouchers", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_CASH_REMITTANCE", - "message": "Cash Remittance", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_CBBND", - "message": "Birth & Death Tabular Reports", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_CHALLAN_PAY", - "message": "Pay Challan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_CHALLAN_REGISTER", - "message": "Challan Register", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_CHALLAN_REGISTER_REPORT", - "message": "Challan Register Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_CHALLAN_SEARCH", - "message": "Search Challan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_CHANNELS_REPORT", - "message": "Channels report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_CHARTOFACCOUNTS", - "message": "Chartofaccounts", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_CHART_OF_ACCOUNTS", - "message": "Chart Of Accounts", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_CHECKLIST", - "message": "Checklist", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_CHECKLIST_CREATE", - "message": "Create Checklist", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_CHECKLIST_INBOX", - "message": "Checklist Inbox", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_CHEQUE_ASSIGNMENT", - "message": "Cheque Assignment", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_CHEQUE_ISSUE_REGISTER", - "message": "Cheque Issue Register", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_CHEQUE_REMITTANCE", - "message": "Cheque Remittance", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_CLOSED_COMPLAINTS", - "message": "Closed Complaints", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_CLOSE_FINANCIAL_YEAR", - "message": "Close Financial Year", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_CLOSE_PERIOD", - "message": "Close Period", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_COA_REPORT", - "message": "COA Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_COLLECTIONS", - "message": "Collections", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_COLLECTION_REGISTER", - "message": "Collection Register", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_COLLECTION_REPORT", - "message": "Collection report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_COLLECTPAYMENT", - "message": "Collect Payment", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_COMMONMASTERDEPARTMENT", - "message": "Department", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_COMMONMASTERUOM", - "message": "UOM", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_COMMONPT", - "message": "Property", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_COMMON_PROPERTY_TAX", - "message": "Common Property Tax", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_COMPLAINTS", - "message": "Citizen Complaint Resolution System", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_COMPLAINTS_TYPE", - "message": "Complaint Types", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_COMPLAINT_TYPES", - "message": "Complaint Types", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_COMPLETE_BILL_REGISTER_REPORT", - "message": "Complete Bill Register Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_CONSTRUCTION_TYPE", - "message": "Construction Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_CONTRACT", - "message": "Work Orders", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_CONTRACTOR", - "message": "Contractor", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_CONTRACTOR_BILL", - "message": "Contractor Bill", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_CONTRACTS", - "message": "Contracts", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_CONTRACTS_CREATE", - "message": "Create Work Order", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_CONTRACTS_INBOX", - "message": "Work Order Inbox", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_CONTRACTS_SEARCH", - "message": "Search Work Order", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_CONTRA_ENTRIES", - "message": "Contra Entries", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_CREATENEWAPPLICATION", - "message": "Create New Application", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_CREATE_ACCOUNTING_ENTITY", - "message": "Create Accounting Entity", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_CREATE_BANK", - "message": "Create Bank", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_CREATE_BANKACCOUNT_MAPPING", - "message": "Create Bankaccount Mapping", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_CREATE_BANK_ACCOUNT", - "message": "Create Bank Accout", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_CREATE_BANK_BRANCH", - "message": "Create Bank Branch", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_CREATE_BUDGET_DEFINITION", - "message": "Create Budget Definition", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_CREATE_BUDGET_GROUP", - "message": "Create Budget Group", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_CREATE_COMPLAINT", - "message": "Create Complaint", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_CREATE_CONTRACTOR", - "message": "Create Contractor", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_CREATE_DEDUCTIONS", - "message": "Create Deductions", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_CREATE_DETAILED_CODE", - "message": "Create Detailed Code", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_CREATE_EMPLOYEE", - "message": "Create Employee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_CREATE_ESTIMATE", - "message": "Create Estimate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_CREATE_FINANCIAL_YEAR", - "message": "Create Financial Year", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_CREATE_FUNCTION", - "message": "Create Function", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_CREATE_FUND", - "message": "Create Fund", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_CREATE_LOI", - "message": "Create LOI", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_CREATE_NEW_BILL", - "message": "Create New Bill", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_CREATE_OTHER_MASTERS", - "message": "Create other masters", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_CREATE_PROJECT", - "message": "Create Project", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_CREATE_PROJECT ", - "message": "Create Project", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_CREATE_PURCHASE_BILL", - "message": "Create Purchase Bill", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_CREATE_PURCHASE_ORDER", - "message": "Create Purchase Order", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_CREATE_SCHEME", - "message": "Create Scheme", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_CREATE_SUBLEDGER_CATEGORY", - "message": "Create Subledger Category", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_CREATE_SUBLEDGER_MASTERS", - "message": "Create Subledger Masters", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_CREATE_SUB_SCHEME", - "message": "Create Sub Scheme", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_CREATE_SUPPLIER", - "message": "Create Supplier", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_CREATE_UPDATE_BUDGET_CONTROL_TYPE", - "message": "Create/Update-Budget Control Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_CREATE_WORK_ORDER", - "message": "Create Work Order", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_CURRENTBILLCANCELLATION", - "message": "Bill cancellation", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_DASHBOARD", - "message": "Dashboard", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_DAY_BOOK_REPORT", - "message": "Day Book Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_DEATH", - "message": "Death Certificate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_DEATH_CERTIFICATE", - "message": "Death Certificate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_DEATH_NEW_REGISTRATION", - "message": "Death Registration", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_DEATH_RECORDS_COUNT", - "message": "Death Records Count", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_DEATH_RECORDS_COUNT_CBLEVEL", - "message": "Death Records Count by City", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_DEATH_SEARCH_CERTIFICATE", - "message": "Search Death Certificate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_DEDUCTIONS", - "message": "Deductions", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_DEDUCTIONS_CHEQUE_ASSIGNMENT", - "message": "Deductions Cheque Assignment", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_DEDUCTIONS_RTGS_ASSIGNMENT", - "message": "Deductions RTGS Assignment", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_DEDUCTIONS_SUMMARY", - "message": "Deductions Summary", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_DEDUCTION_PAYMENTS", - "message": "Deduction Payments", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_DEDUCTION_REPORTS", - "message": "Deduction Reports", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_DEDUCTION_SUMMARY", - "message": "Deductions Summary", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_DEFAULTER_REPORT", - "message": "Defaulter Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_DEPARTMENT", - "message": "Department", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_DEPARTMENTS", - "message": "Departments", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_DEPARTMENTWISE_BUDGET", - "message": "Departmentwise Budget", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_DESCRIPTION", - "message": "Description Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_DESCRIPTION_REPORT", - "message": "Description Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_DETAILED_CODES", - "message": "Detailed Codes", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_DIRECT_BANK_PAYMENTS", - "message": "Direct Bank Payments", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_DISHONORED_CHEQUE_REPORT", - "message": "Dishonoured Cheque report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_DISHONORED_CHEQUE_REPORT_", - "message": "Dishonoured Cheque report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_DISHONOR_CHEQUE_DD", - "message": "Dishonor Cheque/DD", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_DOWNLOAD_BILL_PDF", - "message": "Download Bill PDF", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_DSODASHBOARD", - "message": "DSO Dashboard", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_EDCR_SCRUTINY", - "message": "eDCR Scrutiny", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_EDCR_SCRUTINY_HOME", - "message": "eDCR Scrutiny", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_EDITAPPLICATION", - "message": "Edit Application", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_EDIT_FINANCIAL_YEAR", - "message": "Edit Financial Year", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_EMPLOYEE", - "message": "Employee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_EMPLOYEEDIRECTORY", - "message": "Employee Directory", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_EMPLOYEEINBOX", - "message": "Employee Inbox", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_EMPLOYEE_REPORT", - "message": "Employee Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_ESTIMATE", - "message": "Estimate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_ESTIMATE_INBOX", - "message": "Estimate Inbox", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_EVENTS", - "message": "Events", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_EXPENSE_BILL", - "message": "Expense Bill", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_FAECAL_SLUDGE_MANAGEMENT", - "message": "Faecal Sludge Management", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_FAQS", - "message": "FAQs", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_FILE_COMPLAINT", - "message": "File Complaint", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_FINANCE", - "message": "Finance", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_FINANCE_ROLLOUT_&_ADOPTION", - "message": "Rollout & Adoption Dashboard", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_FINANCIAL_INDICATORS", - "message": "Financial Indicators", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_FINANCIAL_STATEMENTS", - "message": "Financial Statements", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_FINANCIAL_YEAR", - "message": "Financial Year", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_FIRE-NOC", - "message": "Fire Noc", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_FIRENOC", - "message": "Fire No Objection Certificate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_FIRE_NOC", - "message": "Fire Noc", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_FIRE_NOC_INBOX", - "message": "FireNOC Inbox", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_FSM", - "message": "Faecal Sludge Management", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_FSMCREATE", - "message": "Create FSM application", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_FSMDAILYCOLLECTIONREPORT", - "message": "FSM Collection", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_FSMUNREGISTEREDVEHICLELOG", - "message": "Unregistered Vehicle", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_FSMVEHICLETRIP", - "message": "FSM Vehicle Trip", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_FSMVENDORVEHICLEREPORT", - "message": "FSM Vendor Vehicle", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_FSM_AREA_WISE_COLLECTION_REPORT", - "message": "Area Wise Collection Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_FSM_DAILY_COLLECTION_REPORT", - "message": "FSSM_Daily Revenue Collection Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_FSM_DAILY_DESLUDING_REPORT", - "message": "Daily Desluding Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_FSM_DESLUDGING_REQUEST_REPORT", - "message": "FSSM_Desludging Request Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_FSM_FSTP_PLANT_WITH_VEHICLE_LOG_REPORT", - "message": "FSTP Vehicle Log Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_FSM_UNREGISTERED_VEHICLE_LOG", - "message": "FSM Unregistered Vehicle Trip Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_FSM_UNREGISTERED_VEHICLE_LOG_REPORT", - "message": "FSSM_Unregistered Vehicle Trip Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_FSM_VECHILE_LOG_REPORT", - "message": "Vehicle Log Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_FSM_VECHILE_TRIP_REPORT", - "message": "FSSM_Vehicle Trip Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_FSM_VEHICLE_TRIP", - "message": "Registered Vehicle Trip Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_FSM_VENDOR_DRIVER_REPORT", - "message": "FSM Vendor Driver Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_FSM_VENDOR_VEHICLE_REPORT", - "message": "FSM Vendor Vehicle Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_FSTPDETAILS", - "message": "FSTP Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_FSTPINBOX", - "message": "FSTP Inbox", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_FUNCTION", - "message": "Function", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_FUNCTIONWISE_BUDGET", - "message": "Functionwise Budget", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_FUND", - "message": "Fund", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_GARIMA_REPORT_REPORT", - "message": "Garima Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_GENERAL_LEDGER_REPORT", - "message": "General Ledger Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_GROUP_BILLS", - "message": "Group Bills", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_GRO_PERFORMANCE_REPORT", - "message": "GRO Performance Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_HCM", - "message": "HCM Kibana Dasboard", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_HOME", - "message": "Home", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_HRMS", - "message": "HRMS", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_IFRAME", - "message": "iFrame", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_INCOME___EXPENDITURES_STATEMENT", - "message": "Income - Expenditures Statement", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_JOURNAL_BOOK_REPORT", - "message": "Journal Book Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_JOURNAL_VOUCHER", - "message": "Journal Voucher", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_LANGUAGE", - "message": "Language", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_LANGUAGES", - "message": "Language Selection", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_LME_PERFORMANCE_REPORT", - "message": "LME Performance Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_LOCALISATION", - "message": "Localisation", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_LOCALIZATION", - "message": "Localization", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_LOI_INBOX", - "message": "LOI Inbox", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_MANAGE_DEPARTMENT_MASTER", - "message": "Department Master", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_MANAGE_EMPLOYEETYPE_MASTER", - "message": "Employee Master", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_MANAGE_PGR_SERVICE_DEF_MASTER", - "message": "CCRS Service Def Master", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_MANAGE_UOM_MASTER", - "message": "UOM Master", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_MASTER1", - "message": "Master One", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_MASTER2", - "message": "Master Two", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_MASTER3", - "message": "Master Three", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_MASTERMORE", - "message": "Master More", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_MASTERS", - "message": "Masters", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_MASTERS_CREATE_ORGANISATION", - "message": "Create Organisation", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_MASTERS_CREATE_WAGESEEKER", - "message": "Create Wage Seeker", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_MASTERS_SEARCH_ORGANISATION", - "message": "Search Organisation", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_MASTERS_SEARCH_WAGESEEKER", - "message": "Search Wage Seeker", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_MCOLLECT", - "message": "Miscellaneous Collection", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_MDMS", - "message": "Manage Master Data", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_MEASUREMENT_CREATE", - "message": "Measurement Create", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_MEASUREMENT_HEADER", - "message": "Measurement books", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_MEASUREMENT_INBOX", - "message": "Measurement Inbox", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_MEASUREMENT_SEARCH", - "message": "Measurement Search", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_MENUONE", - "message": "Menu One", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_MENUTHREE", - "message": "Menu Three", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_MENUTWO", - "message": "Menu Two", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_MISCELLANEOUS_CONSUMER_RECEIPTS", - "message": "Consumer Receipts", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_MISCELLANEOUS_RECEIPTS", - "message": "Miscellaneous Receipts", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_MISCELLANEOUS_RECEIPT_REGISTER_ULB", - "message": "Receipt Register", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_MISC_BUSINESS_SERVICE_COLLECTIONS", - "message": "Service Collection", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_MIS_REPORT", - "message": "MIS Reports", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_MIS_REPORTS", - "message": "MIS Reports", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_MODIFY_ACCOUNTING_ENTITY", - "message": "Modify Accounting Entity", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_MODIFY_BANK", - "message": "Modify Bank", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_MODIFY_BANK_ACCOUNT", - "message": "Modify Bank Accout", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_MODIFY_BANK_BRANCH", - "message": "Modify Bank Branch", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_MODIFY_BUDGET_DEFINITION", - "message": "Modify Budget Definition", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_MODIFY_BUDGET_GROUP", - "message": "Modify Budget Group", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_MODIFY_CONTRACTOR", - "message": "Modify Contractor", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_MODIFY_DEDUCTIONS", - "message": "Modify Deductions", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_MODIFY_DETAILED_CODE", - "message": "Modify Detailed Code", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_MODIFY_FUNCTION", - "message": "Modify Function", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_MODIFY_FUND", - "message": "Modify Fund", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_MODIFY_OTHER_MASTERS", - "message": "Modify other masters", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_MODIFY_PURCHASE_ORDER", - "message": "Modify Purchase Order", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_MODIFY_SCHEME", - "message": "Modify Scheme", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_MODIFY_SUBLEDGER_CATEGORY", - "message": "Modify Subledger Category", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_MODIFY_SUBLEDGER_MASTERS", - "message": "Modify Subledger Masters", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_MODIFY_SUB_SCHEME", - "message": "Modify Sub Scheme", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_MODIFY_SUPPLIER", - "message": "Modify Supplier", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_MODIFY_WORK_ORDER", - "message": "Modify Work Order", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_MUSTER_HEADER", - "message": "Muster rolls", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_MUSTER_ROLL", - "message": "View Muster Rolls", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_MYCOMPLAINTS", - "message": "My Complaints", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_MY_BILLS", - "message": "My Bills", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_MY_PAYMENTS", - "message": "My Payments", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_M_COLLECT", - "message": "Miscellaneous Collection", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_NATDASHBOARD", - "message": "National dashboard", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_NATIONAL_DASHBOARD_OBPS", - "message": "Online Building Plan Approval System Dashboard", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_NATIONAL_FIRE_NOC", - "message": "Firenoc National Dashboard", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_NATIONAL_MCOLLECT", - "message": "Miscellaneous Collection", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_NATIONAL_OVERVIEW", - "message": "Overview", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_NATIONAL_PGR", - "message": "Citizen Complaint Resolution System", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_NATIONAL_PROPERTY_TAX", - "message": "Property Tax Dashboard", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_NATIONAL_TRADELICENSE", - "message": "Trade License Dashboard", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_NATIONAL_UBRAN_REALTIME_DASHBOARD", - "message": "National Urban Real-Time Dashboard", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_NATIONAL_URBAN_REALTIME_DASHBOARD", - "message": "National Dashboard", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_NATIONAL_URBAN_REALTIME_LANDING_DASHBOARD", - "message": "NURT Dashboard", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_NATIONAL_URBAN_REALTIME_LANDING_PAGE", - "message": "Landing Page", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_NATIONAL_WATER_&_SEWERAGE", - "message": "Water & Sewerage Dashboard", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_NEW_CHALLAN", - "message": "New Challan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_NEW_W&S_APPLICATION", - "message": "Apply New W&S Application", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_NOC", - "message": "NOC", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_OBPS", - "message": "Online Building Permit System", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_OBPS_APPLICATION_STATUS_REPORT", - "message": "OBPS Application Status Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_OBPS_DAILY_COLLECTION_REPORT", - "message": "Daily Collection Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_OBPS_REPORTS", - "message": "OBPS Reports", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_OPENING_BALANCE_ENTRY", - "message": "Opening Balance Entry", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_OPENING_BALANCE_REPORT", - "message": "Opening Balance Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_OPEN_COMPLAINTS", - "message": "Open Complaints", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_OPTION1", - "message": "Option One", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_OPTION2", - "message": "Option Two", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_OPTION3", - "message": "Option Three", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_OTHER_MASTERS", - "message": "Other Masters", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_OVERVIEW", - "message": "Overview", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_PAYMENTS", - "message": "Payments", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_PAYMENT_DOWNLOAD", - "message": "Download Payment Advice", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_PAYMENT_GENERATE", - "message": "Generate Payment Advice", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_PERIOD_END_ACTIVITIES", - "message": "Period End Activities", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_PGR", - "message": "Citizen Complaint Resolution System", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_PGRSERVICEDEFS", - "message": "Citizen Complaint Resolution System Services", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_PGR_DASHBOARD", - "message": "Citizen Complaint Resolution System Dashboard", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_PGR_REPORTS", - "message": "Citizen Complaint Resolution System Reports", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_PGR_ULB_DASHBOARD", - "message": "Citizen Complaint Resolution System ULB Dashboard", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_PLANTTYPE", - "message": "Plant Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_PQM", - "message": "PQM", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_PROJECT", - "message": "Projects", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_PROJECTS", - "message": "Projects", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_PROJECT_SEARCH", - "message": "Search Project", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_PROPERTY_SUBTYPE", - "message": "Property Subtype", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_PROPERTY_TAX", - "message": "Property Tax", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_PT", - "message": "Property Tax", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_PTCOLLECTION_REPORT", - "message": "Collection Register", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_PTRECEIPTCANCELLATION", - "message": "Property Tax Receipt Cancellation", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_PT_COLLECTION", - "message": "PT Collection", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_PT_DASHBOARD", - "message": "PT Dashboard", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_PT_DATA_DUMP", - "message": "PT Data Dump", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_PT_MASTERS", - "message": "PT Masters", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_PT_REPORTS", - "message": "PT Reports", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_PUBLIC_MESSAGE_BROADCAST", - "message": "Public Message Broadcast", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_PURCHASE_ORDER", - "message": "Purchase Order", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_RECEIPTCANCELLATION", - "message": "Receipt Cancellation", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_RECEIPTREGISTER", - "message": "Receipt Register", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_RECEIPTS", - "message": "Receipts", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_RECEIPTS-NOC", - "message": "Receipts", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_RECEIPT_REGISTER", - "message": "Receipt Register", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_RECEPIT_REGISTER", - "message": "Receipt Register Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_RECEPIT_REPORT", - "message": "Receipt Register", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_RECONCILE-UPLOADED-STATEMENT-3", - "message": "Reconcile Upload Statement", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_RECONCILE_UPLOADED_STATEMENT", - "message": "Reconcile Uploaded Statement", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_RECONCILE_WITH_BANK_MANUAL", - "message": "Reconcile with Bank-Manual", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_RECONCILIATION_SUMMARY_REPORT", - "message": "Reconciliation Summary Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_REMITTANCE_COLLECTION_REPORT", - "message": "Remittance Collection Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_REMITTANCE_PENDING", - "message": "Remittance Pending", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_REMITTANCE_PENDING_REPORT", - "message": "Remittance Pending Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_REOPENING_CLOSED_PERIOD", - "message": "Reopening Closed Period", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_REPORTS", - "message": "Reports", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_RESPONSE", - "message": "Response", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_REVENUE_COLLECTIONS", - "message": "Revenue/Collections", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_REVENUE_REPORTS", - "message": "Revenue Reports", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_ROLEACTIONS", - "message": "Role Action", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_ROLES", - "message": "Roles", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_RTGS_ASSIGNMENT", - "message": "RTGS Assignment", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_RTGS_REGISTER_REPORT", - "message": "RTGS register report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_SANITATIONWORKERREPORT", - "message": "Sanitation Worker", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_SANITATIONWORKER_REPORT", - "message": "FSSM_Sanitation Worker Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_SCHEME", - "message": "Scheme", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_SEARCH", - "message": "Search", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_SEARCHAPPLICATION", - "message": "Search Application", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_SEARCHFSM", - "message": "Search FSM", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_SEARCH_APPLICATION", - "message": "BPA Search", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_SEARCH_APPROVED_ESTIMATES", - "message": "Search Approved Estimates", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_SEARCH_BUDGET", - "message": "Search Budget", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_SEARCH_CHALLAN", - "message": "Search Challan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_SEARCH_COMPLAINT", - "message": "Search Complaint", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_SEARCH_COMPLAINTS", - "message": "Search Complaint", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_SEARCH_EMPLOYEE", - "message": "Search Employee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_SEARCH_ESTIMATE", - "message": "Search Estimate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_SEARCH_FIRE_NOC", - "message": "Search Fire NOC", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_SEARCH_FSM_APPLICATION", - "message": "Search FSM Application", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_SEARCH_NOC_APPLICATION", - "message": "NOC Search", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_SEARCH_PROPERTIES", - "message": "Search Properties", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_SEARCH_PROPERTY", - "message": "Search Property", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_SEARCH_RECEIPTS", - "message": "Search Receipts", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_SEARCH_TL", - "message": "Search TL", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_SET_UP", - "message": "Set-up", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_SEWERAGE", - "message": "Sewerage", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_SEWERAGE_SEARCH", - "message": "Sewerage Search", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_SOURCE", - "message": "Source Wise Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_STATE_LEVEL_STATUS", - "message": "State Level Status", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_STATE_LEVEL_TRADE_LICENSE_REGISTRY_REPORT", - "message": "State Level Trade License Registry Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_STATE_LEVEL_TRADE_WISE_COLLECTION", - "message": "State Level Trade Wise Collection", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_STATE_REPORTS", - "message": "State Reports", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_STATE_SOURCE", - "message": "State Source", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_SUBLEDGER_CONFIGURATION", - "message": "Subledger Configuration", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_SUB_LEDGER_REPORT", - "message": "Sub Ledger Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_SUB_LEDGER_SCHEDULE_REPORT", - "message": "Sub Ledger Schedule Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_SUPPLIER", - "message": "Supplier", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_SUPPLIER_BILL", - "message": "Supplier Bill", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_SURE_DASHBOARD", - "message": "SURE Dashboard", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_SURRENDERED_CHEQUE", - "message": "Surrendered Cheque", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_SURRENDER_REASSIGN_CHEQUE", - "message": "Surrender/Reassign Cheque", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_SURRENDER_RTGS", - "message": "Surrender RTGS", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_SW", - "message": "Sewerage", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_TENANT", - "message": "Tenant", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_TESTSTANDARD", - "message": "Test Standard", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_TL", - "message": "Trade License", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_TL_COLLECTION", - "message": "TL Collection", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_TL_REPORTS", - "message": "TL Reports", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_TQM", - "message": "Treatment quality", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_TQMTEST", - "message": "TQM Test", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_TQM_TEST_REPORT", - "message": "FSSM_PQM Test Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_TRADELICENSE", - "message": "Trade License", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_TRADE_2", - "message": "Trade Validations", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_TRADE_3", - "message": "Trade Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_TRADE_ARRAY_TYPES", - "message": "Trade Array type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_TRADE_LICENCE", - "message": "Trade License", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_TRADE_LICENSE", - "message": "Trade License", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_TRADE_LICENSE_APPLICATION_STATUS_REPORT", - "message": "Trade License Application Status Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_TRADE_LICENSE_DAILY_COLLECTION_REPORT", - "message": "Trade License Daily Collection Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_TRADE_LICENSE_REGISTRY_REPORT", - "message": "Trade License Registry Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_TRADE_LICENSE_RENEWAL_PENDING_REPORT", - "message": "Trade License Renewal Pending Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_TRADE_LICENSE_REPORTS", - "message": "Trade License Indicators", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_TRADE_WISE_COLLECTION_REPORT", - "message": "Trade Wise Collection Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_TRANSACTIONS", - "message": "Transactions", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_TRANSFER_CLOSING_BALANCE", - "message": "Transfer Closing Balance", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_TRIAL_BALANCE", - "message": "Trial Balance", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_UC", - "message": "Miscellaneous Collection", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_ULB_EMPLOYEES", - "message": "ULB Wise report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_ULB_INFORMATION", - "message": "Citizen Engagement", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_ULB_REPORT", - "message": "ULB Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_ULB_STATS", - "message": "ULB Stats", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_ULB_WATER_SEWERAGE", - "message": "Water & Sewerage", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_ULB_WISE_PT_COLLECTION_REPORT", - "message": "ULB Wise PT Collection Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_ULB_WISE_STATUS", - "message": "ULB Wise Status", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_UNIVERSAL_COLLECTION", - "message": "Miscellaneous Collection", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_UNIVERSAL_COLLECTION(MCOLLECT)", - "message": "Miscellaneous Collection", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_UNIVERSAL_COLLECTION(MCOLLECT) ", - "message": "MCollect", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_UPDATE_DEPARTMENT_MASTER", - "message": "Department Master", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_UPDATE_EMPLOYEETYPE_MASTER", - "message": "Employee Type Master", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_UPLOADER", - "message": "Uploader", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_UPLOAD_BUDGET", - "message": "Upload Budget", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_VIEW_ACCOUNTING_ENTITY", - "message": "View Accounting Entity", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_VIEW_ACCOUNT_ENTITY", - "message": "View Accounting Entity", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_VIEW_ATTENDENCE", - "message": "View Attendence", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_VIEW_BANK", - "message": "View Bank", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_VIEW_BANKACCOUNT_MAPPING", - "message": "View Bankaccount Mapping", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_VIEW_BANK_ACCOUNT", - "message": "View Bank Accout", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_VIEW_BANK_BRANCH", - "message": "View Bank Branch", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_VIEW_BANK_STATEMENT_UPLOADED_FILES", - "message": "View Bank Statement Uploaded Files", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_VIEW_BILL_REGISTERS", - "message": "View Bill Registers", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_VIEW_BUDGET_DEFINITION", - "message": "View Budget Definition", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_VIEW_BUDGET_GROUP", - "message": "View Budget Group", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_VIEW_CONTRACTOR", - "message": "View Contractor", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_VIEW_DEDUCTIONS", - "message": "View Deductions", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_VIEW_DETAILED_CODE", - "message": "View Detailed Code", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_VIEW_FINANCIAL_YEAR", - "message": "View Financial Year", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_VIEW_FUNCTION", - "message": "View Function", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_VIEW_FUND", - "message": "View Fund", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_VIEW_OTHER_MASTERS", - "message": "View other masters", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_VIEW_PURCHASE_ORDER", - "message": "View Purchase Order", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_VIEW_SCHEME", - "message": "View Scheme", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_VIEW_SUBLEDGER_CATEGORY", - "message": "View Subledger Category", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_VIEW_SUBLEDGER_MASTERS", - "message": "View Subledger Masters", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_VIEW_SUB_SCHEME", - "message": "View Sub Scheme", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_VIEW_SUPPLIER", - "message": "View Supplier", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_VIEW_VOUCHER", - "message": "View Voucher", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_VIEW_WORK_ORDER", - "message": "View Work Order", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_VOUCHER_FROM_BILL", - "message": "Voucher from bill", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_VOUCHER_STATUS_REPORT", - "message": "Voucher Status Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_W&S", - "message": "W&S", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_WAGESEEKER", - "message": "WageSeeker", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_WATER", - "message": "Water", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_WATER_&_SEWERAGE", - "message": "Water & Sewerage", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_WATER_AND_SEWERAGE", - "message": "Water & sewerage", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_WATER_SEARCH", - "message": "Water Search", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_WATER_SEWERAGE", - "message": "Water & Sewerage", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_WNS", - "message": "Water & Sewerage", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_WNS_COLLECTION_REGISTER_REPORT", - "message": "Collection Register", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_WNS_DEFAULTER_REPORT", - "message": "Defaulter Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_WNS_MY_BILLS", - "message": "My Bills", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_WNS_RECEIPT_REGISTER_REPORT", - "message": "Receipt Register ", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_WNS_REPORTS", - "message": "W&S Reports", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_WORKBENCH", - "message": "Workbench", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_WORKS", - "message": "WORKS", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_WORKS_DASHBOARD", - "message": "Mukta Dashboard", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_WORK_ORDER", - "message": "Work Order", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_WO_INBOX", - "message": "Work Order Inbox", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_WS", - "message": "Water & Sewerage", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST__AUTO_RECONCILE-_STATEMENT_UPLOAD", - "message": "Auto reconcile- Statement Upload", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEXT_WS_MY_APPLICATION", - "message": "My Applications", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEXT_WS_MY_CONNECTION", - "message": "My Connections", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_TEXT_WS_SEARCH_AND_PAY", - "message": "Search & Pay", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTION_VIEW_DETAILS", - "message": "View Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTIVE", - "message": "Active", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTIVE_CONNECTIONS_PRESENT_IN", - "message": "active connections present in", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ACTIVE_EMPLOYEES", - "message": "Active Employees", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ADD_MESSAGE_BUTTON", - "message": "ADD MESSAGE", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ADD_NEW_EVENT", - "message": "Add New Event", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ADD_NEW_PUBLIC_MESSAGE", - "message": "Add New Public Message", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ADD_PROPERTY", - "message": "Adding a Property", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ADD_PROPERTY_VIDEO_DESC", - "message": "Pay your property tax dues before due date and get 10% rebate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ADVANCE_CARRYFORWARD", - "message": "Advance CarryForward", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ADVANCE_PAYMENT", - "message": "Advance Payment", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ADVT.GAS_BALLOON_ADVERTISEMENT_FIELD_FEE", - "message": "Field Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ADVT.GAS_BALLOON_ADVERTISEMENT_TAX", - "message": "Gas Balloon", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ADVT.HOARDINGS_CGST", - "message": "CGST", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ADVT.HOARDINGS_FIELD_FEE", - "message": "Field Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ADVT.HOARDINGS_SGST", - "message": "SGST", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ADVT.HOARDINGS_TAX", - "message": "Tax", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ADVT.LIGHT_WALA_BOARD_CGST", - "message": "CGST", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ADVT.LIGHT_WALA_BOARD_FIELD_FEE", - "message": "Field Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ADVT.LIGHT_WALA_BOARD_SGST", - "message": "SGST", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ADVT.LIGHT_WALA_BOARD_TAX", - "message": "Light Wala Board", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ADVT.UNIPOLLS_CGST", - "message": "CGST", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ADVT.UNIPOLLS_FIELD_FEE", - "message": "Field Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ADVT.UNIPOLLS_SGST", - "message": "SGST", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ADVT.UNIPOLLS_TAX", - "message": "Unipolls", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ADVT.WALL_PAINT_ADVERTISEMENT_CGST", - "message": "CGST", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ADVT.WALL_PAINT_ADVERTISEMENT_FIELD_FEE", - "message": "Field Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ADVT.WALL_PAINT_ADVERTISEMENT_SGST", - "message": "SGST", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ADVT.WALL_PAINT_ADVERTISEMENT_TAX", - "message": "Wall Paint Advertisement", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ADVT_GAS_BALLOON_ADVERTISEMENT_FIELD_FEE", - "message": "Feild Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ADVT_GAS_BALLOON_ADVERTISEMENT_FIELD_FEE ", - "message": "Field Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ADVT_GAS_BALLOON_ADVERTISEMENT_TAX", - "message": "Tax", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ADVT_GAS_BALLOON_ADVERTISEMENT_TAX ", - "message": "Tax", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "AGE_LESS_THAN_18_YEARS", - "message": "Age should not be less than 18 years", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "AGE_SHOULD_BE_18_OR_ABOVE", - "message": "Age should be 18 years or above", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "AIRPORT_AUTHORITY", - "message": "Airport Authority", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ALL", - "message": "All", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ALT_OTPSENTTO", - "message": "OTP has been sent to Mobile no", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ALT_OWNER.DULYSIGNED", - "message": "1. Duly signed change request form", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ALT_OWNER.IDENTITYPROOF", - "message": "2. Identity Proof like Aadhar, Voter ID", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "AMOUNT_LESS_THAN_100", - "message": "Amount can't be less than 100", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "AMOUNT_TO_PAY", - "message": "Amount to pay (Rs)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "APPL", - "message": "Applicant details and other General documents", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "APPL.ADDRESSPROOF", - "message": "Address proof", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "APPL.ADDRESSPROOF.ELECTRICITYBILL", - "message": "Electricity Bill", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "APPL.ADDRESSPROOF.PASSPORT", - "message": "Passport", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "APPL.BUILDING_DIAGRAM.ELEVATION_PLAN", - "message": "Elevation Plan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "APPL.BUILDING_DIAGRAM.FLOOR_PLAN", - "message": "Floor Plan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "APPL.BUILDING_DIAGRAM.SECTION_PLAN", - "message": "Section Plan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "APPL.IDENTITYPROOF", - "message": "Identity proof", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "APPL.IDENTITYPROOF.AADHAAR", - "message": "Aadhaar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "APPL.IDENTITYPROOF.DRIVINGLICENSE", - "message": "Driving License", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "APPL.IDENTITYPROOF.PASSPORT", - "message": "Passport", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "APPL.LAC", - "message": "Layout approval copy", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "APPL.LAC.LAC", - "message": "Layout approval copy", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "APPL.LOCALBODY.DTCP_APPROVAL", - "message": "DTCP Approval", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "APPL.LOCALBODY.MUNCIPAL_APPROVAL", - "message": "Muncipal Approval", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "APPL.LOCALBODY.PANCHAYAT_APPROVAL", - "message": "Panchayat Approval", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "APPL.LSVS", - "message": "Location sketch and village sketch", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "APPL.LSVS.LSVS", - "message": "Location sketch and village sketch", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "APPL.LTR", - "message": "Land tax receipt", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "APPL.LTR.LTR", - "message": "Land tax receipt", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "APPL.SSC", - "message": "Structural stability certificate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "APPL.SSC.SSC", - "message": "Structural stability certificate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "APPL.TDP", - "message": "Title deed of the property", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "APPL.TDP.TDP", - "message": "Title deed of the property", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "APPLICATIONSTATUSREPORT", - "message": "Application Status Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "APPLICATION_ISSUED_IN_LAST_12_MONTHS", - "message": "Trade Licenses issued in the last 12 months", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "APPLICATION_NUMBER_ALREADY_EXISTS", - "message": "Application Number already exists", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "APPLICATION_PROCESSED_IN_LAST_12_MONTHS", - "message": "applications processed in last 12 months", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "APPLICATION_PROCESSING_FEE", - "message": "Total fee collected for application processing is about Rs", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "APPLICATION_PROCESSING_TIME", - "message": "Average time of processing an application is less than", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "APPLICATION_RENEWED_IN_LAST_12_MONTHS", - "message": "Trade Licenses renewed in the last 12 months", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "APPLIED", - "message": "Pending for Document Verification", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "APPL_ADDRESSPROOF", - "message": "Address proof", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "APPL_ADDRESSPROOF_ELECTRICITYBILL", - "message": "Electricity Bill", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "APPL_ADDRESSPROOF_PASSPORT", - "message": "Passport", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "APPL_BUILDING_DIAGRAM", - "message": "Building Diagram", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "APPL_BUILDING_DIAGRAM_ELEVATION_PLAN", - "message": "Elevation Plan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "APPL_BUILDING_DIAGRAM_FLOOR_PLAN", - "message": "Floor Plan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "APPL_BUILDING_DIAGRAM_SECTION_PLAN", - "message": "Section Plan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "APPL_IDENTITYPROOF", - "message": "Identity proof", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "APPL_IDENTITYPROOF_AADHAAR", - "message": "Aadhaar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "APPL_IDENTITYPROOF_DRIVINGLICENSE", - "message": "Driving License", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "APPL_IDENTITYPROOF_PASSPORT", - "message": "Passport", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "APPL_LAC", - "message": "Layout approval copy", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "APPL_LAC_LAC", - "message": "Layout approval copy", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "APPL_LOCALBODY", - "message": "Local Body", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "APPL_LOCALBODY_DTCP_APPROVAL", - "message": "DTCP Approval", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "APPL_LOCALBODY_MUNCIPAL_APPROVAL", - "message": "Muncipal Approval", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "APPL_LOCALBODY_PANCHAYAT_APPROVAL", - "message": "Panchayat Approval", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "APPL_LSVS", - "message": "Location sketch and village sketch", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "APPL_LSVS_LSVS", - "message": "Location sketch and village sketch", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "APPL_LTR", - "message": "Land tax receipt", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "APPL_LTR_LTR", - "message": "Land tax receipt", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "APPL_SSC", - "message": "Structural stability certificate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "APPL_SSC_SSC", - "message": "Structural stability certificate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "APPL_TDP", - "message": "Title deed of the property", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "APPL_TDP_TDP", - "message": "Title deed of the property", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "APPROVAL_INPROGRESS", - "message": "Approval In Progress", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "APPROVAL_PENDING", - "message": "Pending for approval", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "APPROVED", - "message": "Approved", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ASSIGN_DSO", - "message": "Assign DSO", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ASSING_DSO", - "message": "Assign DSO", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ATM_INDIVIDUAL_DETAILS", - "message": "Individual Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ATM_SELECT_SKILL", - "message": "Select Skills", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ATM_SKILLS", - "message": "Skills", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ATM_SKILLS_DETAILS", - "message": "Skill Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "AUDIT_DATAVIEWED_BY_LABEL", - "message": "Private Data Viewed by", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "AUDIT_DATAVIEWED_BY_PRIVACY", - "message": "Data Viewed by", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "AUDIT_DATAVIEWED_LABEL", - "message": "Private Data Viewed", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "AUDIT_DATAVIEWED_PRIVACY", - "message": "Data Viewed", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "AUDIT_DATE_LABEL", - "message": "Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "AUDIT_FROM_DATE_LABEL", - "message": "From Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "AUDIT_ROLE_LABEL", - "message": "Role", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "AUDIT_TIME_LABEL", - "message": "Time", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "AUDIT_TO_DATE_LABEL", - "message": "To Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "AUTO-RECONCILE--STATEMENT-UPLOAD-3", - "message": "Reconcile Upload Statement", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "AUTO_APPROVED", - "message": "Auto Approved", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "AXIS", - "message": "AXIS Bank Payment Gateway", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "Ajit Nagar - Area1", - "message": "Ajit Nagar - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "Amritsar", - "message": "Amritsar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "Anjana", - "message": "Anjani", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BANK_ACCOUNT_VALIDATION", - "message": "Enter valid account number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLAMENDMENT_ADDRESSPROOF_LABEL", - "message": "Address Proof", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLAMENDMENT_ARREAR_WRITE_OFF_HEADING", - "message": "Arrear Write Off", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLAMENDMENT_COMMON_BUTTON_APPLY", - "message": "Apply", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLAMENDMENT_COMMON_BUTTON_PRINT", - "message": "Print", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLAMENDMENT_COURTORDER_LABEL", - "message": "Court Order", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLAMENDMENT_COURT_CASE_SETTLEMENT_HEADING", - "message": "Court Case Settlement", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLAMENDMENT_DCB_CORRECTION_HEADING", - "message": "DCB Coreection", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLAMENDMENT_DOCUMENT_NOTE", - "message": "Listed below are the documents needed for this case", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLAMENDMENT_GOVTNOTIFICATION_LABEL", - "message": "Government Notification", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLAMENDMENT_IDENTITYPROOF_LABEL", - "message": "Identity Proof", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLAMENDMENT_OFFICENOTEORDER_LABEL", - "message": "Office Note Order", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLAMENDMENT_ONE_TIME_SETTLEMENT_HEADING", - "message": "One Time Settlement", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLAMENDMENT_OTHERS_HEADING", - "message": "Others", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLAMENDMENT_PASTBILLS_LABEL", - "message": "Past Bills", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLAMENDMENT_REMISSION_FOR_PROPERTY_TAX_HEADING", - "message": "Remission For Property Tax", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLAMENDMENT_REQ_DOCS_HEADER", - "message": "Required Documents", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLAMENDMENT_SELFDECLARATION_LABEL", - "message": "Self Declaration", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLAMENDMENT_SUPPORTINGDOCUMENT_LABEL", - "message": "Supporting Document", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLAMEND_ADDRESSPROOF.AADHAAR", - "message": "Aadhar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLAMEND_ADDRESSPROOF.DRI VING", - "message": "Driving Licence", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLAMEND_ADDRESSPROOF.DRIVING", - "message": "Driving Licence", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLAMEND_ADDRESSPROOF.ELECTRICITYBILL", - "message": "Electricity Bill", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLAMEND_ADDRESSPROOF.PAN", - "message": "Pan Card", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLAMEND_APPLICATION", - "message": "Bill Amendment Application", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLAMEND_APPLICATIONNO", - "message": "Aplication Number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLAMEND_CONSUMERNO", - "message": "Cosumer Number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLAMEND_COURTORDER", - "message": "Court Oder", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLAMEND_GOVTNOTIFICATION", - "message": "Government Notification", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLAMEND_IDENTITYPROOF.AA DHAAR", - "message": "Aadhaar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLAMEND_IDENTITYPROOF.AADHAAR", - "message": "Aadhaar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLAMEND_IDENTITYPROOF.DRIVING", - "message": "Driving License", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLAMEND_IDENTITYPROOF.ELECTRICITYBILL", - "message": "Electricity Bill", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLAMEND_OFFICENOTEORDER ", - "message": "Court Order", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLAMEND_PASTBILLS", - "message": "Past Bills", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLAMEND_SUPPORTINGDOCUM ENT", - "message": "Supporting Document", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLAMEND_SUPPORTINGDOCUMENT", - "message": "Supporting Document", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_ADMN", - "message": "Admin Fees", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_ADMN_ELECTION_RALLY_FEES", - "message": "Election rally fees", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_ADMN_NO_DUES_CERTIFICATE", - "message": "NDC - No Dues Certificate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_ADMN_PARKING_BOOKING_FEE", - "message": "Parking Booking Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_ADMN_PARKING_DURING_ELECTION", - "message": "Parking during election", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_ADMN_ROAD_SHOW", - "message": "Road show", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_ADMN_RTI", - "message": "RTI", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_ADVT_CANOPY_FEE", - "message": "Canopy Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_ADVT_GAS_BALLOON_ADVERTISEMENT", - "message": "Gas Balloon Advertisement", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_ADVT_HOARDINGS", - "message": "Hoardings", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_ADVT_LIGHT_WALA_BOARD", - "message": "Light Wala Board", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_ADVT_OUTDOOR_MEDIA_DISPLAY_FEE", - "message": "Outdoor Media Display Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_ADVT_UNIPOLLS", - "message": "Unipolls", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_ADVT_WALL_PAINT_ADVERTISEMENT", - "message": "Wall Paint Advertisement", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_BIRTH_CERT", - "message": "Birth Certificate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_BPA.LOW_RISK_PERMIT_FEE", - "message": "Permit Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_BPA.NC_APP_FEE", - "message": "Application Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_BPA.NC_OC_APP_FEE", - "message": "Occupancy Certificate Application Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_BPA.NC_OC_SAN_FEE", - "message": "Occupancy Certificate Sanction Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_BPA.NC_SAN_FEE", - "message": "Sanction Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_CH", - "message": "Challans", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_CH_BIDI_&_CIGRETTE_CHALLAN", - "message": "Bidi & Cigrette Challan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_CH_BURING_OF_WASTE_CHALLAN_FEE", - "message": "Burning of Waste Challan fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_CH_BURNING_OF_WASTE_CHALLAN_FEE", - "message": "Burning of Waste Challan fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_CH_CATTLE_CHALLAN", - "message": "Cattle Challan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_CH_CHALLAN_FOR_MISUSE_OF_WATER", - "message": "Challan for Misuse of Water", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_CH_COLLECTION_AND_DEMOLITION_WASTE_CHALLAN_FEE", - "message": "Collection and Demolition Waste Challan fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_CH_DAIRY_ANIMALS_CHALLAN", - "message": "Dairy Animals Challan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_CH_DENGUE_CHALLAN", - "message": "Dengue Challan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_CH_LITTERING_CHALLAN", - "message": "Littering Challan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_CH_PLASTIC_CHALLAN", - "message": "Plastic Challan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_CH_REHRI_CHALLAN", - "message": "Rehri Challan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_CH_SANTITATION_DUMPING_GARBAGE", - "message": "Santitation dumping garbage", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_CH_SBM_GARBAGE_PLASTIC_POLYTHENE_CHALLAN", - "message": "SBM garbage plastic polythene challan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_CSS", - "message": "Cess", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_CSS_COW_CESS", - "message": "Cow Cess", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_CSS_LABOR_CESS", - "message": "Labor Cess", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_DEATH_CERT", - "message": "Death Certificate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_FIRENOC", - "message": "FIRENOC", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_FN", - "message": "Finance Fees", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_FN_ADVANCE_PROVIDENT_FUND", - "message": "Advance Provident Fund", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_FN_CPF_RECEIVED_CHECK", - "message": "CPF received check", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_FN_GPF", - "message": "GPF", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_FN_GRANTS_CHEQUE", - "message": "Grants cheque", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_FN_PF_TRANSFER_(ACCOUNTS)", - "message": "PF transfer (Accounts)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_FN_PROVIDENT_FUND_PROCESSING_FEES", - "message": "Provident Fund Processing Fees", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_FN_RECOVERY_EMPLOYEE/CONTRACTOR", - "message": "Recovery employee/contractor", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_FN_RECOVERY_EMPLOYEE_CONTRACTOR", - "message": "Recovery employee contractor", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_FN_SECURITY_DEPOSIT_FEE_REFUNDABLE FEE", - "message": "Security Deposit Fee(Refundable Fee)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_FN_SECURITY_DEPOSIT_FEE_REFUNDABLE_FEE", - "message": "Security Deposit Fee (Refundable Fee)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_FN_TENDER_EARNEST_MONEY_DEPOSIT_REFUNDABLE FEE", - "message": "Tender Earnest Money Deposit ( Refundable Fee)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_FN_TENDER_EARNEST_MONEY_DEPOSIT_REFUNDABLE_FEE", - "message": "Tender Earnest Money Deposit (Refundable fee)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_FTP", - "message": "Fee Town Planning", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_FTP_ARCHITECT_LICENSE_FEE", - "message": "Architect license fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_FTP_BUILDING_PLANNER_RENEW", - "message": "Building planner renew", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_FTP_COMPOSITION_FEES", - "message": "Composition fees", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_FTP_COMPREMASING_FEES", - "message": "Compremasing fees", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_FTP_CONSTRUCTION_WASTE", - "message": "Construction Waste", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_FTP_DEMOLITION_WASTE", - "message": "Demolition Waste", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_FTP_DRAFTSMEN_FEES", - "message": "Draftsmen fees", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_FTP_LEAVE_ENCASHMENT_AND_GRATUITY", - "message": "Leave encashment and gratuity", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_FTP_LEAVE_ENCASHMENT_AND_GRATUTY", - "message": "Leave encashment and gratuty", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_FTP_LICENSE_FEES_BUILDING_BRANCH", - "message": "License fees building branch", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_FTP_TELECOM_TOWER_FEES", - "message": "Telecom tower fees", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_LCF", - "message": "License Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_LCF_MANUAL_RIKSHAW", - "message": "Manual Rikshaw", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_LCF_REHRI_RICKSHAW_FEE", - "message": "Rehri/Rickshaw Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_LCF_TRADE_LICENSE_FEE", - "message": "Trade License Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_NKS", - "message": "Naksha/Building Manual Fees", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_NKS_ MALBA_FEES", - "message": "Malba Fees", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_NKS_2_YEAR_TIME_LIMIT_OF_RENEWAL_BUILDING_NAKSHA", - "message": "2 year time limit of Renewal Building Naksha", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_NKS_ALTERATION_ADDITIONAL_CHARGE", - "message": "Alteration additional charge", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_NKS_BOUNDARY_WALL_FEES", - "message": "Boundary Wall Fees", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_NKS_BUILDING_FEES", - "message": "Building Fees", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_NKS_BUILDING_SAFETY_CERTIFICATE_FEE", - "message": "Building safety Certificate fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_NKS_CHANGE_OF_LAND_USE_FEES", - "message": "Change Of Land Use Fees", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_NKS_COLONY_SAMBANDHI_FEES", - "message": "Colony Sambandhi fees", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_NKS_DEVELOPMENT_FEES", - "message": "Development Fees", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_NKS_ECONOMIC_WEAKER_SECTION_PROJECTS_FEES", - "message": "Economic Weaker Section Projects Fees", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_NKS_ECONOMIC_WEAKER_SECTION_SCHEME_CHARGES", - "message": "Economic Weaker Section Scheme Charges", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_NKS_HADUD_CERTIFICATE_FEES", - "message": "Hadud Certificate Fees", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_NKS_INFORMATION_CERTIFICATE_FEE", - "message": "Information Certificate fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_NKS_MALBA_FEES", - "message": "Malba Fees", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_NKS_NAKSHA_CHANGES", - "message": "Naksha changes", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_NKS_NAKSHA_FEES", - "message": "Naksha fees", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_NKS_NAKSHA_RENEW_FEES", - "message": "Naksha renew fees", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_NKS_NAKSHA_SAMJOTA_FEES", - "message": "Naksha samjota fees", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_NKS_NOC/COMPLETION_OF_BUILDING_APPROVAL", - "message": "NOC/Completion of building approval", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_NKS_NOC_COMPLETION_OF_BUILDING_APPROVAL", - "message": "NOC completion of building approval", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_NKS_NO_DUES_CERTIFICATE", - "message": "No Dues Certificate fees", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_NKS_NO_DUE_CERTIFICATE_FEES", - "message": "No Due Certificate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_NKS_OUTDOOR_BUILDING_FEES", - "message": "Outdoor Building Fees", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_NKS_RAIN_HARVESTING_CHARGES", - "message": "Rain Harvesting Charges", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_NKS_REGULARISATION_OF_BUILDINGS", - "message": "Regularisation of Buildings", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_NKS_SUB_DIVISION_CHARGES_FEE", - "message": "Sub division charges fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_NKS_UNDER_DEVELOPMENT_FEES", - "message": "Under Development Fees", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_NKS__MALBA_FEES", - "message": " Malba fees", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_OM", - "message": "O&M Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_OM_PLUMBER_LICENSE_FEE", - "message": "Plumber License Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_OM_ROAD_CUT_FEES", - "message": "Road Cut Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_OM_SEWERAGE_DISCONNECTION_CONNECTION_FEES", - "message": "Sewerage Disconnection/Connection Fees", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_OM_WATER_CONNECTION/ DISCONNECTION_FEES", - "message": "Water connection/disconnection fees", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_OM_WATER_CONNECTION/DISCONNECTION_FEES", - "message": "Water connection / disconnection fees", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_OM_WATER_CONNECTION_DISCONNECTION_FEES", - "message": "Water connection disconnection fees", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_OTHER", - "message": "Other Fees", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_OTHER_BUS_ADDA_FEE", - "message": "Bus Adda Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_OTHER_CANDY_FEE_SLAUGHTER_HOUSE", - "message": "Candy fee (Slaughter House)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_OTHER_CONSERVANCY_FEE", - "message": "Conservancy fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_OTHER_DISPENSARY_FEE", - "message": "Dispensary Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_OTHER_DOG_REGISTRATION", - "message": "Dog Registration", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_OTHER_FIRE_CALL_REPORT_FEE", - "message": "Fire Call Report Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_OTHER_FIRE_NOC_FEE", - "message": "Fire NOC Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_OTHER_FIRE_TENDER_FEE", - "message": "Fire Tender Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_OTHER_LICENSE_FEE_SLAUGHTER_HOUSE", - "message": "License fee (Slaughter House)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_OTHER_MISC_CHALLANS", - "message": "Misc. Challans", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_OTHER_NOC_FEE", - "message": "NOC Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_OTHER_NOC_FEES", - "message": "NOC Fees", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_OTHER_NO_DUE_CERTIFICATE_ELECTRICITY", - "message": "No due certificate electricity", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_OTHER_OTHERS_FEE", - "message": "Others Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_OTHER_OTHER_FEES", - "message": "Other fees", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_OTHER_REGISTERY_AND_BANK_LOAN", - "message": "Registery and bank loan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_OTHER_SALE_OF_COMPOST_FEES", - "message": "Sale of Compost Fees", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_OTHER_SALE_OF_RECYCLABLE_FEES", - "message": "Sale of Recyclable Fees", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_OTHER_STREET_LIGHT_POLE_TRANSFER_FEE", - "message": "Street Light Pole Transfer fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_OTHER_SWIMMING_POOL_AND_GYMNACTICS_HALL_FEES", - "message": "Swimming Pool And Gymnactics Hall Fees", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_OTHER_WATER_CHARGES", - "message": "Water Charges", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_PT", - "message": "Property Tax", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_PT_MUTATION", - "message": "Transfer of Ownership", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_RT", - "message": "Rents", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_RT_COMMERCIAL_USE_OF_MUNICIPAL_LAND", - "message": "Commercial Use of Municipal Land", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_RT_COMMUNITY_CENTRE_BOOKING_FEE", - "message": "Community Centre Booking Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_RT_JAMIN_THEKA", - "message": "Jamin Theka", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_RT_LAND_RENT", - "message": "Land Rent", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_RT_MUNICIPAL_SHOPS_RENT", - "message": "Municipal Shops Rent", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_RT_PARKING_FEE", - "message": "Parking Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_RT_SALE_OF_LAND", - "message": "Sale of Land", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_RT_SERVICE_TAX_GST_OF_RENT_OF_MC_PROPERTIES", - "message": "Service Tax/GST of Rent of MC Properties", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_RT_STREET_VENDOR", - "message": "Street Vendor", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_RT_STREET_VENDOR_ICARD/CERTIFICATE_FEES", - "message": "Street vendor ICARD/Certificate Fees", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_RT_STREET_VENDOR_ICARD_CERTIFICATE_FEES", - "message": "Street vendor ICARD/Certificate Fees ", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_RT_TOWER_ANNUAL_RENT", - "message": "Tower Annual Rent", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_RT_TOWER_INSTALLATION", - "message": "Tower Installation", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_RT_TOWER_RENT", - "message": "Tower Rent", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_SNT", - "message": "Sanitation", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_SNT_CLEAN_SAFAI_SANITATION", - "message": "Clean/Safai Sanitation", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_SNT_DEAD_ANIMALS_CONTRACT", - "message": "Dead animals contract", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_SNT_LICENCE_PURE_FOOD", - "message": "Licence Pure food", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_ST", - "message": "Stationary", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_ST_EXPENDITURE_SANTITATION_NOT_INCOME", - "message": "Expenditure santitation (Not Income)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_ST_STATIONARY_NOT_INCOME", - "message": "Stationary (Not Income)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_SW", - "message": "Sewerage Connection", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_SW_ONE_TIME_FEE", - "message": "Sewerage Connection One Time Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_TB", - "message": "Tehbazaari Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_TB_ADVERTISEMENT_FEE", - "message": "Advertisement fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_TB_CHALLAN_UNDER_SECTION_156", - "message": "Challan Under section 156,121 etc", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_TB_REHRI_CHALLAN", - "message": "Rehri Challan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_TB_REHRI_RICKSHAW_CHALLAN", - "message": "Rehri/Rickshaw Challan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_TB_TEHBAZAARI", - "message": "Tehbazaari Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_TEHBAZAARI FEE", - "message": "Tehbazaari Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_TEHBAZAARI FEE_CHALLAN_UNDER_SECTION_156_121_ETC", - "message": "Challan Under section 156,121 etc", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_TEHBAZAARI_FEE", - "message": "Tehbazaari Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_TEHBAZAARI_FEE_CHALLAN_UNDER_SECTION_156", - "message": "Challan Under section 156,121 etc", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_TL", - "message": "Trade License", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_TX", - "message": "Tax", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_TX_ELECTRICITY_CHUNGI", - "message": "Electricity Chungi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_TX_HOUSE_TAX", - "message": "House Tax", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_TX_NO_DUES_CERTIFICATE", - "message": "NDC - No Dues Certificate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_TX_PROPERTY TAX_DISHONOURED_CHEQUE_PAYMENT", - "message": "Property Tax Dishonoured Cheque Payment", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_TX_PROPERTY_TAX_13_14", - "message": "Property tax 2013-14", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_TX_PROPERTY_TAX_2013_14", - "message": "Property Tax 2013-14", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_TX_PROPERTY_TAX_DISHONOURED_CHEQUE_PAYMENT", - "message": "Property Tax Dishonoured Cheque Payment", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_TX_TRANSFER_PROPERTY_FEES", - "message": "Transfer property Fees", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_TX_TS1_COPY_REGISTER_FOR_OLD_SURVEY", - "message": "TS1 copy register for old survey", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_WATERCHARGES", - "message": "Water Charges", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_WATERCHARGES_METERED", - "message": "Water Charges Metered", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_WATERCHARGES_NONMETERED", - "message": "Water Charges Nonmetered", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_WF", - "message": "Work Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_WF_CONTRACTOR_ENLISTMENT", - "message": "Contractor Enlistment", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_WF_OFC_PERMISSION_FEES", - "message": "OFC Permission fees", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_WF_TENDER FORM FEE", - "message": "Tender Form Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_WF_TENDER_FORM_FEE", - "message": "Tender Form Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_WS", - "message": "Water Connection", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_WS_ONE_TIME_FEE", - "message": "Water Connection One Time Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSSINESSSERVICE_FIRENOC", - "message": "Fire Noc", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSSINESSSERVICE_TEHBAZAARI_FEE", - "message": "Tehbazaari Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSSINESSSERVICE_WATERCHARGES", - "message": "Water Charges", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLING_SERVICE_ERROR", - "message": "Bills Not found", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILLNO-TX.Electricity_Chungi", - "message": "Bill No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILL_AMEND_DOCS_UPLOADED", - "message": "Documents Uploaded", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILL_CREATE", - "message": " and Bill has been created", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILL_CREATED", - "message": " and Bill has been created", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILL_CREATED_SUCCESS", - "message": "Bill has been created", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILL_GENIE_ACTIVE_LABEL", - "message": "Active", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILL_GENIE_SEARCH_TABLE_HEADER", - "message": "Search Results for Bill", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILL_ID", - "message": "Bill Id", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILL_KEY", - "message": "Bill Key", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILL_OLD_AMOUNT", - "message": "Current Demand", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILL_REDUCED_AMOUNT_RS", - "message": "Reduced Amount (Rs)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILL_RS_HEADER", - "message": "Rs.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILL_SEARCH_URL", - "message": "Bill Search Url", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILL_STATUS_FAILED", - "message": "Failed", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILL_STATUS_PAYMENT_COMPLETED", - "message": "Payment Completed", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILL_STATUS_PAYMENT_FAILED", - "message": "Payment Failed", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILL_STATUS_PAYMENT_INITIATED", - "message": "Payment Initiated", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILL_STATUS_PAYMENT_INITIATED_TOAST", - "message": "Payment Initiated, Job Id: ", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILL_STATUS_PAYMENT_PENDING", - "message": "Payment Pending", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILL_STATUS_PAYMENT_SUCCESS", - "message": "Payment Completed", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILL_STATUS_SUBMITTED", - "message": "Pending Payment", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILL_TOTAL_AMOUNT", - "message": "Total Amount", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BILL_UPDATED_AMOUNT", - "message": "Proposed Demand", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BIRTHANDDEATHCERTIFICATEPAYMENT", - "message": "Birth and Death Certificate Payment Records", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BIRTHRECORDSCOUNTREPORT", - "message": "Birth Count Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BIRTHRECORDSCOUNTREPORTCBLEVEL", - "message": "Birth Records Count Report by District", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BIRTH_AND_DEATH", - "message": "Birth & Death", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BIRTH_CERT_FEE", - "message": "Birth Certificate Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BIRTH_GENDER_FEMALE", - "message": "Female", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BIRTH_GENDER_MALE", - "message": "Male", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BIRTH_GENDER_OTHERS", - "message": "Others", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BND_BIRTH_COMMON", - "message": "Birth certificate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BND_CERTIFICATE_NAME", - "message": "Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BND_DEATH_COMMON", - "message": "Death Certificate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BND_EDIT_REGISTRATION", - "message": "New Registration", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BND_GOVT_OF", - "message": "Punjab", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BORING_MISTRY", - "message": "Boring Mistry", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPAREG_HEADER_APPL_BPAREG_EDC_CERTIFICATE", - "message": "Educational certificates", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPAREG_HEADER_APPL_BPAREG_EXP_CERTIFICATE", - "message": "Experience certificates", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPAREG_HEADER_APPL_BPAREG_GOVT_APPROVED_ID_CARD", - "message": "Identity Proof", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPAREG_HEADER_APPL_BPAREG_INCOMETAX_STATEMENT", - "message": "Income tax statement", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPAREG_HEADER_APPL_BPAREG_OTHERS", - "message": "Others", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPAREG_HEADER_APPL_BPAREG_PASS_PORT_SIZE_PHOTO", - "message": "Recent Passport size photograph of the applicant", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPAREG_HEADER_APPL_BPAREG_REGISTRATION_CERTIFICATE", - "message": "Registration certificate of license", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPAREG_HEADER_APPL_BPAREG_SHOWCAUSE_NOTICE_IFANY", - "message": "Showcause notice", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_ADD_OWNER", - "message": "Add Owner", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_AIRPORT_AUTHORITY_HEADER", - "message": "Airport NOC", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_AIRPORT_AUTHORITY_LABEL", - "message": "Airport Authority Application Number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_APPLICANT_CORRESPONDENCE_ADDRESS_LABEL", - "message": "Correspondence Address", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_APPLICANT_DETAILS_HEADER", - "message": "Owner Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_APPLICANT_DOB_LABEL", - "message": "Date Of Birth", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_APPLICANT_EMAIL_LABEL", - "message": "Email", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_APPLICANT_FATHER_HUSBAND_NAME_LABEL", - "message": "Father/Husband's Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_APPLICANT_FATHER_HUSBAND_NAME_PLACEHOLDER", - "message": "Enter Father/Husband's Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_APPLICANT_MOBILE_NO_LABEL", - "message": "Mobile No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_APPLICANT_NAME_LABEL", - "message": "Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_APPLICANT_PAN_LABEL", - "message": "PAN No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_APPLICANT_RELATIONSHIP_FATHER_RADIOBUTTON", - "message": "Father", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_APPLICANT_RELATIONSHIP_HUSBAND_RADIOBUTTON", - "message": "Husband", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_APPLICANT_RELATIONSHIP_LABEL", - "message": "Relationship", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_APPLICATIONTYPE_BPAREG", - "message": "Stakeholder", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_APPLICATION_BLOCK1_LABEL", - "message": "Block 1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_APPLICATION_BLOCK_WISE_OCCUPANCY_SUB_OCCUPANCY_USAGE_TITLE", - "message": "Block wise occupancy /sub occupancy and usage details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_APPLICATION_BUILDING_PERMIT_NO_LABEL", - "message": "Building permit application Number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_APPLICATION_DEMOLITION_AREA_LABEL", - "message": "Demolition Area", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_APPLICATION_HIGH_FROM_GROUND", - "message": "High From Ground Level From Mumty (In Mtrs)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_APPLICATION_NO_CODE", - "message": "Application No. {0}", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_APPLICATION_NO_OF_FLOORS", - "message": "Number Of Floors", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_APPLICATION_NUMBER_LABEL", - "message": "Application Number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_APPLICATION_OCCUPANCY_PLACEHOLDER", - "message": "Select Occupancy", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_APPLICATION_PROPOSED_BUILDING_LABEL", - "message": "Proposed Building Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_APPLICATION_RESIDENTIAL_LABEL", - "message": "Residential", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_APPLICATION_SCRUNITY_DETAILS_TITLE", - "message": "Building Plan Scrutiny Application Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_APPLICATION_SCRUNITY_REPORT_LABEL", - "message": "Scrutiny Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_APPLICATION_SUCCESS_MESSAGE_MAIN", - "message": "Application Submitted Successfully", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_APPLICATION_SUCCESS_MESSAGE_SUB", - "message": "A notification regarding Application Submission has been sent at registered Mobile No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_APPLICATION_TOTAL_BUILDUP_AREA", - "message": "Total Buildup Area (sq.mtrs)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_APPLICATION_UPLOAD_DIAGRAM_LABEL", - "message": "Uploaded Diagram", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_APPLY_FOR_BUILDING_PERMIT_HEADER", - "message": "Apply for building permit", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_APPL_FEES", - "message": "Application Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_APP_DETAILS_DEMOLITION_DETAILS_LABEL", - "message": "Demolition Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_APP_DETAILS_PROPOSED_BUILDING_DETAILS_LABEL", - "message": "Demolition Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_APP_FEE_RECEIPT", - "message": "Application fee receipt", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_BASIC_DETAILS_APPLICATION_DATE_LABEL", - "message": "Application Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_BASIC_DETAILS_APPLICATION_FEE_LABEL", - "message": "Application Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_BASIC_DETAILS_APPLICATION_NAME_LABEL", - "message": "Applicant Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_BASIC_DETAILS_APPLICATION_TYPE_LABEL", - "message": "Application type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_BASIC_DETAILS_APPLICATION_TYPE_PLACEHOLDER", - "message": "Select Application Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_BASIC_DETAILS_APP_DATE_LABEL", - "message": "Application Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_BASIC_DETAILS_APP_FEE_LABEL", - "message": "Application Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_BASIC_DETAILS_OCCUPANCY_LABEL", - "message": "Occupancy", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_BASIC_DETAILS_REMARKS_LABEL", - "message": "Remarks", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_BASIC_DETAILS_REMARKS_PLACEHOLDER", - "message": "Enter Remarks Here", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_BASIC_DETAILS_RISK_TYPE_LABEL", - "message": "Risk Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_BASIC_DETAILS_RISK_TYPE_PLACEHOLDER", - "message": "Select Risk Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_BASIC_DETAILS_SCRUTINY_NO_LABEL", - "message": "Building plan scrutiny number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_BASIC_DETAILS_SCRUTINY_NUMBER_LABEL", - "message": "Scrutiny Number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_BASIC_DETAILS_SCRUTINY_NUMBER_PLACEHOLDER", - "message": "Enter Scrutiny Number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_BASIC_DETAILS_SCRUTINY_NUMBER_SEARCH_TITLE", - "message": "Please search scrutiny details linked to the scrutiny number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_BASIC_DETAILS_SERVICE_TYPE_LABEL", - "message": "Service type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_BASIC_DETAILS_SERVICE_TYPE_PLACEHOLDER", - "message": "Select service type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_BASIC_DETAILS_TITLE", - "message": "Basic Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_BLOCK_SUBHEADER", - "message": "Block", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_BOUNDARY_CIRCLE_LABEL", - "message": "Circle", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_BOUNDARY_CIRCLE_PLACEHOLDER", - "message": "Select Circle", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_BOUNDARY_CITY_TOWN_LABEL", - "message": "City/Town", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_BOUNDARY_CITY_TOWN_PLACEHOLDER", - "message": "Select City/Town", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_BOUNDARY_DETAILS_TITLE", - "message": "Boundary Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_BOUNDARY_GOVT_QUASI_LABEL", - "message": "Whether Government or Quasi Government", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_BOUNDARY_GOVT_QUASI_PLACEHOLDER", - "message": "Select Government", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_BOUNDARY_HOLDING_NO_LABEL", - "message": "Holding No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_BOUNDARY_HOLDING_NO_PLACEHOLDER", - "message": "Enter Holding No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_BOUNDARY_KHATA_NO_LABEL", - "message": "Khata No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_BOUNDARY_KHATA_NO_PLACEHOLDER", - "message": "Enter Khata No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_BOUNDARY_LAND_REG_DETAIL_LABEL", - "message": "Land Registration Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_BOUNDARY_LAND_REG_DETAIL_PLACEHOLDER", - "message": "Enter Land Registration Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_BOUNDARY_PLOT_AREA_LABEL", - "message": "Plot Area", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_BOUNDARY_PLOT_DETAILS_TITLE", - "message": "Details Of Plot", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_BOUNDARY_PLOT_NO_LABEL", - "message": "Plot No(MSP)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_BOUNDARY_PLOT_NO_PLACEHOLDER", - "message": "Enter Plot No(MSP)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_BOUNDARY_REVENUE_WARD_LABEL", - "message": "Revenue Ward", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_BOUNDARY_REVENUE_WARD_PLACEHOLDER", - "message": "Select Revenue Ward", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_BOUNDARY_SUMMARY", - "message": "Plot & Boundary Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_BUILDING_EXTRACT_HEADER", - "message": "Proposed Building Abstract", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_CITIZEN_HOME_ARCHITECT_LOGIN_LABEL", - "message": "Registered Architect Login", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_CITIZEN_HOME_REGISTER_ARCHITECT_BUILDER_LABEL", - "message": "Register as an Architect / Buider", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_CITIZEN_HOME_STAKEHOLDER_INCLUDES_INFO_LABEL", - "message": "Stakeholder includes Architect, Builder etc", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_CITIZEN_HOME_STAKEHOLDER_LOGIN_LABEL", - "message": "Register as a Stakeholder", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_CITIZEN_HOME_VIEW_APP_BY_CITIZEN_LABEL", - "message": "View applications by Citizen", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_CLICK_HERE_TO_SEARCH_LINK", - "message": "Click here to Search Application", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_COMMON_BUTTON_HOME", - "message": "GO TO HOME", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_COMMON_DOCS", - "message": "Documents", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_COMMON_TABLE_COL_BUILD_AREA", - "message": "Buildup Area", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_COMMON_TABLE_COL_CARPET_AREA", - "message": "Carpet Area", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_COMMON_TABLE_COL_FLOOR_AREA", - "message": "Floor Area", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_COMMON_TABLE_COL_FLOOR_DES", - "message": "Floor Description", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_COMMON_TABLE_COL_OCCUP", - "message": "Occupancy/Sub Occupancy", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_COMMON_TITLE", - "message": "Stakeholder Registration", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_COUNCIL_NUMBER", - "message": "Council for Architecture No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_DOCUMENT_DETAILS_BUTTON_UPLOAD_FILE", - "message": "UPLOAD FILE", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_DOCUMENT_DETAILS_HEADER", - "message": "Document Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_DOCUMENT_DETAILS_LABEL", - "message": "Document Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_DOCUMENT_DETAILS_SUBTEXT", - "message": "Only one file can be uploaded for one document. If multiple files need to be uploaded then please combine all files in a pdf and then upload", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_EDCR_DETAILS", - "message": "eDCR Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_ENTER_APPLICANT_CORRESPONDENCE_ADDRESS_PLACEHOLDER", - "message": "Enter Correspondence Address", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_ENTER_APPLICANT_DOB_PLACEHOLDER", - "message": "DD/MM/YYYY", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_ENTER_APPLICANT_EMAIL_PLACEHOLDER", - "message": "Enter Email", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_ENTER_APPLICANT_MOBILE_NO_PLACEHOLDER", - "message": "Enter Mobile No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_ENTER_APPLICANT_NAME_PLACEHOLDER", - "message": "Enter Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_ENTER_APPLICANT_PAN_PLACEHOLDER", - "message": "Enter Applicant's PAN No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_FAQ_ANS_ONE", - "message": "When an eDCR scrutiny fails, the error information is marked across each line item in the output file. The architect can make the corrections accordingly and resubmit the plan real time. This can be done any number of times without incurring any additional charges.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_FAQ_ANS_THREE", - "message": "The eDCR scrutiny system compares the parameters in the drawings against the by laws set in the corresponding administrative region and evaluates if they are violating. In the output file, against each paramter that is evaluated, there will be an indication to show if that is approved or rejected. The entire scrutiny process takes ~5 seconds", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_FAQ_ANS_TWO", - "message": "You can renew permits at the counter or through the portal. After logging in, search for the relevant permit application in the portal. Then click on link for the permit that you wish to renew. Next, complete the application for the renewal of permit and click submit.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_FAQ_QUES_ONE", - "message": "What happens when eDCR scrutiny fails? ", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_FAQ_QUES_THREE", - "message": "How does eDCR Scrutiny works and how much time it takes to get the diagrams scrutinized? ", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_FAQ_QUES_TWO", - "message": "How do I renew my permit? ", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_FIRE_NOC_HEADER", - "message": "Fire No Objection Certificate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_FIRE_NOC_LABEL", - "message": "Fire NOC Application Number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_FORWARD_APPLICATION_HEADER", - "message": "Forward Application", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_FORWARD_SUCCESS_MESSAGE_MAIN", - "message": "Application Forwarded Successfully", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_GENDER_FEMALE_RADIOBUTTON", - "message": "Female", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_GENDER_LABEL", - "message": "Gender", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_GENDER_MALE_RADIOBUTTON", - "message": "Male", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_GENDER_TRANSGENDER_RADIOBUTTON", - "message": "Transgender", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_HEADER_BPA_APPLY_PENDING_APPL_FEE", - "message": "New Building Plan Permit Application Submitted Successfully", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_HEADER_BPA_OC_APPLY_PENDING_APPL_FEE", - "message": "Occupancy Certificate Application Submitted Successfully", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_HEADER_BPA_SEND_BACK_TO_CITIZEN_CITIZEN_ACTION_PENDING_AT_DOC_VERIF", - "message": "New Building Plan Permit Application Is Sent To The Applicant", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_HEIGHT_FROM_GROUND_LEVEL", - "message": "Height from ground level from mumty", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_HOLDING_NUMBER_LABEL", - "message": "Holding Number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_HOME_SEARCH_RESULTS_DESC", - "message": "Provide at least one parameter to search for an application", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_HOME_SEARCH_RESULTS_OWN_MOB_LABEL", - "message": "Mobile Number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_HOME_SEARCH_RESULTS_OWN_MOB_PLACEHOLDER", - "message": "Enter your mobile No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_HOME_SEARCH_RESULTS_TABLE_HEADING", - "message": "Search Result of Application", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_HOME_SEARCH_RESULTS_TL_NO_LABEL", - "message": "Trade License No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_INCORRECT_PERMIT_NUMBER", - "message": "Permit no you entered is not correct.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_INCORRECT_SCRUTINY_NUMBER", - "message": "Incorrect Scrutiny Number!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_KHATHA_NUMBER_LABEL", - "message": "Khata Number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_LICENSE_DETAILS_LABEL", - "message": "License Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_LICENSE_DET_CAPTION", - "message": "Licensee Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_LICENSE_TYPE", - "message": "License Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_LICENSE_TYPE_TEXT", - "message": "Please select the license type for which you want to apply license for", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_LICENSE_VALID_LABEL", - "message": "Permit valid up to {0}", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_LOC_MOHALLA_LABEL", - "message": "Locality / Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_LOW_APPL_FEES", - "message": "Application Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_LOW_SANC_FEES", - "message": "Sanction Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_MOBILE_NO_TOOLTIP_MESSAGE", - "message": "Please search profile linked to the mobile no.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_NC_APP_FEE", - "message": "Application Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_NEW_APPLICATION_BTN", - "message": "NEW APPLICATION", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_NEW_BUILDING_HEADER", - "message": "New Stakeholder Registration", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_NEW_BUILDING_PERMIT_DESCRIPTION", - "message": "It would take 5 minutes to complete this application and the following documents are required in .pdf or .jpeg format to complete the application.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_NEW_TRADE_DETAILS_HEADER_DETAILS", - "message": "Location Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_NOC_DETAILS", - "message": "Noc Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_NOC_STATUS", - "message": "Status", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_NOT_ABLE_TO_FIND_APP_MSG", - "message": "Not able to find the application?", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_NO_APPLICATION_PRESENT", - "message": "No Application Found", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_NO_DOCUMENTS_UPLOADED_LABEL", - "message": "No Documents Uploaded", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_OCCUPANCY_TYPE", - "message": "Occupancy Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_OCCUPANCY_TYPE_A", - "message": "Residential", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_OCCUPANCY_TYPE_B", - "message": "Educational", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_OCCUPANCY_TYPE_C", - "message": "Heatlh services", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_OCCUPANCY_TYPE_D", - "message": "Assembly", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_OCCUPANCY_TYPE_E", - "message": "Socio culture", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_OCCUPANCY_TYPE_F", - "message": "Commercial", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_OCCUPANCY_TYPE_G", - "message": "Industrial", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_OCCUPANCY_TYPE_H", - "message": "Public Buildings", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_OCCUPANCY_TYPE_I", - "message": "Hazardous", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_OCCUPANCY_TYPE_J", - "message": "Transportation", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_OCCUPANCY_TYPE_K", - "message": "Sports", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_OCCUPANCY_TYPE_L", - "message": "Religious", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_OCC_SUBOCC_HEADER", - "message": "Blockwise Occupancy and Sub Occupancy Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_OC_APPLICATION_SCRUNITY_DETAILS_TITLE", - "message": "Building Plan Scrutiny Application Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_OC_APPL_FEES", - "message": "Application Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_OC_NEW_BUILDING_CONSTRUCTION_LABEL", - "message": "OC for New Building Construction", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_OC_SANC_FEES", - "message": "Deviation Penalty", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_OWNER_INFORMATION", - "message": "Owner Information", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_OWNER_INFO_TITLE", - "message": "Owner Information", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_OWNER_NAME_LABEL", - "message": "Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_OWNER_SUB_TYPE_LABEL", - "message": "Type of Owner - Subtype", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_OWNER_SUB_TYPE_PLACEHOLDER", - "message": "Select Owner Subtype", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_OWNER_TYPE", - "message": "Owner Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_OWNER_TYPE_PLACEHOLDER", - "message": "Select Owner Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_OWNER_VALIDATION_ARCHITECT", - "message": "The mobile number entered is registered with an Architect , please enter a different mobile number who is a citizen and not an Architect.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_OWNER_VALIDATION_SUPERVISOR", - "message": "The mobile number entered is registered with an Supervisor, please enter a different mobile number who is a citizen and not an Supervisor.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_PERMIT_ORDER", - "message": "Permit Order", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_PLOT_DETAILS_TITLE", - "message": "Plot Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_PLOT_NUMBER_LABEL", - "message": "Plot Number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_PRIMARY_OWNER", - "message": "Is Primary Owner ?", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_PROCEED_PAYMENT", - "message": "PROCEED TO PAYMENT", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_REGISTRATION", - "message": "BPA Registration", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_SANC_FEES", - "message": "Sanction Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_SAN_FEE_RECEIPT", - "message": "Sanction fee receipt", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_SCRUNITY_SUMMARY", - "message": "Scrutiny Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_SCRUNTINY_REPORT_OUTPUT", - "message": "Scrutiny Report Output", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_SCRUTINY_DETAILS_BLOCK_1_LABEL", - "message": "Block 1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_SCRUTINY_DETAILS_BLOCK_WISE_OCCUPANCY_USAGE_DETAILS_LABEL", - "message": "Block wise occupancy /sub occupancy and usage details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_SCRUTINY_DETAILS_BUILDING_PERMIT_APP_NUMBER_LABEL", - "message": "Building permit application Number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_SCRUTINY_DETAILS_BUILDING_PLAN_SCRUTINY_APP_DETAILS_LABEL", - "message": "Building Plan Scrutiny Application Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_SCRUTINY_DETAILS_DEMOLITION_AREA_LABEL", - "message": "Demolition Area", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_SCRUTINY_DETAILS_DEMOLITION_DETAILS_LABEL", - "message": "Demolition Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_SCRUTINY_DETAILS_HIGH_FROM_GROUND_LEVEL_LABEL", - "message": "High From Ground Level From Mumty (In Mtrs)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_SCRUTINY_DETAILS_NUMBER_OF_FLOORS_LABEL", - "message": "Number of Floors", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_SCRUTINY_DETAILS_PROPOSED_BUILDING_DETAILS_LABEL", - "message": "Proposed Building Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_SCRUTINY_DETAILS_RESIDENTIAL_LABEL", - "message": "Residential", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_SCRUTINY_DETAILS_SCRUTINY_REPORT", - "message": "Scrutiny Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_SCRUTINY_DETAILS_TOTAL_BUILDUP_AREA_LABEL", - "message": "Total Buildup Area (sq.mtrs)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_SCRUTINY_DETAILS_UPLOADED_DIAGRAM_LABEL", - "message": "Uploaded Diagram", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_SCRUTINY_REPORT_PDF", - "message": "Scrutiny Report.PDF", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_SEARCH_APP__SERVICE_TYPE_TOAST_MESSAGE", - "message": "Please select applicationType and serviceType and then search", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_SEARCH_RESULTS_HEADING", - "message": "Application for Building permit Order", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_SELECTED_TEXT", - "message": "Selected", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_SPECIAL_APPLICANT_CATEGORY_LABEL", - "message": "Special Applicant Category", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_SPECIAL_APPLICANT_CATEGORY_PLACEHOLDER", - "message": "Select Special Applicant Category", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_SUBMIT_HEADER_BPA_VERIFY_FORWARD_CITIZEN_ACTION_PENDING_AT_DOC_VERIF", - "message": "New Building Plan Permit Application Submitted Successfully", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_SUBMIT_SUB_HEADER_BPA_VERIFY_FORWARD_ARCHITECT_CITIZEN_ACTION_PENDING_AT_DOC_VERIF", - "message": "Application reference is shared with applicant and architect.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_SUBOCCUPANCYTYPE_APARTMENT_FLAT", - "message": "Apartment/Flat", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_SUBOCCUPANCYTYPE_APPARTMENT-FLAT", - "message": "Apartment/Flat", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_SUBOCCUPANCYTYPE_APPARTMENT_FLAT", - "message": "Apartment/Flat", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_SUBOCCUPANCYTYPE_E_OAH", - "message": "Old Age Home", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_SUBOCCUPANCYTYPE_FARM_HOUSE", - "message": "Farm House", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_SUBOCCUPANCYTYPE_HOSTEL_EDUCATIONAL", - "message": "Hostel Educational", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_SUBOCCUPANCYTYPE_H_JSISS", - "message": "Junction Stations, Intermediate Stations and Substations", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_SUBOCCUPANCYTYPE_J_MPT", - "message": "Metropolitan Passenger Terminal", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_SUBOCCUPANCYTYPE_OLD_AGE_HOME", - "message": "Old Age Home", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_SUBOCCUPANCYTYPE_PROFESSIONAL_OFFICE", - "message": "Professional Office", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_SUBOCCUPANCYTYPE_RESIDENTIAL", - "message": "Residential", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_SUBOCCUPANCYTYPE_SERVICE_APARTMENT", - "message": "Service Apartment", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_SUBOCCUPANCYTYPE_SERVICE_APPARTMENT", - "message": "Service Apartment", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_SUBOCCUPANCYTYPE_SPECIAL_RESIDENTIAL", - "message": "Special Residential", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_SUB_HEADER_BPA_APPLY_SUPERVISOR_PENDING_APPL_FEE", - "message": "Application reference is shared with applicant and supervisor.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_SUB_HEADER_BPA_OC_APPLY_SUPERVISOR_PENDING_APPL_FEE", - "message": "Application reference is shared with applicant and supervisor.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_SUB_HEADER_BPA_REJECT_SUPERVISOR_REJECTED", - "message": "New building plan permit application is rejected.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_SUB_HEADER_BPA_SEND_BACK_TO_CITIZEN_ARCHITECT_CITIZEN_ACTION_PENDING_AT_DOC_VERIF", - "message": "Applicant and Architect are notified that the application has been sent back for clarification.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_SUB_HEADER_BPA_SEND_TO_ARCHITECT_SUPERVISOR_INITIATED", - "message": "Supervisor are notified about your review comments.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_SUB_OCCUPANCY_LABEL", - "message": "Sub-Occupancy", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_SUB_OCCUP_TYPE_LABEL", - "message": "Sub Occupancy Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_SUB_OCCUP_TYPE_PLACEHOLDER", - "message": "Select Sub Occupancy Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_SUMMARY_EDIT", - "message": "Edit", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_SUMMARY_HEADER", - "message": "Summary", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_TABLE_COL_FLOOR", - "message": "Floor", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_TABLE_COL_LEVEL", - "message": "Level", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_TOTAL_BUILT_UP_AREA_HEADER", - "message": "Total Builtup Area", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_UPLOADED_PLAN_DIAGRAM", - "message": "Uploaded Plan Diagram", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_UPLOAD_RESTRICTIONS", - "message": "Only .jpg and .pdf files. 6MB max file size.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPA_WORKFLOW_DOCS", - "message": "Workflow Docs", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPD", - "message": "Building plan diagram", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPD.EP", - "message": "Elevation plan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPD.EP.EP", - "message": "Elevation plan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPD.FP", - "message": "Floor plan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPD.FP.FP", - "message": "Floor plan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPD.PP", - "message": "Parking plan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPD.PP.PP", - "message": "Parking plan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPD.RP", - "message": "Roof plan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPD.RP.RP", - "message": "Roof plan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPD.SCP", - "message": "Service Plan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPD.SCP.SCP", - "message": "Service Plan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPD.SECP", - "message": "Section plan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPD.SECP.SECP", - "message": "Section plan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPD.SP", - "message": "Site plan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPD.SP.SP", - "message": "Site Plan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPD_EP", - "message": "Elevation plan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPD_EP_EP", - "message": "Elevation plan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPD_FP", - "message": "Floor plan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPD_FP_FP", - "message": "Floor plan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPD_PP", - "message": "Parking plan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPD_PP_PP", - "message": "Parking plan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPD_RP", - "message": "Roof plan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPD_RP_RP", - "message": "Roof plan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPD_SCP", - "message": "Service Plan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPD_SCP_SCP", - "message": "Service Plan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPD_SECP", - "message": "Section plan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPD_SECP_SECP", - "message": "Section plan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPD_SP", - "message": "Site plan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPD_SP_SP", - "message": "Site Plan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BPL", - "message": "Below Poverty Line", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BUILDING_OC_PLAN_SCRUTINY", - "message": "Occupancy Certificate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BUILDING_PLAN", - "message": "Building Plan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BUILDING_PLAN_PERMIT_VALIDITY", - "message": "Building plan permit validity is", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BUILDING_PLAN_SCRUTINY", - "message": "Permit Application", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BUILING_PLANS_SCRUTINISED_IN_LAST_12_MONTHS", - "message": "building plan diagrams scrutinised in the last 12 months", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BUILTUP", - "message": "Built Up", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BUILTUP.INDEPENDENTPROPERTY", - "message": "Independent Building", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BUILTUP.SHAREDPROPERTY", - "message": "Flat/Part of the building", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BUILTUP.VACANT", - "message": "Vacant Land", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "BUSINESS_SERVICE", - "message": "Business Service", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CALL_CENTER_HELPLINE", - "message": "Call Center / Helpline", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CAMERA", - "message": "Camera", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CANCELED", - "message": "Canceled", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CANCELLED", - "message": "Cancelled", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CANCEL_CHALLAN_HEADER", - "message": "Header", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CANCEL_COMMENT_LABEL ", - "message": "Comment", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CANCEL_NO", - "message": "No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CANCEL_YES", - "message": "Yes", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CANNOT_HAVE_SAME_SKILL_TYPE", - "message": "Individual can not have same skill Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CARD", - "message": "Card", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CASH", - "message": "Cash", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CATEGORIES_OF_COMPLAINT_TYPES_CAN_BE_SUBMITTED_ON_GRIEVANCE_PORTAL", - "message": "categories of complaint types can be submitted on grievance portal. ", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CATEGORY_CIRCULARS", - "message": "Circulars", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CATEGORY_CITIZEN_CHARTER", - "message": "Citizen Charter", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CATEGORY_FORMS", - "message": "Forms", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CATEGORY_GOVERNMENT_ORDERS", - "message": "Government orders", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CATEGORY_TENDERS", - "message": "Tenders", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CBO.NA", - "message": "Not Applicable", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CBO_MUSTER_APPROVED", - "message": "Approved", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CBO_MUSTER_PENDINGFORAPPROVAL", - "message": "Verified", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CBO_MUSTER_PENDINGFORCORRECTION", - "message": "Sent Back", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CBO_MUSTER_PENDINGFORVERIFICATION", - "message": "Submitted", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_ADHERENCE_TO_DATA_PRINCIPLES_INFO_LABEL", - "message": "We adhere to the principles of accountability, transparency, purposeful and proportional collection, usage, storage and disclosure of personally identifiable information (“PII”).", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_ADHERENCE_TO_DATA_PRINCIPLES_LABEL", - "message": "ADHERENCE TO DATA PRIVACY PRINCIPLES", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_AND_", - "message": " and ", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_COLLECT_AND_PROGRAM_LABEL", - "message": "WHAT DATA DO WE COLLECT? / WHAT IS ‘DATA’ UNDER THIS ‘PROGRAM’?", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_COLLECT_INFO_ADMINISTRATIVE_LABEL", - "message": "Data from administrative record systems, such as revenue survey number or other property identifier, connection number, meter number etc. may also be recorded. In the event a person makes payments to the local government, information related to the payment, such as transaction number may also be recorded.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_COLLECT_INFO_IMPROVE_LABEL", - "message": "We collect information/data (“data”) to improve and provide better services to you. We collect and process PII such as your first name, last name, parent’s / guardian’s name, address, email address, telephone number, age, gender, identification documents. We may collect your educational, demographic, location, device and other similar information.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_COLLECT_IP_ADDRESS_LABEL", - "message": "We collect information such as Internet Protocol (IP) addresses, domain name, browser type, Operating System, Date and Time of the visit, pages visited, IMEI/IMSI number, device ID, location information, language settings, handset make & model etc. However, no attempt is made to link these with the true identity of individuals visiting Urban DIGIT app, website, Whatsapp Chatbot etc.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_COLLECT_IP_SERVICES_USED_LABEL", - "message": "The information collected by us shall depend on the services being used by you and may vary from time to time, which will be informed through changes in this policy.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_COLLECT_THIS_DATA_INFO_LABEL", - "message": "We collect data directly from you (when you use our services) as and when you register and login into the app/website. We may also collect data from Union, State, and Local governments, including their agents/employees, as well as receive data that is available openly for public use.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_COLLECT_THIS_DATA_LABEL", - "message": "HOW DO WE COLLECT THIS DATA?", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_DATA_COLLECTION_SHARING_INFO_LABEL", - "message": "By using this service, you confirm that you have read, understood, and accepted this Policy, and that we may collect, process, disclose, and/or share your data as described in this Policy.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_DATA_COLLECTION_SHARING_LABEL", - "message": "YOUR CONSENT TO DATA COLLECTION, PROCESSING, DISCLOSURE, AND/OR SHARING.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_I_AGREE_THE_DIGITS_", - "message": "I agree to the DIGIT's", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_POLICY_BE_CHANGED_INFO_LABEL", - "message": "Yes, this policy is subject to change at any time and without active notice. This page will be updated with any such modified policy, and such changes will not be deemed to take effect until and unless they are shown on this page.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_POLICY_BE_CHANGED_LABEL", - "message": "CAN THIS POLICY BE CHANGED?", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_PP_ADHERENCE_TO_DATA_INFO_LABEL", - "message": "We adhere to the principles of accountability, transparency, purposeful and proportional collection, usage, storage and disclosure of personally identifiable information (“PII”).", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_PP_ADHERENCE_TO_DATA_LABEL", - "message": "ADHERENCE TO DATA PRIVACY PRINCIPLES", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_PP_CAN_THIS_POLICY_CHANGED_INFO_LABEL", - "message": "Yes, this policy is subject to change at any time and without active notice. This page will be updated with any such modified policy, and such changes will not be deemed to take effect until and unless they are shown on this page.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_PP_CAN_THIS_POLICY_CHANGED_LABEL", - "message": "CAN THIS POLICY BE CHANGED?", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_PP_DATA_COLLECTION_PROCESSING_INFO_LABEL", - "message": "By using this service, you confirm that you have read, understood, and accepted this Policy, and that we may collect, process, disclose, and/or share your data as described in this Policy.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_PP_DATA_COLLECTION_PROCESSING_LABEL", - "message": "YOUR CONSENT TO DATA COLLECTION, PROCESSING, DISCLOSURE, AND/OR SHARING.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_PP_DATA_DO_WE_COLLECT_INFO_1_1_LABEL", - "message": "Data from administrative record systems, such as revenue survey number or other property identifier, connection number, meter number etc. may also be recorded. In the event a person makes payments to the local government, information related to the payment, such as transaction number may also be recorded.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_PP_DATA_DO_WE_COLLECT_INFO_1_LABEL", - "message": "We collect information/data (“data”) to improve and provide better services to you. We collect and process PII such as your first name, last name, parent’s / guardian’s name, address, email address, telephone number, age, gender, identification documents. We may collect your educational, demographic, location, device and other similar information.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_PP_DATA_DO_WE_COLLECT_INFO_2_LABEL", - "message": "We collect information such as Internet Protocol (IP) addresses, domain name, browser type, Operating System, Date and Time of the visit, pages visited, IMEI/IMSI number, device ID, location information, language settings, handset make & model etc. However, no attempt is made to link these with the true identity of individuals visiting PROGRAM NAME app, website, Whatsapp Chatbot etc.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_PP_DATA_DO_WE_COLLECT_INFO_3_LABEL", - "message": "The information collected by us shall depend on the services being used by you and may vary from time to time, which will be informed through changes in this policy.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_PP_DATA_DO_WE_COLLECT_INFO_4_LABEL", - "message": "For more information on categories of data we collect and the consent framework please see our", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_PP_DATA_DO_WE_COLLECT_LABEL", - "message": "WHAT DATA DO WE COLLECT? / WHAT IS ‘DATA’ UNDER THIS ‘PROGRAM’?", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_PP_DATA_DO_WE_COLLECT_PP_LINK_LABEL", - "message": "detailed privacy policy.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_PP_DD_DEAL_LABEL", - "message": "PROGRAM NAME refers to the services being provided through PROGRAM NAME website, mobile App, OTHER CHANNELS AS RELEVANT.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_PP_DO_WE_COLLECT_THIS_DATA_INFO_LABEL", - "message": "We collect data directly from you (when you use our services) as and when you register and login into the app/website. We may also collect data from Union, State, and Local governments, including their agents/employees, as well as receive data that is available openly for public use.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_PP_DO_WE_COLLECT_THIS_DATA_LABEL", - "message": "HOW DO WE COLLECT THIS DATA?", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_PP_DO_WE_STORE_THIS_DATA_INFO_1_1_LABEL", - "message": "Unless indicated otherwise, this data will be retained for a minimum period of AS PER UNION / STATE / ULB LAWS and a maximum period of AS PER UNION / STATE / ULB LAWS. You can review and edit your data, as well as delete your data from the app/website by following the procedures AS PER UNION / STATE / ULB LAWS.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_PP_DO_WE_STORE_THIS_DATA_INFO_1_LABEL", - "message": "Your data is stored in a secure manner. PROGRAM NAME is powered by the DIGIT platform, which has embedded privacy settings (such as encryption), which does not allow your data to be visible to anyone, except persons who are authorised to do so by virtue of their official role. ", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_PP_DO_WE_STORE_THIS_DATA_INFO_2_LABEL", - "message": "You may delete your account any time you wish. In case of deletion, we will remove all your PII from the system, so that it is not visible and/or accessible from any regular operation. However, the PII may be retained in an encrypted manner for the purpose of legal requirements/compliances AS PER UNION / STATE / ULB LAWS from the date of deletion/termination.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_PP_DO_WE_STORE_THIS_DATA_INFO_3_LABEL", - "message": "After deletion, in case you wish to recreate your profile, the same is permissible and none of the previously captured information will be populated automatically. You need to register as a fresh user.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_PP_DO_WE_STORE_THIS_DATA_INFO_4_LABEL", - "message": "If you simply delete/remove the application from your mobile device but do not delete your profile or unregister yourself from the app/website, you shall continue to be a registered user of the app and we shall continue to send you all communications that you have opted for unless and until you opt-out of such communications, or AS PER UNION / STATE / ULB LAW.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_PP_DO_WE_STORE_THIS_DATA_INFO_5_LABEL", - "message": "In case you surrender/disconnect your PROGRAM NAME registered mobile number it is recommended to delete your profile or unregister yourself from the application also.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_PP_DO_WE_STORE_THIS_DATA_INFO_6_LABEL", - "message": " We have data security measures adopted to ensure that users data is safe and away from dangers of cyber/physical harms. More about the data security measures can be read ", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_PP_DO_WE_STORE_THIS_DATA_LABEL", - "message": "HOW DO WE STORE THIS DATA?", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_PP_DO_WE_STORE_THIS_DATA_LINK_HERE_LABEL", - "message": " here. ", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_PP_GRIEVANCES_INFO_LABEL", - "message": "In case of any grievances, you may send your complaints for redressal over Grievance Portal available at ", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_PP_GRIEVANCES_INFO_LINK_LABEL", - "message": "Link", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_PP_GRIEVANCES_LABEL", - "message": "GRIEVANCES", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_PP_HOW_DO_WE_PROCESS_INFO_10_LABEL", - "message": "Payments made through the PROGRAM NAME App/website are processed via secure payment gateways.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_PP_HOW_DO_WE_PROCESS_INFO_11_LABEL", - "message": "We will not process, disclose, or share your data except as described in this policy, or as otherwise authorized by you.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_PP_HOW_DO_WE_PROCESS_INFO_1_LABEL", - "message": "We use this data to serve you with the best civic experience, such as providing digital grievance redressal systems, efficient service delivery, creating dashboards of ULB activities, etc. Data is only processed on the basis of a legal mandate and for a legitimate and necessary purpose (to deliver to you the services you are requesting, and to make improvements in service delivery and administration, as well as any other purposes specified by law).", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_PP_HOW_DO_WE_PROCESS_INFO_2_LABEL", - "message": "We process data which is necessary to provide you with the services you are requesting", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_PP_HOW_DO_WE_PROCESS_INFO_3_LABEL", - "message": "We may process, disclose, or share certain metadata, as well as aggregated and anonymised data, in order to assess and improve the status of such service delivery over time.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_PP_HOW_DO_WE_PROCESS_INFO_4_LABEL", - "message": "We may disclose or share this data to/with employees and/or contractors of the urban local body, state government, or other government agencies, service providers, whose role requires them to view or use this information in order to perform their official duties, including providing you the service(s) you are requesting.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_PP_HOW_DO_WE_PROCESS_INFO_5_LABEL", - "message": "Data processed or shared while resolving any disputes that may arise with respect to the transactions/deals that you may conduct using the app/website.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_PP_HOW_DO_WE_PROCESS_INFO_6_LABEL", - "message": "Data processed or shared for monitoring user activity and preferences as evidence from user’s activity on app to provide a better experience in future.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_PP_HOW_DO_WE_PROCESS_INFO_7_LABEL", - "message": "Detecting, investigating and preventing activities that may violate our policies or that may be illegal or unlawful.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_PP_HOW_DO_WE_PROCESS_INFO_8_LABEL", - "message": "Conducting research or analysing of the user preferences and demographics as statistical-masked data and not as individual data.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_PP_HOW_DO_WE_PROCESS_INFO_9_LABEL", - "message": "We may disclose or share this data in order to comply with the law or any legal process, including when required in judicial, arbitral, or administrative proceedings.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_PP_HOW_DO_WE_PROCESS_LABEL", - "message": "WHY AND HOW DO WE PROCESS, DISCLOSE, AND/OR SHARE THIS DATA?", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_PP_HOW_DO_WE_PROTECT_INFO_LABEL", - "message": "By default, PII is maintained in a masked format. Persons with the appropriate authorisation can put in a request for this data to be unmasked. We log each such request, thus creating a non-repudiable and auditable trail of each such access to PII.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_PP_HOW_DO_WE_PROTECT_LABEL", - "message": "HOW DO WE PROTECT PERSONALLY IDENTIFIABLE INFORMATION (PII)?", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_PP_POWERED_BY_DIGIT_LABEL", - "message": "PROGRAM NAME is a collaboration between PARTNER(S) NAME(S) and eGovernments Foundation. It is powered by DIGIT, which is an open-source software platform developed by eGovernments Foundation.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_PP_PRIVANCY_SECURITY_LABEL", - "message": "[PROGRAM NAME] (“we” or “us” or “our”) respects the privacy of our users (“user” or “you” also referred to as ‘your’). Hence, we maintain the highest standards for secure activities , user information/data privacy and security.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_PP_REFERS_LABEL", - "message": "Through PROGRAM NAME, you can access and avail services offered by STATE OR ULB NAME Government departments, Central Government department, Local bodies & their agencies and corporate/private bodies (utility services) (Service Providers). You can use PROGRAM NAME website / application / services in different ways such as, service discovery, availing services, registering grievances, and so on.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_PRIVACYPOLICY_HEADER", - "message": "Privacy Policy", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_PRIVACY_PLOICY_DESCRIBES_LABEL", - "message": "This Privacy Policy describes and determines how we deal with your personal and usage information in accordance with the applicable laws of India.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_PRIVACY_POLICY_", - "message": " Privacy Policy", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_PROCESS_DISCLOSE_SHARE_CONDUCTING_LABEL", - "message": "Conducting research or analysing of the user preferences and demographics as statistical-masked data and not as individual data.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_PROCESS_DISCLOSE_SHARE_DETECTING_LABEL", - "message": "Detecting, investigating and preventing activities that may violate our policies or that may be illegal or unlawful.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_PROCESS_DISCLOSE_SHARE_EMPLOYEES_LABEL", - "message": "We may disclose or share this data to/with employees and/or contractors of the urban local body, state government, or other government agencies, service providers, whose role requires them to view or use this information in order to perform their official duties, including providing you the service(s) you are requesting. ", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_PROCESS_DISCLOSE_SHARE_INFO_LABEL", - "message": "We use this data to serve you with the best civic experience, such as providing digital grievance redressal systems, efficient service delivery, creating dashboards of ULB activities, etc. Data is only processed on the basis of a legal mandate and for a legitimate and necessary purpose (to deliver to you the services you are requesting, and to make improvements in service delivery and administration, as well as any other purposes specified by law).", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_PROCESS_DISCLOSE_SHARE_LABEL", - "message": "WHY AND HOW DO WE PROCESS, DISCLOSE, AND/OR SHARE THIS DATA?", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_PROCESS_DISCLOSE_SHARE_METADATA_LABEL", - "message": "We may process, disclose, or share certain metadata, as well as aggregated and anonymised data, in order to assess and improve the status of such service delivery over time.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_PROCESS_DISCLOSE_SHARE_MONITIRING_LABEL", - "message": "Data processed or shared for monitoring user activity and preferences as evidence from user’s activity on app to provide a better experience in future.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_PROCESS_DISCLOSE_SHARE_NOT_SHARE_LABEL", - "message": "We will not process, disclose, or share your data except as described in this policy, or as otherwise authorized by you.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_PROCESS_DISCLOSE_SHARE_ORDER_TO_COMPLY_LABEL", - "message": "We may disclose or share this data in order to comply with the law or any legal process, including when required in judicial, arbitral, or administrative proceedings.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_PROCESS_DISCLOSE_SHARE_PAYMENTS_LABEL", - "message": "Payments made through the Urban DIGIT App/website are processed via secure payment gateways.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_PROCESS_DISCLOSE_SHARE_PROVIDE_SERVICES_LABEL", - "message": "We process data which is necessary to provide you with the services you are requesting", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_PROCESS_DISCLOSE_SHARE_RESOLVING_LABEL", - "message": "Data processed or shared while resolving any disputes that may arise with respect to the transactions/deals that you may conduct using the app/website.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_PROTECT_PERSONALLY_INFO_LABEL", - "message": "By default, PII is maintained in a masked format. Persons with the appropriate authorisation can put in a request for this data to be unmasked. We log each such request, thus creating a non-repudiable and auditable trail of each such access to PII.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_PROTECT_PERSONALLY_LABEL", - "message": "HOW DO WE PROTECT PERSONALLY IDENTIFIABLE INFORMATION (PII)?", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_RESPECT_PRIVACY_OF_USERS_LABEL", - "message": "We respect the privacy of our users. Hence, we maintain the highest standards for secure activities , user information/data privacy and security.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_STORE_DELETE_YOUR_ACCOUNT_LABEL", - "message": "You may delete your account any time you wish. In case of deletion, we will remove all your PII from the system, so that it is not visible and/or accessible from any regular operation. However, the PII may be retained in an encrypted manner for the purpose of legal requirements/compliances {AS PER UNION / STATE / ULB LAWS} from the date of deletion/termination.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_STORE_DISCONNECT_LABEL", - "message": "In case you surrender/disconnect your registered mobile number it is recommended to delete your profile or unregister yourself from the application also.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_STORE_RECREATE_PROFILE_LABEL", - "message": "After deletion, in case you wish to recreate your profile, the same is permissible and none of the previously captured information will be populated automatically. You need to register as a fresh user.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_STORE_REVIEW_EDIT_LABEL", - "message": "You can review and edit your data, as well as delete your data from the app/website by following the procedures {AS PER UNION / STATE / ULB LAWS}.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_STORE_SECURE_MANNER_LABEL", - "message": "Your data is stored in a secure manner. DIGIT platform, which has embedded privacy settings (such as encryption), which does not allow your data to be visible to anyone, except persons who are authorized to do so by virtue of their official role. Unless indicated otherwise, this data will be retained for a minimum period of {AS PER UNION / STATE / ULB LAWS} and a maximum period of {AS PER UNION / STATE / ULB LAWS}. ", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_STORE_SECURITY_MEASURES_LABEL", - "message": "We have data security measures adopted to ensure that users data is safe and away from dangers of cyber/physical harms. ", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_STORE_THIS_DATA_LABEL", - "message": "HOW DO WE STORE THIS DATA?", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_STORE_UNREGISTER_LABEL", - "message": "If you simply delete/remove the application from your mobile device but do not delete your profile or unregister yourself from the app/website, you shall continue to be a registered user of the app and we shall continue to send you all communications that you have opted for unless and until you opt-out of such communications, or {AS PER UNION / STATE / ULB LAW}.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CCF_TERM_OF_USE_", - "message": " Terms Of Use", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CE_DCOUMENT_UPLOADED_ON", - "message": "Uploaded on", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CE_DOCUMENTS_NOT_FOUND", - "message": "No Documents found", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CE_DOCUMENT_DETAILS", - "message": "Document Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CE_DOCUMENT_DOWNLOAD_LINK", - "message": "Download", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CE_DOCUMENT_OPEN_LINK", - "message": "Link", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CE_DOCUMENT_VIEW_LINK", - "message": "View", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CE_NOTICES_HEADER", - "message": "Notices", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CE_SERACH_DOCUMENTS", - "message": "Search documents", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CE_TABLE_DOCUMENT_LINK", - "message": "Attachment/Link", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CE_TABLE_DOCUMENT_NAME", - "message": "Document Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CE_TABLE_DOCUMENT_POSTED_BY", - "message": "Posted By", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CHAIN_MAN", - "message": "Chain Man", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CHALLANSTATUSREGISTRY", - "message": "Challan Register", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CHALLAN_DETAILS", - "message": "Challan Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CHALLAN_VALIDITY", - "message": "Validity of challan is", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CHANNELSREPORT", - "message": "Channels Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CHECKBOX_ANSWER_TYPE", - "message": "Check boxes", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CHEQUE", - "message": "Cheque", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CHOOSE_AN_ACTION", - "message": "Choose an Action", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CHOOSE_FILE", - "message": "Choose File", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN", - "message": "Online", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZENACTIONREQUIRED", - "message": "Pending for Citizen Action", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZENACTIONREQUIRED-DV", - "message": "Citizen Action Required From DV", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_ACTION_PENDING_AT_DOC_VERIF", - "message": "Citizen Action Pending At Document Verification", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_ACTION_PENDING_AT_FI_VERIF", - "message": "Citizen Action Pending At FI Verification", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_ACTION_PENDING_AT_NOC_VERIF", - "message": "Citizen Action Pending At NOC Verification", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_APPROVAL_INPROCESS", - "message": "Citizen Approval Inprogress", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_CHARTER_DOCUMENT", - "message": "Citizen Charter Document", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_CHARTER_DOC_DESC", - "message": "Citizen Charter Document description.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_CONSENT_FORM_PP_ACCESS_AVAIL_LABEL", - "message": "Through PROGRAM NAME, you can access and avail services offered by STATE OR ULB NAME Government departments, Central Government department, Local bodies & their agencies and corporate/private bodies (utility services) (Service Providers). You can use PROGRAM NAME website / application / services in different ways such as, service discovery, availing services, registering grievances, and so on.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_CONSENT_FORM_PP_DD_DEAL_LABEL", - "message": "This Privacy Policy describes and determines how we deal with your personal and usage information in accordance with the applicable laws of India.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_CONSENT_FORM_PP_POWERED_BY_DIGIT_LABEL", - "message": "PROGRAM NAME is a collaboration between PARTNER(S) NAME(S) and eGovernments Foundation. It is powered by DIGIT, which is an open-source software platform developed by eGovernments Foundation.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_CONSENT_FORM_PP_PRIVANCY_SECURITY_LABEL", - "message": "{PROGRAM NAME} (“we” or “us” or “our”) respects the privacy of our users (“user” or “you” also referred to as ‘your’). Hence, we maintain the highest standards for secure activities , user information/data privacy and security.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_CONSENT_FORM_PP_REFERS_LABEL", - "message": "PROGRAM NAME refers to the services being provided through PROGRAM NAME website, mobile App, OTHER CHANNELS AS RELEVANT.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_FAILURE_BPAREG_PAYMENT_MESSAGE", - "message": "Payment has failed!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_FAILURE_BPAREG_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding Payment failure has been sent to the registered Mobile No. of the user/owner.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_FAILURE_BPA_LOW_RISK_PERMIT_FEE_PAYMENT_MESSAGE", - "message": "Payment has failed!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_FAILURE_BPA_LOW_RISK_PERMIT_FEE_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding payment failure has been sent to the registered Mobile No. of the user/owner.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_FAILURE_BPA_NC_APP_FEE_PAYMENT_MESSAGE", - "message": "Payment has failed!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_FAILURE_BPA_NC_APP_FEE_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding payment failure has been sent to the registered Mobile No. of the user/owner.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_FAILURE_BPA_NC_SAN_FEE_PAYMENT_MESSAGE", - "message": "Payment has failed!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_FAILURE_BPA_NC_SAN_FEE_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding payment failure has been sent to the registered Mobile No. of the user/owner.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_FAILURE_COMMON_PAYMENT_MESSAGE", - "message": "Payment Failed", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_FAILURE_DEFALUT_PAYMENT_MESSAGE", - "message": "Payment has failed!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_FAILURE_DEFALUT_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding payment failure has been sent to property owner at registered Mobile No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_FAILURE_DEFAULT_PAYMENT_MESSAGE", - "message": "Payment has failed!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_FAILURE_DEFAULT_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding payment failure has been sent at the registered Mobile No. of the user/owner.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_FAILURE_PT_MUTATION_PAYMENT_MESSAGE", - "message": "Payment has failed!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_FAILURE_PT_MUTATION_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding payment failure has been sent to property owner at registered Mobile No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_FAILURE_PT_PAYMENT_MESSAGE", - "message": "Payment has failed!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_FAILURE_PT_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding payment failure has been sent to property owner at registered Mobile No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_FAILURE_SW.ONE_TIME_FEE_PAYMENT_MESSAGE", - "message": "Payment has failed!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_FAILURE_SW.ONE_TIME_FEE_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding Payment failure has been sent to the registered Mobile No. of the user/owner.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_FAILURE_SW_ONE_TIME_FEE_PAYMENT_MESSAGE", - "message": "Payment has failed!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_FAILURE_SW_ONE_TIME_FEE_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding Payment failure has been sent to the registered Mobile No. of the user/owner.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_FAILURE_SW_PAYMENT_MESSAGE", - "message": "Payment has failed!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_FAILURE_SW_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding Payment failure has been sent to the registered Mobile No. of the user/owner.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_FAILURE_TL_PAYMENT_MESSAGE", - "message": "Payment has failed!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_FAILURE_TL_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding payment failure has been sent to property owner at registered Mobile No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_FAILURE_WS.ONE_TIME_FEE_PAYMENT_MESSAGE", - "message": "Payment has failed!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_FAILURE_WS.ONE_TIME_FEE_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding Payment failure has been sent to the registered Mobile No. of the user/owner.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_FAILURE_WS_ONE_TIME_FEE_PAYMENT_MESSAGE", - "message": "Payment has failed!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_FAILURE_WS_ONE_TIME_FEE_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding Payment failure has been sent to the registered Mobile No. of the user/owner.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_FAILURE_WS_PAYMENT_MESSAGE", - "message": "Payment has failed!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_FAILURE_WS_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding Payment failure has been sent to the registered Mobile No. of the user/owner.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_FEEDBACK_PENDING", - "message": "Pending for Citizen Feedback", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SERVICE_CENTER", - "message": "Citizen Service Center", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_ADVT_GAS_BALLOON_ADVERTISEMENT_PAYMENT_MESSAGE", - "message": "Payment has been collected successfully!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_ADVT_GAS_BALLOON_ADVERTISEMENT_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding Payment Collection has been sent to the registered Mobile No. of the user/owner.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_ADVT_GAS_BALLOON_ADVERTISEMENT_PAYMENT_RECEIPT_NO", - "message": "Receipt No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_ADVT_HOARDINGS_PAYMENT_MESSAGE", - "message": "Payment Successful", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_ADVT_HOARDINGS_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding payment is shared with owner at registered mobile number.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_ADVT_HOARDINGS_PAYMENT_RECEIPT_NO", - "message": "Receipt No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_ADVT_LIGHT_WALA_BOARD_PAYMENT_MESSAGE", - "message": "Payment has been collected successfully!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_ADVT_LIGHT_WALA_BOARD_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding Payment Collection has been sent to the registered Mobile No. of the user/owner.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_ADVT_LIGHT_WALA_BOARD_PAYMENT_RECEIPT_NO", - "message": "Receipt No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_ADVT_UNIPOLLS_PAYMENT_MESSAGE", - "message": "Payment has been collected successfully!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_ADVT_UNIPOLLS_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding Payment Collection has been sent to the registered Mobile No. of the user/owner.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_ADVT_UNIPOLLS_PAYMENT_RECEIPT_NO", - "message": "Receipt No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_ADVT_WALL_PAINT_ADVERTISEMENT_PAYMENT_MESSAGE", - "message": "Payment has been collected successfully!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_ADVT_WALL_PAINT_ADVERTISEMENT_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding Payment Collection has been sent to the registered Mobile No. of the user/owner.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_ADVT_WALL_PAINT_ADVERTISEMENT_PAYMENT_RECEIPT_NO", - "message": "Receipt No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_BPAREG_PAYMENT_RECEIPT_NO", - "message": "Payment Receipt No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_BPA_LOW_RISK_PERMIT_FEE_PAYMENT_MESSAGE", - "message": "Payment has been paid successfully!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_BPA_LOW_RISK_PERMIT_FEE_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding Payment has been sent to the registered Mobile No. of the user/owner.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_BPA_LOW_RISK_PERMIT_FEE_PAYMENT_RECEIPT_NO", - "message": "Payment Receipt No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_BPA_NC_APP_FEE_PAYMENT_MESSAGE", - "message": "Payment has been paid successfully!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_BPA_NC_APP_FEE_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding Payment has been sent to the registered Mobile No. of the user/owner.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_BPA_NC_APP_FEE_PAYMENT_RECEIPT_NO", - "message": "Payment Receipt No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_BPA_NC_APP_FEE_SUPERVISOR_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding payment completion has been sent to the registered Mobile No. of the user/owner.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_BPA_NC_OC_APP_FEE_PAYMENT_MESSAGE", - "message": "Payment has been paid successfully!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_BPA_NC_OC_APP_FEE_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding Payment has been sent to the registered Mobile No. of the user/owner.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_BPA_NC_OC_APP_FEE_PAYMENT_RECEIPT_NO", - "message": "Payment Receipt No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_BPA_NC_OC_SAN_FEE_PAYMENT_MESSAGE", - "message": "Payment has been paid successfully!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_BPA_NC_OC_SAN_FEE_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding Payment has been sent to the registered Mobile No. of the user/owner.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_BPA_NC_OC_SAN_FEE_PAYMENT_RECEIPT_NO", - "message": "Payment Receipt No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_BPA_NC_SAN_FEE_PAYMENT_MESSAGE", - "message": "Payment has been paid successfully!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_BPA_NC_SAN_FEE_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding Payment has been sent to the registered Mobile No. of the user/owner.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_BPA_NC_SAN_FEE_PAYMENT_RECEIPT_NO", - "message": "Payment Receipt No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_DEFALUT_PAYMENT_MESSAGE", - "message": "Payment has been paid successfully!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_DEFALUT_PAYMENT_MESSAGE_DETAIL", - "message": "A Notification regarding the payment has been sent to the applicant's mobile number.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_DEFALUT_PAYMENT_RECEIPT_NO", - "message": "Payment Receipt No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_FIRENOC_PAYMENT_MESSAGE", - "message": "Payment has been paid successfully!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_FIRENOC_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding Payment failure has been sent to the registered Mobile No. of the user/owner.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_FIRENOC_PAYMENT_RECEIPT_NO", - "message": "Payment Receipt No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_FSM_TRIP_CHARGES_PAYMENT_MESSAGE_DETAIL", - "message": "Receipt No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_PT_MUTATION_PAYMENT_MESSAGE", - "message": "Payment has been paid successfully!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_PT_MUTATION_PAYMENT_MESSAGE_DETAIL", - "message": "A Notification regarding the payment has been sent to the applicant's mobile number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_PT_MUTATION_PAYMENT_RECEIPT_NO", - "message": "Payment Receipt No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_PT_PAYMENT_MESSAGE", - "message": "Payment has been paid successfully!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_PT_PAYMENT_MESSAGE_DETAIL", - "message": "A Notification regarding the payment has been sent to the applicant's mobile number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_PT_PAYMENT_RECEIPT_NO", - "message": "Payment Receipt No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_SW.ONE_TIME_FEE_PAYMENT_MESSAGE", - "message": "Payment has been collected successfully!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_SW.ONE_TIME_FEE_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding Payment Collection has been sent to the registered Mobile No. of the user/owner.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_SW.ONE_TIME_FEE_PAYMENT_RECEIPT_NO", - "message": "Payment Receipt No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_SW_ONE_TIME_FEE_PAYMENT_MESSAGE", - "message": "Payment has been collected successfully!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_SW_ONE_TIME_FEE_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding Payment Collection has been sent to the registered Mobile No. of the user/owner.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_SW_ONE_TIME_FEE_PAYMENT_RECEIPT_NO", - "message": "Payment Receipt No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_SW_PAYMENT_MESSAGE", - "message": "Payment has been collected successfully!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_SW_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding Payment Collection has been sent to the registered Mobile No. of the user/owner.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_SW_PAYMENT_RECEIPT_NO", - "message": "Payment Receipt No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_TL_PAYMENT_MESSAGE", - "message": "Payment has been paid successfully!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_TL_PAYMENT_MESSAGE_DETAIL", - "message": "A Notification regarding the payment has been sent to the applicant's mobile number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_TL_PAYMENT_RECEIPT_NO", - "message": "Payment Receipt No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_TX_NO_DUES_CERTIFICATE_PAYMENT_MESSAGE", - "message": "Payment Successful", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_TX_NO_DUES_CERTIFICATE_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding payment is shared with owner at registered mobile number.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_TX_NO_DUES_CERTIFICATE_PAYMENT_RECEIPT_NO", - "message": "Receipt No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_TX_TRANSFER_PROPERTY_FEES_PAYMENT_MESSAGE", - "message": "Payment has been collected successfully!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_TX_TRANSFER_PROPERTY_FEES_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding Payment Collection has been sent to the registered Mobile No. of the user/owner.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_TX_TRANSFER_PROPERTY_FEES_PAYMENT_RECEIPT_NO", - "message": "Receipt No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_TX_TS1_COPY_REGISTER_FOR_OLD_SURVEY_PAYMENT_MESSAGE", - "message": "Payment has been collected successfully!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_TX_TS1_COPY_REGISTER_FOR_OLD_SURVEY_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding Payment Collection has been sent to the registered Mobile No. of the user/owner.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_TX_TS1_COPY_REGISTER_FOR_OLD_SURVEY_PAYMENT_RECEIPT_NO", - "message": "Receipt No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_UC_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding payment has been sent to property owner at registered Mobile No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_WS.ONE_TIME_FEE_PAYMENT_MESSAGE", - "message": "Payment has been collected successfully!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_WS.ONE_TIME_FEE_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding Payment Collection has been sent to the registered Mobile No. of the user/owner.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_WS.ONE_TIME_FEE_PAYMENT_RECEIPT_NO", - "message": "Payment Receipt No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_WS_ONE_TIME_FEE_PAYMENT_MESSAGE", - "message": "Payment has been collected successfully!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_WS_ONE_TIME_FEE_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding Payment Collection has been sent to the registered Mobile No. of the user/owner.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_WS_ONE_TIME_FEE_PAYMENT_RECEIPT_NO", - "message": "Payment Receipt No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_WS_PAYMENT_MESSAGE", - "message": "Payment has been collected successfully!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_WS_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding Payment Collection has been sent to the registered Mobile No. of the user/owner.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITIZEN_SUCCESS_WS_PAYMENT_RECEIPT_NO", - "message": "Payment Receipt No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CITY_IS_REQUIRED", - "message": "City is required", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CLEANER", - "message": "Cleaner", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CLEAR_SEARCH_LINk", - "message": "Clear Search", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CLICK_TO_ADD_PHOTO", - "message": "Click to add photo", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CMN_ACK_CORPORATION_HEADER", - "message": "Municipal Corporation", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CMN_NOOPTION", - "message": "No Options", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CMN_OPTION", - "message": "Option", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COLLECTED_IN_FORM_OF_CHALLANS_IN_LAST_12_MONTHS", - "message": "collected in form of challans in the last 12 months.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COLLECTIONREPORT", - "message": "Collection Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMOM_CREDIT/COMMON_DEBIT_CARD", - "message": " Credit/Debit Card", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_ACTION_TEST_COLLAPSE", - "message": "Collapse", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_ACTION_TEST_EXPAND_MENU", - "message": "Expand Menu", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_ALL", - "message": "All", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_APPLICANT_GENDER", - "message": "Applicant Gender", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_APPLIED", - "message": "Pending for Document Verification", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_APPROVED", - "message": "Approved", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_ARREARS", - "message": "Arrears", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_ARREARS_TOTAL", - "message": "Arrears", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_ASSIGNEE", - "message": "Assignee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_BENEFICIARY_DETAILS", - "message": "Beneficiary Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_BOTTOM_NAVIGATION_HOME", - "message": "Home", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_BRANCH_NAME", - "message": "Branch ", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_BUTTON_BACK", - "message": "Back", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_BUTTON_HOME", - "message": "GO TO HOME", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_CANNOT_MODIFY_PROJECT_EST_CREATED", - "message": "Estimate is prepared for the project, hence the details can not be modified.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_CASH", - "message": "CASH", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_CBO_ID", - "message": "CBO ID", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_CERTIFY_ONE", - "message": "I certify that appropriate amount of work has been completed. Muster roll has been verified against Measurement Book.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_CERTIFY_TWO", - "message": ": Once approved Payment Advice will be generated and send to JIT-FS for payment processing.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_CHECK_FORWARD", - "message": "Create and Forward", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_CHEQUE", - "message": "CHEQUE", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_CITIZENACTIONREQUIRED", - "message": "Pending for Citizen Action", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_CREATE_CONTRACT", - "message": "Create Work Order", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_CREATE_ESTIMATE", - "message": "Create Estimate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_CREDIT_DEBIT_CARD", - "message": "Credit/DebitCard", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_DAY", - "message": "day", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_DAYS", - "message": "days", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_DD", - "message": "DD", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_DEDUCTIONS", - "message": "Deductions", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_DESC", - "message": "Description", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_DESGN_OF_OFFICER_IN_CHARGE", - "message": "Designation of officer In-charge", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_DOC_DATA_NOT_FOUND", - "message": "Document not found!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_DOWNLOAD", - "message": "Download", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_DOWNLOAD_RECEIPT", - "message": "DOWNLOAD / VIEW RECEIPT", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_DSS_VIEW_DASH_BOARD_LABEL", - "message": "View Dashboard", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_EDIT", - "message": "Edit", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_END_DATE_SHOULD_BE_GREATER_THAN_START_DATE", - "message": "End Date should be more than Start Date.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_ENTER_VALID_GEO_LOCATION", - "message": "Please enter valid Geo Location.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_ERROR_FETCHING_BILL_DETAILS", - "message": "Error fetching Bill details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_ERROR_FETCHING_DATA", - "message": "Error fetching data", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_ERROR_FETCHING_ESTIMATE_DETAILS", - "message": "Error fetching Estimate details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_ERROR_FETCHING_MUSTER_DETAILS", - "message": "Error fetching Muster details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_ERROR_FETCHING_ORG_DETAILS", - "message": "Error fetching Organisation details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_ERROR_FETCHING_WAGE_SEEKER_DETAILS", - "message": "Error fetching Wage Seeker details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_ESTIMATE_NOT_FOUND", - "message": "Estimate not found", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_EVENTS_LABEL", - "message": "Events", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_FIELDINSPECTION", - "message": "Pending for Field Inspection", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_FILE_COMPONENT_BANNER", - "message": "Only jpg, pdf, doc, docx, xls, xlsx files can be uploaded. File size should not exceed 5 MB.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_FINANCIAL_DETAILS", - "message": "Financial Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_GALLERY_LABEL", - "message": "Gallery", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_GENDER_FEMALE", - "message": "Female", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_GENDER_MALE", - "message": "Male", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_GENDER_OTHER", - "message": "Other", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_GENDER_OTHERS", - "message": "Others", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_GENDER_TRANSGENDER", - "message": "Transgender", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_GENERATE_RECEIPT", - "message": "Generate Receipt", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_GO_TO_INBOX", - "message": "Go to Inbox", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_GUARDIAN_NAME", - "message": "Father / Husband Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_HOW_IT_WORKS", - "message": "How it works?", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_IFSC_CODE", - "message": "IFSC Code", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_INBOX_ASSIGNED_TO_ALL", - "message": "Assigned to all", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_INBOX_ASSIGNED_TO_ME", - "message": "Assigned to me", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_INBOX_NO_DATA", - "message": "No results found !", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_INBOX_ROWS_LABEL", - "message": "Rows per page:", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_INBOX_TAB_ALL", - "message": "All", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_INBOX_TAB_ASSIGNED_TO_ME", - "message": "Assigned to me", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_INBOX_TAB_ESCALATED", - "message": "Esclated", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_INITIATED", - "message": "Initiated", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_LABOUR_AND_MATERIAL_ANALYSIS", - "message": "Labour & Material Analysis", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_LOCALITY", - "message": "Locality", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_LOCATION_DETAILS", - "message": "Address Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MAKE_PAYMENT", - "message": "Make Payment", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MANDATORY_MISSING_ERROR", - "message": "Please select the mandatory search field", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_A", - "message": "A", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_APPROVED", - "message": "Approved", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_B", - "message": "B", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_BILLCREATED", - "message": "Bill Created", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_C", - "message": "C", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DEPARTMENT_ACC01", - "message": "ACCOUNTS", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DEPARTMENT_DEPT_1", - "message": "Street Lights", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DEPARTMENT_DEPT_10", - "message": "Help Desk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DEPARTMENT_DEPT_11", - "message": "Housing and Urban Development", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DEPARTMENT_DEPT_12", - "message": "Birth and Death Branch", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DEPARTMENT_DEPT_13", - "message": "Tax Branch", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DEPARTMENT_DEPT_14", - "message": "Civil", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DEPARTMENT_DEPT_15", - "message": "Engineering Branch (O&M - W&S)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DEPARTMENT_DEPT_16", - "message": "Health Branch", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DEPARTMENT_DEPT_17", - "message": "Tehbezari branch (Encroachments)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DEPARTMENT_DEPT_18", - "message": "Engineering Branch (Electrical)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DEPARTMENT_DEPT_19", - "message": "Advertisment Tax Branch", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DEPARTMENT_DEPT_2", - "message": "Building & Roads", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DEPARTMENT_DEPT_20", - "message": "Complaint Branch", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DEPARTMENT_DEPT_21", - "message": "Sanitation Branch", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DEPARTMENT_DEPT_22", - "message": "Engineering Branch (Mechanical)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DEPARTMENT_DEPT_23", - "message": "Tehbazari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DEPARTMENT_DEPT_24", - "message": "Fire Brigade", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DEPARTMENT_DEPT_25", - "message": "Accounts Branch", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DEPARTMENT_DEPT_26", - "message": "Rent", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DEPARTMENT_DEPT_27", - "message": "License Branch", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DEPARTMENT_DEPT_28", - "message": "Property Branch", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DEPARTMENT_DEPT_29", - "message": "Receipt and Dispatch Branch", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DEPARTMENT_DEPT_3", - "message": "Health & Sanitation", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DEPARTMENT_DEPT_30", - "message": "Tehbazari and Property Branch", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DEPARTMENT_DEPT_31", - "message": "Pension and HFA etc", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DEPARTMENT_DEPT_32", - "message": "Land Branch", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DEPARTMENT_DEPT_33", - "message": "Property Tax Branch", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DEPARTMENT_DEPT_34", - "message": "Establishment Branch", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DEPARTMENT_DEPT_35", - "message": "Works Branch", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DEPARTMENT_DEPT_36", - "message": "GIS Branch", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DEPARTMENT_DEPT_37", - "message": "Electrical Branch", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DEPARTMENT_DEPT_38", - "message": "General Branch", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DEPARTMENT_DEPT_39", - "message": "Court Case Branch", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DEPARTMENT_DEPT_4", - "message": "Operation & Maintenance", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DEPARTMENT_DEPT_40", - "message": "Tehbezari branch - for Encroachments", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DEPARTMENT_DEPT_41", - "message": "Water Supply and Sewerage", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DEPARTMENT_DEPT_42", - "message": "Executive Officer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DEPARTMENT_DEPT_43", - "message": "Property and House Tax", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DEPARTMENT_DEPT_44", - "message": "Purchaser Branch", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DEPARTMENT_DEPT_45", - "message": "Engineering Branch (Civil - B&R", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DEPARTMENT_DEPT_47", - "message": "Property Tax & Rent & Tehbazari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DEPARTMENT_DEPT_49", - "message": "BPL", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DEPARTMENT_DEPT_5", - "message": "Hotriculture", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DEPARTMENT_DEPT_51", - "message": "Executive Agency", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DEPARTMENT_DEPT_52", - "message": "Library", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DEPARTMENT_DEPT_6", - "message": "Building Branch", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DEPARTMENT_DEPT_7", - "message": "Citizen service desk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DEPARTMENT_DEPT_8", - "message": "Complaint Cell", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DEPARTMENT_DEPT_9", - "message": "Secretary/General Administration Branch", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DEPARTMENT_DEPT_LG", - "message": "Legal Branch", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DEPARTMENT_DEPT_TP", - "message": "Town Planning", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DEPARTMENT_ENG", - "message": "Accounts Branch", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DEPARTMENT_PHS01", - "message": "PUBLIC HEALTH AND SANITATION", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DEPARTMENT_PWSSB", - "message": "PWSSB", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DEPARTMENT_REV01", - "message": "REVENUE", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DEPARTMENT_TP01", - "message": "TOWN PLANNING", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_ACC_AO", - "message": "Accounts Officer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_ACC_JAO", - "message": "Junior Accounts Officer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_ADM_ADMC", - "message": "Additional Commissioner", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_ADM_AEO", - "message": "Assistant Executive Officer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_ADM_AMC", - "message": "Assistant Commissioner", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_ADM_DMC", - "message": "Deputy Commissioner", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_ADM_EO", - "message": "Executive Officer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_ADM_MC", - "message": "Commissioner", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_ADP01", - "message": "Assistant Director, Planning", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_AE01", - "message": "Assistant Engineer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_AHDO01", - "message": "Assistant Horticulture Development Officer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_AHO01", - "message": "Assistant Health Officer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_AHO02", - "message": "Animal Husbandry Officer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_AME01", - "message": "Amen", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_AO", - "message": "Accounts Officer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_AO01", - "message": "Accounts Officer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_AVEO01", - "message": "Assistant Vigilance and Enforcement Officer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_CCI01", - "message": "Chief Cleanliness Inspector", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_CE", - "message": "Chief Engineer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_CI01", - "message": "Cleanliness Inspector", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_CLERK", - "message": "Clerk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_CMFA01", - "message": "Chief Municipal Finance and Accounts Officer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_COMM", - "message": "Commissioner", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DDPA01", - "message": "Deputy Director, Planning and Architecture", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_01", - "message": "Superintending Engineer ( B&R)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_02", - "message": "Corporation Engineer (B&R)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_03", - "message": "Asst. Engineer ( B&R)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_04", - "message": "Junior Engineer ( B&R)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_05", - "message": "Land Scape Officer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_06", - "message": "Superintending Engineer ( O&M)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_07", - "message": "Corporation Engineer (O&M)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_08", - "message": "Asst. Engineer ( O&M)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_09", - "message": "Junior Engineer ( O&M)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_10", - "message": "Superintending Engineer ( Light)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_100", - "message": "Computer Opertor", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_1001", - "message": "Deputy Controller Finance and Accounts", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_101", - "message": "Steno", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_102", - "message": "Plumber", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_103", - "message": "Pump Operator", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_104", - "message": "Court Clerk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_105", - "message": "Fitter Coolie", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_106", - "message": "Sub Divisional Engineer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_107", - "message": "Sub Fire Officer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_108", - "message": "Restorar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_109", - "message": "Senior Scale Stenographer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_11", - "message": "Corporation Engineer (Light)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_110", - "message": "Mali-Cum-Chounkidar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_111", - "message": "Mali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_112", - "message": "Beldar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_113", - "message": "Sanitory Supervisor", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_114", - "message": "Fiter Cooli", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_115", - "message": "Junior Technician", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_116", - "message": "Sewerman", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_117", - "message": "Steno/Personal Assistant", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_118", - "message": "Architect", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_119", - "message": "Site Engineer/Contractor", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_12", - "message": "Junior Engineer ( Light)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_120", - "message": "Tractor Driver", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_121", - "message": "Trolley Man", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_123", - "message": "peon", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_124", - "message": "Bill Distributor", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_125", - "message": "Sewadar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_13", - "message": "Health Officer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_14", - "message": "Medical Officer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_15", - "message": "Chief Sanitary Inspector", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_16", - "message": "Sanitary Inspector", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_17", - "message": "Sanitary Supervisor", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_18", - "message": "Senior Town Planner", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_19", - "message": "Municipal Town Planner", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_20", - "message": "Asst. Town Planner", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_21", - "message": "Building Inspector", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_22", - "message": "Junior Enginer ( Horticulutre)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_23", - "message": "Citizen service representative", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_24", - "message": "Assistant Commissioner", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_25", - "message": "Assistant Engineer (Light)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_26", - "message": "Secretary", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_27", - "message": "Computer Operator", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_28", - "message": "In Charge/DBA", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_33", - "message": "Baildar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_34", - "message": "Junior Assistant", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_35", - "message": "Inspector", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_36", - "message": "Assistant Engineer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_37", - "message": "Surveyor", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_38", - "message": "Assistant Corporation Engg.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_39", - "message": "Head Draftsman", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_40", - "message": "General Inspector", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_41", - "message": "Draftsman", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_42", - "message": "Superintending Engineer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_43", - "message": "Superitendent", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_44", - "message": "Junior Draftsman", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_45", - "message": "Assistant Town Planner", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_46", - "message": "Building inspector(Technical)/Draftsman", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_47", - "message": "Superintendent", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_48", - "message": "Data entry operator", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_49", - "message": "Assistant Municipal Engineering", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_50", - "message": "Sanitary Inspector", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_51", - "message": "Commissioner", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_52", - "message": "Municipal Engineer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_53", - "message": "Executive Engineer/Municipal Engineer/Corporation Engineer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_54", - "message": "Junior.Assistant", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_55", - "message": "Fireman", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_56", - "message": "Deputy Controller (Finance & Accounts)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_57", - "message": "Corporation Engineer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_58", - "message": "Accountant", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_59", - "message": "Sanitary Supervisor", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_60", - "message": "Draftman", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_61", - "message": "Data Entry Operator", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_62", - "message": "Inspector/Senior Assistant", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_63", - "message": "Fire Station Officer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_64", - "message": "INSPECTOR", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_65", - "message": "Assistant Corporation Engineer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_66", - "message": "Computer Programmer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_67", - "message": "Corporation Engineer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_68", - "message": "Asistant Commisstioner", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_69", - "message": "Executive officer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_70", - "message": "ALM (Assistant Line Man)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_71", - "message": "Sub-Divisional Engineer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_72", - "message": "Supervisor", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_73", - "message": "GIS EXPERT", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_74", - "message": "Local Registrar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_75", - "message": "Tax Collector", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_76", - "message": "Building Superintendent", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_77", - "message": "Sanitory Inspector", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_78", - "message": "Additional Local Registrar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_79", - "message": "Superintendent Engineer (Councils)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_80", - "message": "Senior Assistant", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_81", - "message": "Chief Sanitory Inspector", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_82", - "message": "Sub Registrar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_83", - "message": "Legal Assistant", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_84", - "message": "Electrician", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_85", - "message": "Assistant Municipal Engineer ( Civil )", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_86", - "message": "Junior Engineer (Building)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_87", - "message": "Computer in Birth and Death Branch", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_88", - "message": "Junior Engineer (Electrical)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_89", - "message": "Executive Officer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_90", - "message": "Peon", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_91", - "message": "Municipal Engineer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_92", - "message": "Driver", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_93", - "message": "Sectional Officer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_94", - "message": "Sweeper", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_95", - "message": "Watchman", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_96", - "message": "Pump Opertor", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_97", - "message": "Clerk-cum- computer opertor", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_98", - "message": "Assistant Municipal Engineer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESIG_99", - "message": "Assistant Pump Operator", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DPA01", - "message": "Director, Planning and Architecture", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DRAFT01", - "message": "Draftsman", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_EO01", - "message": "Enforcement Officer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_EO02", - "message": "Executive Officer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_FO01", - "message": "Finance Officer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_HC01", - "message": "Head Clerk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_JE01", - "message": "Junior Engineer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_JE_PWSSB", - "message": "Junior Engineer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_JMC01", - "message": "Joint Municipal Commissioner", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_LDC01", - "message": "Lower Division Clerk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_MA01", - "message": "Municipal Administrator", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_MCS01", - "message": "Municipal corporation Secretary", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_MS01", - "message": "Municipal Secretary", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_OS01", - "message": "Offices Superintendent", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_RI01", - "message": "Revenue Inspector", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_RO01", - "message": "Revenue Officer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_SAMC01", - "message": "Senior Additional Municipal Commissioner", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_SDO_PWSSB", - "message": "Sub Division Officer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_SK01", - "message": "Store Keeper", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_SUR01", - "message": "Surveyor", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_TA01", - "message": "Town Architect", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_Tax", - "message": "Ward Officer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_UDC01", - "message": "Upper Division Clerk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_WIR", - "message": "WIR", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_WRK_ACCE", - "message": "Account Expert (MUKTA)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_WRK_AE", - "message": "Assistant Enginner", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_WRK_AEE", - "message": "Assistant Executive Engineer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_WRK_AM", - "message": "Ameen", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_WRK_CE", - "message": "City Enginner", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_WRK_DA", - "message": "Dealing Assistant", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_WRK_DEE", - "message": "Deputy Executive Engineer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_WRK_EE", - "message": "Executive Engineer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_WRK_IE", - "message": "Implementation Expert (MUKTA)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_WRK_JE", - "message": "Junior Enginner", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_WRK_ME", - "message": "Municipal Engineer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_WRK_PC", - "message": "Program Coordinator (MUKTA)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_WRK_RI", - "message": "Revenue Inspector", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_XEN_PWSSB", - "message": "Executive Engineer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DOCUMENTTYPE_OWNERIDPROOF", - "message": "Owner's ID Proof", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DOCUMENTTYPE_OWNERSHIPPROOF", - "message": "Ownership Proof", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_ORG_CBO", - "message": "Community Based Organization", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_ORG_VEN", - "message": "Vendor/ Supplier", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_COMPANY", - "message": "Company", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_COMPANY_LIMITEDLIABILITYPARTNERSHIP", - "message": "Limited Liability Partnership", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_COMPANY_ONEPERSONCOMPANY", - "message": "One Person Company", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_COMPANY_PARTNERSHIPFIRM", - "message": "Partnership Firm", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_COMPANY_PRIVATELIMITEDCOMPANY", - "message": "Private Limited Company", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_COMPANY_PROPRIETORSHIP", - "message": "Proprietorship", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_COMPANY_PUBLICLIMITEDCOMPANY", - "message": "Public Limited Company", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_COMPANY_SECTION8COMPANY", - "message": "Section 8 Company", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_GOVERNMENT", - "message": "Government", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_GOVERNMENT_CENTRALGOVERNMENT", - "message": "Central Government", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_GOVERNMENT_LOCALGOVERNMENT", - "message": "Local Government", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_GOVERNMENT_RURALLOCALGOVERNMENT", - "message": "Rural Local Government", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_GOVERNMENT_STATEGOVERNMENT", - "message": "State Government", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_INDIVIDUAL", - "message": "Individual", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_INDIVIDUAL_MULTIPLEOWNER", - "message": "Multiple Owner", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_INDIVIDUAL_MULTIPLEOWNERS", - "message": "Multiple Owners", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_INDIVIDUAL_SINGLEOWNER", - "message": "Single Owner", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_INSTITUTIONALCOMPANY", - "message": "Company", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_INSTITUTIONALCOMPANY_LIMITEDLIABILITYPARTNERSHIP", - "message": "Limited Liability Partnership", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_INSTITUTIONALCOMPANY_ONEPERSONCOMPANY", - "message": "One Person Company", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_INSTITUTIONALCOMPANY_PARTNERSHIPFIRM", - "message": "Partnership Firm", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_INSTITUTIONALCOMPANY_PRIVATELIMITEDCOMPANY", - "message": "Private Limited Company", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_INSTITUTIONALCOMPANY_PROPRIETORSHIP", - "message": "Proprietorship", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_INSTITUTIONALCOMPANY_PUBLICLIMITEDCOMPANY", - "message": "Public Limited Company", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_INSTITUTIONALCOMPANY_SECTION8COMPANY", - "message": "Section 8 Company", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_INSTITUTIONALGOVERNMENT", - "message": "Institutional - Government", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_INSTITUTIONALGOVERNMENT_CENTRALGOVERNMENT", - "message": "Central Government", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_INSTITUTIONALGOVERNMENT_LOCALGOVERNMENT", - "message": "Local Government", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_INSTITUTIONALGOVERNMENT_OTHERGOVERNMENTINSTITUITION", - "message": "Others - Government Institution", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_INSTITUTIONALGOVERNMENT_RURALLOCALGOVERNMENT", - "message": "Rural Local Government", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_INSTITUTIONALGOVERNMENT_STATEGOVERNMENT", - "message": "State Government", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_INSTITUTIONALGOVERNMENT_ULBGOVERNMENT", - "message": "ULB Government", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_INSTITUTIONALPRIVATE", - "message": "Institutional - Private", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_INSTITUTIONALPRIVATE_NGO", - "message": "NGO", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_INSTITUTIONALPRIVATE_OTHERSPRIVATEINSTITUITION", - "message": "Others - Private Institution", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_INSTITUTIONALPRIVATE_PRIVATEBOARD", - "message": "Private board", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_INSTITUTIONALPRIVATE_PRIVATECOMPANY", - "message": "Private Company", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_INSTITUTIONALPRIVATE_PRIVATETRUST", - "message": "Private Trust", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_INSTITUTIONALSOCIETY", - "message": "Society", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_INSTITUTIONALSOCIETY_HOUSINGSOCIETY", - "message": "Housing Society", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_INSTITUTIONALSOCIETY_SELFHELPGROUP", - "message": "Self Help Group", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_INSTITUTIONALTRUST", - "message": "Trust", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_INSTITUTIONALTRUST_PRIVATETRUST", - "message": "Private Trust", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_INSTITUTIONALTRUST_PUBLICTRUST", - "message": "Public Trust", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_INSTITUTIONALTRUST_RELIGIOUSTRUST", - "message": "Religious Trust", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_SOCIETY", - "message": "Society", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_SOCIETY_HOUSINGSOCIETY", - "message": "Housing Society", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_SOCIETY_SELFHELPGROUP", - "message": "Self Help Group", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_TRUST", - "message": "Trust", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_TRUST_PRIVATETRUST", - "message": "Private Trust", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_TRUST_PUBLICTRUST", - "message": "Public Trust", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_TRUST_RELIGIOUSTRUST", - "message": "Religious Trust", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERTYPE_AUTHORIZEDSIGNATORY", - "message": "Authorized Signatory", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERTYPE_BPL", - "message": "Below Poverty Line", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERTYPE_DEFENSE", - "message": "Defense Personnel", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERTYPE_DIRECTOR", - "message": "Director", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERTYPE_FATHER", - "message": "Father", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERTYPE_FREEDOMFIGHTER", - "message": "Freedom Fighter", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERTYPE_GENERAL", - "message": "General", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERTYPE_HANDICAPPED", - "message": "Handicapped Person", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERTYPE_HUSBAND", - "message": "Husband", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERTYPE_NA", - "message": "NA", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERTYPE_NONE", - "message": "None of the above", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERTYPE_PARTNER", - "message": "Partner", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERTYPE_PROPRIETOR", - "message": "Proprietor", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERTYPE_WIDOW", - "message": "Widow", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_PAYME NTMODE_CARD", - "message": "Card", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_PAYMENTMODE_CARD", - "message": "Credit /Debit Card", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_PAYMENTMODE_CASH", - "message": "Cash", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_PAYMENTMODE_CHEQUE", - "message": "Cheque", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_PAYMENTMODE_CREDIT/DEBIT CARD", - "message": "Credit/Debit Card", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_PAYMENTMODE_CREDIT/DEBIT_CARD", - "message": "Credit/Debit Card", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_PAYMENTMODE_DD", - "message": "DD", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_PAYMENTMODE_NEFT", - "message": "Neft", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_PAYMENTMODE_OFFLINE_NEFT", - "message": "NEFT", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_PAYMENTMODE_OFFLINE_RTGS", - "message": "RTGS", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_PAYMENTMODE_ONLINE", - "message": "Online", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_PAYMENTMODE_POSTAL_ORDER", - "message": "Postal Order", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_PAYMENTMODE_RTGS", - "message": "RTGS", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_SOCIAL_GENERAL", - "message": "General", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_SOCIAL_OBC", - "message": "OBC", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_SOCIAL_OTHER", - "message": "OTHER", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_SOCIAL_SC", - "message": "SC", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_SOCIAL_ST", - "message": "ST", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_STRUCTURETYPE_IMMOVABLE", - "message": "Immovable", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_STRUCTURETYPE_IMMOVABLE_GARAGE", - "message": "Garage", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_STRUCTURETYPE_IMMOVABLE_GODOWN", - "message": "Godown", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_STRUCTURETYPE_IMMOVABLE_INDUSTRIALUNIT", - "message": "Industrial Unit", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_STRUCTURETYPE_IMMOVABLE_KUTCHA", - "message": "Kutcha", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_STRUCTURETYPE_IMMOVABLE_OPENLAND", - "message": "Open Land", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_STRUCTURETYPE_IMMOVABLE_OPENSPACEOFBUILDING", - "message": "Open Space of Building", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_STRUCTURETYPE_IMMOVABLE_OTHERPERMISES", - "message": "Other permises", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_STRUCTURETYPE_IMMOVABLE_PUCCA", - "message": "Pucca", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_STRUCTURETYPE_IMMOVABLE_SHED", - "message": "Shed", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_STRUCTURETYPE_IMMOVABLE_SHOP", - "message": "Shop", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_STRUCTURETYPE_IMMOVABLE_WORKSHOP", - "message": "Workshop", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_STRUCTURETYPE_MOVABLE", - "message": "Movable", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_STRUCTURETYPE_MOVABLE_HDV", - "message": "Hand Driven Vehicle", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_STRUCTURETYPE_MOVABLE_MDV", - "message": "Motor Driven Vehicle", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_SUBMITTED", - "message": "Submitted", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_SUBORG_ALF", - "message": "Area Level Federation", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_SUBORG_CLF", - "message": "Community Level Federation", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_SUBORG_CMS", - "message": "Construction Material Supplier", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_SUBORG_MSG", - "message": "Mission Shakti Group", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_SUBORG_NA", - "message": "Not Applicable", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_SUBORG_SDA", - "message": "Slum Dwellers Association", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_UOM_HP", - "message": "H.P.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_YET_TO_APPROVE", - "message": "Yet to approve", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_null", - "message": "NA", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTER_DESIGNATION_WRK_EE", - "message": "Executive Engineer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MATERIAL_COST", - "message": "Material cost:(₹) ", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MATERS_SOCIAL_GENERAL", - "message": "General", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MATER_S_A", - "message": "Class A", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MATER_S_B", - "message": "Class B", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MATER_S_C", - "message": "Class C", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MATER_S_D", - "message": "Class D", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MATER_S_NA", - "message": "Not Applicable", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MODIFY_PROJECT", - "message": "Modify Project", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MODIFY_WO", - "message": "Modify Work Order", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MUSTER_RUPEE", - "message": "₹", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_MYCITY_LABEL", - "message": "My City", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_NA", - "message": "NA", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_NAME", - "message": "Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_NAME_OF_CBO", - "message": "Name of CBO", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_NAME_OF_OFFICER_IN_CHARGE", - "message": "Name of officer In-charge", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_NEFT", - "message": "NEFT", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_NON_RECEIPT_OF_PENSIONS_DISABLED_ELDERLY_ETC", - "message": "Non-Receipt of Pensions - Disabled", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_NO_RESULTS_FOUND", - "message": "No Results Found", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_ORG_ID", - "message": "Organisation ID", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_ORG_NAME", - "message": "Organisation Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_OTHER", - "message": "Other", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_OWNER", - "message": "Owner", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_PATTERN_ERR_MSG_MUSTER_ID", - "message": "Please enter valid Muster Id", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_PATTERN_ERR_MSG_PROJECT_COMP_PERIOD", - "message": "Please enter valid project completion period", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_PATTERN_ERR_MSG_PROJECT_WO_AMT", - "message": "Please enter valid Work Order Amount", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_PAYABLE_AMOUNT", - "message": "Payable Amount", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_PAYBLE_AMOUNT", - "message": "Payble Amount", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_PAYBLE_Amount", - "message": "Payble Amount", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_PAYMENT_HEAD", - "message": "Payment", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_PAY_SCREEN_HEADER", - "message": "Payment Information", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_PAY_SREEN_HEADER", - "message": "Payment information", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_PENDINGAPPROVAL", - "message": "Pending for Approval", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_PENDINGPAYMENT", - "message": "Pending Payment", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_PHOTOGRAPH", - "message": "Photograph", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_PINCODE_VALIDATION", - "message": "Pincode should be of 6 digits", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_POSTAL_ORDER", - "message": "Postal Order", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_PRINT_RECEIPT", - "message": "PRINT RECEIPT", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_PROJECT_COMP_PERIOD_DAYS", - "message": "Project completion period", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_PROJECT_NOT_FOUND", - "message": "Project not found", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_PROPSUBUSGTYPE_NONRESIDENTIAL_COMMERCIAL_ENTERTAINMENT_GAMINGCENTRE", - "message": "Gaming Centre", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_PROPSUBUSGTYPE_NONRESIDENTIAL_COMMERCIAL_EVENTSPACES_COMMUNITYHALLS", - "message": "Comunity Halls", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_PROPSUBUSGTYPE_NONRESIDENTIAL_COMMERCIAL_FOODJOINTS_OTHERFOODOUTLETS", - "message": "Other Food Outlets", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_PROPSUBUSGTYPE_NONRESIDENTIAL_COMMERCIAL_HOTELS_2STARORBELOW", - "message": "2 Star or Below", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_PROPSUBUSGTYPE_NONRESIDENTIAL_COMMERCIAL_HOTELS_3STARANDABOVE", - "message": "3 Star or Below", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_PROPSUBUSGTYPE_NONRESIDENTIAL_COMMERCIAL_HOTELS_RESORTS", - "message": "Resorts", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_PROPSUBUSGTYPE_NONRESIDENTIAL_COMMERCIAL_MEDICALFACILITY_DISPENSARY", - "message": "Dispensary", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_PROPSUBUSGTYPE_NONRESIDENTIAL_COMMERCIAL_MEDICALFACILITY_HOSPITAL", - "message": "Hospital", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_PROPSUBUSGTYPE_NONRESIDENTIAL_COMMERCIAL_OFFICESPACES_OFFICESPACES", - "message": "Office Spaces", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_PROPSUBUSGTYPE_NONRESIDENTIAL_COMMERCIAL_RETAIL_ESTABLISHMENTINMALLS", - "message": "Establishment in Malls", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_PROPSUBUSGTYPE_NONRESIDENTIAL_COMMERCIAL_RETAIL_ESTABLISHMENTINMULTIPLEX", - "message": "Establishment in Multiplex", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_PROPSUBUSGTYPE_NONRESIDENTIAL_COMMERCIAL_RETAIL_GROCERY&SUPERMARKETS", - "message": "Grocery & Supermarkets", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_PROPSUBUSGTYPE_NONRESIDENTIAL_COMMERCIAL_RETAIL_OTHERRETAILSTORES", - "message": "Other Retail Stores", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_PROPSUBUSGTYPE_NONRESIDENTIAL_INDUSTRIAL_MALLS", - "message": "Malls", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_PROPSUBUSGTYPE_NONRESIDENTIAL_INDUSTRIAL_SHOWROOM", - "message": "Showroom", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_PROPSUBUSGTYPE_NONRESIDENTIAL_INSTITUTIONAL_RESIDENTIAL", - "message": "Residential", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_PROPSUBUSGTYPE_RESIDENTIAL", - "message": "Residential", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_PROPTYPE_BUILTUP_INDEPENDENTPROPERTY", - "message": "Independent Building", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_PROPTYPE_BUILTUP_SHAREDPROPERTY", - "message": "Flat/Part of the building", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_PROPTYPE_VACANT", - "message": "Vacant Land", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_PROPUSGTYPE_NONRESIDENTIAL_INSTITUTIONAL_PUBLICFACILITY_COMMUNITYHALL", - "message": "Community Hall", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_PROPUSGTYPE_NONRESIDENTIAL_MIXED", - "message": "Mixed", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_PURCHASE_BILL", - "message": "Purchase Bill", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_RELATION_HUSBAND", - "message": "Husband", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_REMOVE_LABEL", - "message": "Remove", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_RESPONSE", - "message": "Search Estimates", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_RESPONSE_SUCCESS_MESSAGE_CANCEL_BILL", - "message": "The notification along with your application number is sent to your applicant’s mobile number. Applicant can track the application status using mobile or web app.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_RETRY", - "message": "RETRY", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_RE_ENTER_ACCOUNT_NO", - "message": "Re-enter account number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_ROLE_OF_CBO", - "message": "Role Of CBO", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_RTGS", - "message": "RTGS", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_SEARCH_SERVICE_INFORMATION", - "message": "Search Service", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_SELECTED", - "message": "Selected", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_SELECT_LOCALITY", - "message": "Select Locality", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_SELECT_SKILL", - "message": "Select Skills", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_SELECT_WARD", - "message": "Select Ward", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_SLA_DAYS", - "message": "SLA days remaining", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_SOCIAL_CATEGORY", - "message": "Social Category", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_START_DATE_SHOULD_BE_LESS_THAN_END_DATE", - "message": "Start Date should be less than End Date.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_SUBDIVISION_MUNICIPAL_CORPORATION", - "message": "Municipal Corporation", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_TABLE_ALL", - "message": "All", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_TABLE_DOWNLOAD_CSV", - "message": "Download CSV", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_TABLE_FILTER", - "message": "Filter Table", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_TABLE_FILTERS", - "message": "FILTERS", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_TABLE_NEXT_PAGE", - "message": "Next Page", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_TABLE_NO_RECORD_FOUND", - "message": "Sorry, no matching records found", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_TABLE_PREVIOUS_PAGE", - "message": "Previous Page", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_TABLE_PRINT", - "message": "Print", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_TABLE_RESET", - "message": "RESET", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_TABLE_ROWS_PER_PAGE", - "message": "Rows per page:", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_TABLE_SEARCH", - "message": "Search", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_TABLE_SEARCH_RESULT", - "message": "Search Result", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_TABLE_SEARCH_RESULT_PAYMENTS", - "message": "Search Results for Payments", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_TABLE_SEARCH_RESULT_RECIEPT", - "message": "Search Results for Receipt", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_TABLE_SHOW_COLUMNS", - "message": "Show Columns", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_TABLE_SHOW_HIDE_TABLE", - "message": "Show/Hide Table Columns", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_TABLE_SORT", - "message": "Sort", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_TABLE_VIEW_COLUMNS", - "message": "View Columns", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_TERMS_&_CONDITIONS", - "message": "Terms & Conditions", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_TERMS_AND_CONDITIONS", - "message": "Terms & Conditions", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_TOTAL", - "message": "Total", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_VALIDITY", - "message": "Validity", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_VIEW_BILLS", - "message": "View Bills", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_VIEW_COMMUNITY_ORG", - "message": "View Community Organisation", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_VIEW_ESTIMATE", - "message": "View Estimate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_WARD", - "message": "Ward", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_WORKFLOW_STATES", - "message": "Workflow State", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_WORK_ORDER_AMT_RS", - "message": "Work Order Amount", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_WO_DETAILS", - "message": "Work Order Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_WO_NOT_FOUND", - "message": "Work Order not found", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_YEAR", - "message": "year", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMMON_YEARS", - "message": "years", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMPLAINTS_RESOLVED_IN_LAST_30_DAYS", - "message": " complaints resolved in the last 30 days", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMPLETED", - "message": "Completed", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COMPLETED_LABEL", - "message": "Completed", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CONFIRM_DELETE_DOC", - "message": "Confirm Delete Document", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CONFIRM_DELETE_MSG", - "message": "Please confirm is you want to delete the ", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CONSUMED", - "message": "Consumed", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CONSUMERDETAILS", - "message": "Consumer Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CONTACT_ADMINISTRATOR_FOR_PASSWORD", - "message": "Please contact administrator to reset password", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CONTRACTS_MODIFIED", - "message": "Work Order modified successfully", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COOMON_INITIATED", - "message": "Initiated", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "COOMON_PENDINGPAYMENT", - "message": "Pending Payment", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_ANOTHER_OTP", - "message": "Request another OTP in", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_BACK_BUTTON", - "message": "Back", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_BUTTON_ACCEPT", - "message": "Accept", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_BUTTON_BACK", - "message": "Go Back", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_BUTTON_CONFIRM", - "message": "Confirm", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_BUTTON_DECLINE", - "message": "Decline", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_CHANGEPASSWORD_EXISTINGPASSWORD", - "message": "Current Password", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_CHANGEPASSWORD_EXISTINGPASSWORD_INVALIDMSG", - "message": "Invalid Current Password", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_CHANGEPASSWORD_EXISTINGPASSWORD_PLACEHOLDER", - "message": "Enter current password", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_CHANGE_TENANT", - "message": "Do you want to change the City?", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_CHANGE_TENANT_CANCEL", - "message": "Cancel", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_CHANGE_TENANT_DESCRIPTION", - "message": "You will be redirected to the home page", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_CHANGE_TENANT_OK", - "message": "Ok", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_AADHAAR", - "message": "Aadhaar Number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_ACCOUNT_NO", - "message": "Account number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_ACCOUNT_TYPE", - "message": "Account Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_APPLICANT_ADDRESS_INVALID", - "message": "Invalid Address", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_APPLICANT_MOBILE_NUMBER_INVALID", - "message": "Invalid Mobile Number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_APPLICANT_NAME_INVALID", - "message": "Please provide a valid name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_BACK_HOME_BUTTON", - "message": "Back to Home", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_BANK_ACCOUNT_NO", - "message": "Bank Account No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_CANCEL", - "message": "Cancel", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_CHANGE_PASSWORD", - "message": "Change Password", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_CHECK_MESSAGE", - "message": "Please check your messages", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_CITY", - "message": "City", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_CITY *", - "message": "City", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_CITY_PLACEHOLDER", - "message": "Select your city", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_CONTINUE", - "message": "Continue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_CURRENT", - "message": "Current", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_DATES", - "message": "Dates", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_DOOR_INVALID", - "message": "Invalid Door Number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_EMAIL", - "message": "Email", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_FATHER", - "message": "Father", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_FEMALE", - "message": "Female", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_FORGOT_PASSWORD", - "message": "Forgot Password?", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_FORGOT_PASSWORD_LABEL", - "message": "Forgot Password?", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_FORGOT_PASSWORD_LABEL,", - "message": "Forgot Password?", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_GENDER", - "message": "Gender", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_GENDER_FEMALE", - "message": "Female", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_GENDER_MALE", - "message": "Male", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_GENDER_TRANSGENDER", - "message": "Transgender", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_GENERAL", - "message": "General", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_GOTOHOME", - "message": "GO TO HOME", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_GO_TO_HOME", - "message": "Go back to home page", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_HUSBAND", - "message": "Husband", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_LOCALITY", - "message": "Locality", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_LOGIN", - "message": "Login", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_LOGOUT", - "message": "Logout", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_MALE", - "message": "Male", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_MOBILE_ERROR", - "message": "Please provide a valid mobile number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_MOBILE_NUMBER", - "message": "Mobile Number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_MOBILE_NUMBER,", - "message": "Mobile Number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_MOBILE_NUMBER_PLACEHOLDER", - "message": "Enter Citizen's Mobile No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_NAME", - "message": "Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_NAME_LENGTHMSG", - "message": "Name should be less than 100 characters", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_NAME_PLACEHOLDER", - "message": "Enter your name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_NAME_VALIDMSG", - "message": "Please enter a valid Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_OBC", - "message": "OBC", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_PHONENO_INVALIDMSG", - "message": "Invalid Mobile Number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_PHONENO_REGISTREDMSG", - "message": "Mobile Number is already Registered", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_PHONE_NUMBER", - "message": "Phone Number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_PHONE_NUMBER_PLACEHOLDER", - "message": "Enter your mobile number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_PICK", - "message": "Pick", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_PINCODE", - "message": "Pincode", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_PINCODE_INVALID", - "message": "Please provide a valid pincode", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_PROFILE_CITY", - "message": "City", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_PROFILE_CONFIRM_PASSWORD", - "message": "Confirm New Password:", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_PROFILE_CONFIRM_PASSWORD,", - "message": "Confirm New Password:", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_PROFILE_CURRENT_PASSWORD", - "message": "Current Password:", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_PROFILE_CURRENT_PASSWORD,", - "message": "Current Password:", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_PROFILE_EDIT", - "message": "Edit Profile", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_PROFILE_EMAIL", - "message": "Email", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_PROFILE_EMAIL_INVALID", - "message": "Invalid Email", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_PROFILE_ERROR_PASSWORD_NOT_MATCH", - "message": "Passwords dont match", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_PROFILE_FILE_UPLOAD_ERROR", - "message": "An error occurred while uploading the file", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_PROFILE_GENDER", - "message": "Gender", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_PROFILE_INVALID_FILE_INPUT", - "message": "Please upload a valid file to upload", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_PROFILE_MAXIMUM_UPLOAD_SIZE_EXCEEDED", - "message": "Please upload a file less than 1 MB", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_PROFILE_MOBILE_NUMBER", - "message": "Mobile no.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_PROFILE_MOBILE_NUMBER_INVALID", - "message": "Please enter a valid mobile number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_PROFILE_NAME", - "message": "Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_PROFILE_NAME_ERROR_MESSAGE", - "message": "Please enter a valid name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_PROFILE_NAME_INVALID", - "message": "Please enter a valid name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_PROFILE_NEW_PASSWORD", - "message": "New Password:", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_PROFILE_NEW_PASSWORD,", - "message": "New Password:", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_PROFILE_PASSWORD_INVALID", - "message": "Invalid password", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_PROFILE_PASSWORD_MISMATCH", - "message": "Passwords don't match", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_PROFILE_UPDATE_ERROR_WITH_PASSWORD", - "message": "Password must be 8 to 15 characters long and can include alphanumeric characters (a-z, A-Z, 0-9) along with the special characters @, #, $, and %.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_PROFILE_UPDATE_SUCCESS", - "message": "Profile updated successfully", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_PROFILE_UPDATE_SUCCESS_WITH_PASSWORD", - "message": "Profile and password updated successfully", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_RELATIONSHIP", - "message": "Relationship", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_REQUIRED_ERRMSG", - "message": "Required", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_RESET_PASSWORD_LABEL", - "message": "Reset Password", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_RESET_PASSWORD_LABEL,", - "message": "Reset Password", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_SAVE", - "message": "Save", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_SAVINGS", - "message": "Savings", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_SC", - "message": "SC", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_SEARCH_COMPLAINT", - "message": "Search Complaint", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_SKIP_CONTINUE", - "message": "Skip And Continue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_ST", - "message": "ST", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_STATUS", - "message": "Status", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_STREET_INVALID", - "message": "Invalid Street Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_SUBMIT", - "message": "Submit", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_TRANSGENDER", - "message": "Transgender", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_USERNAME_INVALIDMSG", - "message": "Please enter a valid user name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_WARD", - "message": "Ward", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_DOB", - "message": "Date of birth", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_DOOR_NO", - "message": "Door No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_EMPLOYEE_OTP_CHECK_MESSAGE", - "message": "Please check your messages for the OTP & then set a new password.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_FRI", - "message": "Fri", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_LOGIN_CONFIRM_NEW_PASSWORD", - "message": "Confirm New Password ", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_LOGIN_CONFIRM_NEW_PASSWORD,", - "message": "Confirm New Password ", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_LOGIN_CONNFIRM_NEW_PASSWORD_PLACEHOLDER", - "message": "Confirm new password ", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_LOGIN_NEW_PASSWORD", - "message": "New Password ", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_LOGIN_NEW_PASSWORD,", - "message": "New Password ", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_LOGIN_NEW_PASSWORD_PLACEHOLDER", - "message": "Enter your new password", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_LOGIN_NO_ACCOUNT", - "message": "Don’t have an account?", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_LOGIN_PASSWORD", - "message": "Password", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_LOGIN_PASSWORD *", - "message": "Password", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_LOGIN_PASSWORD_ERRORMSG", - "message": "Password is Incorrect", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_LOGIN_PASSWORD_PLACEHOLDER", - "message": "Enter your Password", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_LOGIN_USERNAME", - "message": "User Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_LOGIN_USERNAME *", - "message": "User Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_LOGIN_USERNAME_PLACEHOLDER", - "message": "Enter your Employee ID", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_LOGOUTPOPUP_CANCEL", - "message": "CANCEL", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_LOGOUTPOPUP_CONFIRM", - "message": "Are you sure you want to logout?", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_LOGOUTPOPUP_LOGOUT", - "message": "LOGOUT", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_LOGOUTPOPUP_NO", - "message": "No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_LOGOUTPOPUP_YES", - "message": "Yes", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_LOGOUT_CANCEL", - "message": "Cancel", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_LOGOUT_MESSAGE", - "message": "Logout", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_LOGOUT_MESSAGE?", - "message": " ", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_LOGOUT_MOBILE_CONFIRMATION_MESSAGE", - "message": "Are you sure you want to Logout?", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_LOGOUT_MOBILE_CONFIRMATION_MESSAGE ", - "message": "Are you sure you want to Logout?", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_LOGOUT_WEB_CANCEL", - "message": "Cancel", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_LOGOUT_WEB_CONFIRMATION_MESSAGE", - "message": "Are you sure you want to", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_LOGOUT_WEB_HEADER", - "message": "Logout", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_LOGOUT_WEB_NO", - "message": "Cancel", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_LOGOUT_WEB_YES", - "message": "Yes, Logout", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_MON", - "message": "Mon", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_MSG_WARNING", - "message": "Warning!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_NO", - "message": "No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_NOT_FOUND", - "message": "This page is not available.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_OTP_ERRORMSG", - "message": "Invalid OTP", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_OTP_GET_STARTED", - "message": "GET STARTED", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_OTP_HEADING", - "message": "ENTER OTP", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_OTP_NOT_RECEIVE", - "message": "Didn’t receive OTP?", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_OTP_OTP", - "message": "OTP", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_OTP_PLACEHOLDER", - "message": "Enter OTP", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_OTP_RESEND", - "message": "RESEND", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_OTP_SECONDS", - "message": "seconds", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_OTP_SENT_MESSAGE", - "message": "An OTP has been sent to :", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_REGISTER_HAVE_ACCOUNT", - "message": "Have an account?", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_REGISTER_HEADING", - "message": "REGISTER", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_SAT", - "message": "Sat", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_SEARCH_BY_MOBILE", - "message": "Search by Mobile Number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_SEARCH_BY_NAME", - "message": "Search by Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_SEARCH_BY_NAME_AADHAAR", - "message": "Search by Name / Aadhaar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_SEARCH_BY_NAME_MOBILE_NO", - "message": "Search By Name / Mobile No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_SOMETHIN%%%#@!#$%^&G_WENT_WRONG", - "message": "Something went wrong!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_SOMETHING_WENT_WRONG", - "message": "Something went wrong", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_STREET_NAME", - "message": "Street Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_SUN", - "message": "Sun", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_THU", - "message": "Thu", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_TUE", - "message": "Tue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_UNDER_MAINTENANCE", - "message": "Under Maintenance!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_UNMASK_DATA", - "message": "Unmask Data", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_WED", - "message": "Wed", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORE_YES", - "message": "Yes", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CORRECTIONPENDING", - "message": "Pending for Citizen Action", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CPT_COMPLETE_PROPERTY_DETAILS", - "message": "View Complete Property Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CPT_CREATE_PROPERTY", - "message": "Create property", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CPT_REG_NEW_PROPERTY", - "message": "Create a New Property", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CPT_SEARCH_PROPERTY", - "message": "Search property", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CPT_SEARCH_PROPERTY_INFO", - "message": "On select , the property owner will get an OTP to his/her registered mobile number. You have to enter the OTP to link the selected property to the current application.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CPT_SELECT_PROPERTY", - "message": "Select Property", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CREATED", - "message": "Application Created", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CREATED_FROM_DATE", - "message": "Created from Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CREATED_TO_DATE", - "message": "Created to Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CREATE_INDIVIDUAL_SUCCESS", - "message": "Wage Seeker Registration Successful", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CREATE_INDIVIDUAL_SUCCESS_SUB_TEXT", - "message": "Wage seeker has been registered successfully with ID {individualID}", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CREATE_NEW_EVENTE_BUTTON_LABEL", - "message": "Create New Event", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CREATE_NOTIFICATION", - "message": "Lab results submitted for plant {Plant Name} for {Output} of {Stage} stage scheduled on {Test Submitted Date} is not as per benchmarks.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CREATE_PROP_ON_NEW_CONN", - "message": "Create Property (On New Connection)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CR_COMMON_DASHBOARD_HEADER", - "message": "Dashboard", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CR_COMMON_HEADER", - "message": "Receipt Cancel", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CR_COMMON_REPORTS_HEADER", - "message": "Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CR_RECEIPTS_SCREENS_UNDER_CONSTRUCTION", - "message": "In progress", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CR_REQUIRED_FIELDS_ERROR_MSG", - "message": "Please fill the mandatory field", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CR_SEARCH_COMMON_HEADER", - "message": "Search Receipt", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CR_TOTAL_RECEIPTS", - "message": "Total Receipts", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_ACTION_ASSIGNEDBYAUTOESCALATION", - "message": "Assigned by auto escalation", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_ACTION_CANCEL", - "message": "Cancel", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_ACTION_CLOSE", - "message": "Close", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_ACTION_CLOSERESOLVEDCOMPLAIN", - "message": "Close resolved complaint", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_ACTION_DECLINEVEHICLE", - "message": "Decline Vehicle", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_ACTION_DISPOSE", - "message": "Submit", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_ACTION_FILEUPLOADED", - "message": "File Uploaded", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_ACTION_NO_FILEUPLOADED", - "message": "No File Uploaded", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_ACTION_READY_FOR_DISPOSAL", - "message": "Submit", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_ADDCOMPLAINT_COMPLAINT_LOCATION", - "message": "Complaint's Location", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_ADDCOMPLAINT_SELECT_GEOLOCATION_HEADER", - "message": "Pin Property Location", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_APPLICATION_DETAILS_ADV_AMOUNT_DUE", - "message": "Advance Amount Due (₹)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_APPLICATION_DETAILS_APPLICATION_DATE", - "message": "Application Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_APPLICATION_DETAILS_APPLICATION_TIMELINE", - "message": "Application Timeline", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_APPLICATION_DETAILS_MAKE_PAYMENT", - "message": "Make Payment", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_APPLICATION_DETAILS_PIT_TYPE", - "message": "Onsite sanitation type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_APPROVED", - "message": "Approved", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_ARREARS_DETAILS", - "message": "Arrear Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_BILL_DUEDATE", - "message": "Due Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_BILL_NO", - "message": "Bill No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_BILL_NOT_FOUND", - "message": "Bill Not Found", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_BILL_PERIOD", - "message": "Billing Period", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_BPA_APPROVE", - "message": "Approve", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_BPA_SEND_TO_ARCHITECT", - "message": "SEND TO ARCHITECT", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_CANCEL", - "message": "Cancel Loading", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_CF_FEEDBACK_RESPONSE", - "message": "Your rating has been recorded successfully.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_CF_RATE_US", - "message": "Rate Us", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_CF_TRACK", - "message": "Track", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_CF_VIEW", - "message": "View", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_CHECK_CHECK_YOUR_ANSWERS", - "message": "Check Your Answers", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_CHECK_CHECK_YOUR_ANSWERS_TEXT", - "message": "If you want to modify any value, click on change in the respective step. It will redirect you to the concerned step where you can make your changes.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMONS_NEXT", - "message": "Next", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_ACTION", - "message": "Action", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_APPROVE", - "message": "Approve", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_ASSIGN", - "message": "Assign", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_ATTACHMENTS", - "message": "Documents", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_BACK", - "message": "Back", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_CANCEL", - "message": "Cancel", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_CHANGE", - "message": "CHANGE", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_CHOOSE_FILE", - "message": "Choose File", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_CHOOSE_GENDER", - "message": "Choose Your Gender", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_CHOOSE_LANGUAGE", - "message": "Choose your language", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_CHOOSE_LOCATION", - "message": "Choose your location", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_CLEAR_SEARCH", - "message": "Clear search", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_CLOSE", - "message": "Close", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_COMPLAINT_RESOLVED", - "message": "Resolved", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_CONNECTION_DETAIL_PAGE", - "message": "View Connection Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_CS_COMMON_CLOSEDAFTERRESOLUTION", - "message": "Closed after resolution", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_DASHBOARD_INFO_UPDATES", - "message": "Information and Updates", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_DECLINEVEHICLE", - "message": "Decline Vehicle", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_DOCUMENTS", - "message": "Documents", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_DOWNLOAD", - "message": "Download", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_DOWNLOAD_APPLICATION", - "message": "Download Application", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_DOWNLOAD_OCCUPANCY_CERTIFICATE", - "message": "Download Occupancy Certificate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_DOWNLOAD_PERMIT_ORDER", - "message": "Download Permit Order", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_DOWNLOAD_RECEIPT", - "message": "Download Reciept", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_EMPLOYEEOTP_CHANGED_PASSWORD_SUCCESS", - "message": "Password changed successfully!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_FILE_A_COMPLAINT", - "message": "File a Complaint", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_FSM_ASSIGN_DSO", - "message": "Assign DSO", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_FSM_ASSING_DSO", - "message": "Pending for DSO Assignment", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_FSM_CANCELED", - "message": "Cancelled", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_FSM_CITIZEN_FEEDBACK_PENDING", - "message": "Pending for Citizen Feedback", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_FSM_COMPLETED", - "message": "Completed", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_FSM_CREATED", - "message": "Created", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_FSM_DISPOSAL_IN_PROGRESS", - "message": "Disposal in Progress", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_FSM_DISPOSED", - "message": "Disposed", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_FSM_DSO_INPROGRESS", - "message": "DSO InProgress", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_FSM_DSO_REJECTED", - "message": "DSO Rejected", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_FSM_PENDING_APPL_FEE_PAYMENT", - "message": "Pending Payment", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_FSM_PENDING_DSO_APPROVAL", - "message": "Pending for DSO Approval", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_FSM_REJECTED", - "message": "Rejected", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_FSM_WAITING_FOR_DISPOSAL", - "message": "Waiting for Disposal", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_GET_DIRECTIONS", - "message": "Get Directions", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_GO_BACK_TO_HOME", - "message": "Go Back To Home", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_HELP", - "message": "Help", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_HELPLINE", - "message": "HELPLINE", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_HOME_COMPLAINTS", - "message": "Citizen Complaint Resolution System", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_INBOX_ALL", - "message": "All", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_INBOX_ARCHITECT", - "message": "Architect", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_INBOX_ASMT", - "message": "Property Assessment", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_INBOX_BPA", - "message": "BPA", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_INBOX_BPA_LOW", - "message": "BPA", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_INBOX_BPA_OC", - "message": "BPA", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_INBOX_BUILDER", - "message": "Builder", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_INBOX_DEACTIVATE-NEWSW1", - "message": "Deactivate Sewerage Connection", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_INBOX_DEACTIVATE-NEWWS1", - "message": "Deactivate Water Connection", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_INBOX_DIRECTRENEWAL", - "message": "Direct Renewal", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_INBOX_DISCONNECTIONSW", - "message": "Disconnect Sewerage Application", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_INBOX_DISCONNECTIONWS", - "message": "Disconnect Water Application", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_INBOX_DISCONNECTSWCONNECTION", - "message": "Disconnect Sewerage Application", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_INBOX_DISCONNECTWSCONNECTION", - "message": "Disconnect Water Application", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_INBOX_EDITRENEWAL", - "message": "Edit Renewal", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_INBOX_ENGINEER", - "message": "Engineer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_INBOX_FIRE", - "message": "NOC", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_INBOX_FIRENOC", - "message": "FIRENOC", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_INBOX_FIRE_NOC_SRV", - "message": "Fire Noc", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_INBOX_FSM", - "message": "Fecal Sludge Management", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_INBOX_MODIFYSWCONNECTION", - "message": "Modify Sewerage Connection", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_INBOX_MODIFYWSCONNECTION", - "message": "Modify Water Connection", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_INBOX_MODULE_ALL", - "message": "Module All", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_INBOX_NEWSW1", - "message": "New Sewerage Application", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_INBOX_NEWTL", - "message": "NewTL", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_INBOX_NEWWS1", - "message": "New Water Application", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_INBOX_PGR", - "message": "Citizen Complaint Resolution System", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_INBOX_PT", - "message": "Property Tax", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_INBOX_PT.CREATE", - "message": "New Property", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_INBOX_PT.LEGACY", - "message": "Legacy Entry", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_INBOX_PT.MUTATION", - "message": "Transfer of Ownership", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_INBOX_PT.UPDATE", - "message": "Transfer of Ownership", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_INBOX_STRUCTURALENGINEER", - "message": "Structural Engineer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_INBOX_TOWNPLANNER", - "message": "Townplanner", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_INFO", - "message": "Info", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_LOCATION_SELECTION_ERROR", - "message": "Please select your Location", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_NEW_SURVEY", - "message": "Add New Survey", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_NEXT", - "message": "Next", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_OBPS", - "message": "Online Building Permit System", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_OR", - "message": "OR", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_PARTICIPATE", - "message": "Participate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_PAY", - "message": "PAY NOW", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_PAYMENT_AMOUNT", - "message": "Payment Amount", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_PAYMENT_COMPLETE", - "message": "Payment Complete", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_PAY_DUES", - "message": "Pay Now", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_PAY_NOW", - "message": "Pay Now", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_PORTAL_LINK", - "message": "Portal Link", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_PRINT_CERTIFICATE", - "message": "Print Certificate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_PRINT_RECEIPT", - "message": "Print Receipt", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_PROCEED", - "message": "Proceed", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_PROCEED_TO_PAY", - "message": "Proceed To Pay", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_RATE", - "message": "Rate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_RECIEPT_NO", - "message": "Reciept No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_REOPEN", - "message": "Re-open", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_REQUIRED", - "message": "Required", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_REQUIRED_ERROR", - "message": "Required field", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_RESOLVED", - "message": "Resolved", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_RETRY", - "message": "Retry", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_REVIEW", - "message": "REVIEW", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_ROWS_PER_PAGE", - "message": "Rows per page", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_SCHEDULE", - "message": "Schedle", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_SEARCH_PLACEHOLDER", - "message": "Search here", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_SELECT_GENDER", - "message": "Select your gender", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_SEND_BACK_TO_CITIZEN", - "message": "SEND BACK TO CITIZEN", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_SEND_TO_ARCHITECT", - "message": "SEND TO ARCHITECT", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_SKIP", - "message": "Skip and Continue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_SUBMIT", - "message": "Submit", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_SURVEYS", - "message": "Surveys", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_THANK_YOU", - "message": "Thank You", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_VIEW", - "message": "View", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_VIEW_APPLICATION", - "message": "VIEW APPLICATION", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_VIEW_ATTACHMENT", - "message": "View Attachment", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_VIEW_HISTORY_LINK", - "message": "View History", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_VIEW_PROPERTY", - "message": "VIEW PROPERTY", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_CONNECTION_ACTIVATED", - "message": "Connection Activated", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_DOWNLOAD_RECEIPT", - "message": "Download Receipt", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_ENTRIES", - "message": "entries", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_EVENT_DETAILS", - "message": "Event Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_FILE_APPLICATION_INFO_LABEL", - "message": "Info", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_FILE_APPLICATION_PINCODE_LABEL", - "message": "Do you know the pincode ?", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_FILE_APPLICATION_PROPERTY_LOCATION_ADDRESS_TEXT", - "message": "Provide Property address", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_FILE_APPLICATION_PROPERTY_LOCATION_CITY_MOHALLA_TEXT", - "message": "Choose the locality of the Property from the list given below.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_FILE_APPLICATION_PROPERTY_LOCATION_DOOR_NO_LABEL", - "message": "Door No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_FILE_APPLICATION_PROPERTY_LOCATION_PROVIDE_LANDMARK_TEXT", - "message": "Provide the landmark to help us reach the property location easily.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_FILE_APPLICATION_PROPERTY_LOCATION_PROVIDE_LANDMARK_TITLE", - "message": "Provide Landmark", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_FILE_APPLICATION_PROPERTY_LOCATION_STREET_NAME_LABEL", - "message": "Street Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_FILE_PROPERTY_FAILED_RESPONSE", - "message": "Applications submission failed", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_FILE_PROPERTY_RESPONSE", - "message": "Application reference is sent to your registered mobile number. You will be notified with the charges for the applied service shortly. Please make the payment using my applications link from home page after you receive the notification", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_FILE_UPLOAD_ERROR", - "message": "Invalid File", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_FSM_APPLICATION_TYPE_ADHOC", - "message": "Adhoc", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_FSM_APPLICATION_TYPE_PERIODIC", - "message": "Periodic", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_GO_BACK_HOME", - "message": "Go Back Home", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_GRAM_PANCHAYAT", - "message": "Gram Panchayat", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_HEADER_EVENTS", - "message": "Events", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_HEADER_MDMS_COMMON", - "message": "MDMS", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_HEADER_MYCITY", - "message": "My City", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_HEADER_NOTIFICATIONS", - "message": "Notifications", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_HEADER_WHATSNEW", - "message": "What’s New", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_HIDE_CARD", - "message": "Hide Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_HOME_APPLY_FOR_DESLUDGING", - "message": "Apply for Emptying of Septic Tank / Pit", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_HOME_FILE_COMPLAINT", - "message": "File Complaint", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_HOME_FSM_SERVICES", - "message": "Faecal Sludge Mgmt", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_HOME_HEADER_CONTACT_US", - "message": "Contact Us", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_HOME_HEADER_HOME", - "message": "Sujog", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_HOME_HEADER_HOW_IT_WORKS", - "message": "How it Works", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_HOME_HEADER_LANGUAGE", - "message": "Language", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_HOME_HEADER_LOCALIZATION", - "message": "Localization", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_HOME_HEADER_PROFILE", - "message": "Edit Profile", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_HOME_MY_APPLICATIONS", - "message": "My Applications", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_HOME_MY_COMPLAINTS", - "message": "My Complaints", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_HOME_PT", - "message": "Property Tax", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_HOME_QUICK_PAY", - "message": "Quick Pay", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_INBOX_CLEAR", - "message": "CLEAR ALL", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_INBOX_LOADING_MSG", - "message": "Loading Inbox", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_INBOX_LOAD_ALL", - "message": "Load all record", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_INBOX_LOCALITY_FILTER", - "message": "Locality", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_INBOX_MDMS_FETCH_ERROR", - "message": "Session Expired Login Again", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_INBOX_MODULE_FILTER", - "message": "Module", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_INBOX_SEARCH", - "message": "Search", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_INBOX_SEARCH_PLACEHOLDER", - "message": "Enter a Keyword to search", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_INBOX_SELECT_ALL", - "message": "All", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_INBOX_STATEA_LOADING_MSG", - "message": "Loading Inbox", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_INBOX_STATUS_FILTER", - "message": "Status", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_INFO_DELETE", - "message": "Delete", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_INITIATED", - "message": "Initiated", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_INVALID_INPUT", - "message": "Invalid input", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_INVALID_OTP", - "message": "Invalid OTP", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_LANDING_PAGE_COMPLAINTS_DESCRIPTION", - "message": "mSeva Complaints offers an easy to use interface which enables you to lodge civic works related complaints. It also lets you track the status of your complaint and facilitates direct interaction with your municipality till its resolution.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_LANDING_PAGE_NOC_DESCRIPTION", - "message": "You can apply for Pre-construction (Provisional) and Post Construction (New) Fire NOC online and track status of your application.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_LANDING_PAGE_PROPERTY_TAX_DESCRIPTION", - "message": "Assess", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_LANDING_PAGE_TRADE_LICENSE_DESCRIPTION", - "message": "A licensed trade will always enjoy a greater goodwill and attract more customers and investors than unregistered entities. Help your city to plan and support your business. Apply for your Trade License Now!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_LANDING_PAGE_WELCOME_TEXT", - "message": "Welcome", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_LINK_DSO_DASHBOARD", - "message": "DSO Login/ Dashboard", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_LINK_LOGIN_DSO", - "message": "DSO Login", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_LOADING", - "message": "Loading...", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_LOGIN_NAME_TEXT", - "message": "Provide the name of the person to make your experience more personalised", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_LOGIN_OTP", - "message": "OTP Verification", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_LOGIN_OTP_TEXT", - "message": "Enter the OTP sent to", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_LOGIN_OTP_TEXT,", - "message": "Enter the OTP sent to", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_LOGIN_PROVIDE_MOBILE_NUMBER", - "message": "Provide your mobile number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_LOGIN_PROVIDE_NAME", - "message": "Provide your Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_LOGIN_TEXT", - "message": "All the communications regarding the application will be sent to this mobile number.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_MAP_MOVE_PIN", - "message": "Move Pin", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_MAXIMUM_UPLOAD_SIZE_EXCEEDED", - "message": "Upload file size less than 5MB", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_MIN_LENGTH_50", - "message": "Please enter atleast 50 characters", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_MYAPPLICATIONS_NO_APPLICATION", - "message": "No Applications found", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_MYCOMPLAINTS_TRACK", - "message": "TRACK", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_NA", - "message": "NA", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_NO_ARREARS", - "message": "No Arrears", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_OF", - "message": "of", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_OVERDUE_BY_DAY", - "message": "Overdue by {0} day", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_OVERDUE_BY_DAYS", - "message": "Overdue by {0} days", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_PAGINATION_FIRST", - "message": "First", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_PAGINATION_LAST", - "message": "Last", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_PAGINATION_NEXT", - "message": "Next", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_PAGINATION_PREVIOUS", - "message": "Previous", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_PAYMENT_ADV_COLLECTION", - "message": "Advance Amount", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_PAYMENT_AMOUNT_PAID", - "message": "Amount Paid", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_PAYMENT_AMOUNT_PENDING", - "message": "Pending Amount", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_PAYMENT_BILLING_PERIOD", - "message": "Billing Period", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_PAYMENT_BILL_DETAILS", - "message": "Bill Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_PAYMENT_CUSTOM_AMOUNT", - "message": "Custom Amount", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_PAYMENT_FAILURE_MESSAGE", - "message": "Any amount deducted will be processed back in 24 hrs", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_PAYMENT_FULL_AMOUNT", - "message": "Full Amount", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_PAYMENT_INCORRECT_IFSC_CODE_ERROR", - "message": "Please enter correct IFSC Code!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_PAYMENT_REDIRECT_NOTICE", - "message": "You will be redirected to a third-party payment gateway.\nmSeva does not save any credit or debit card details.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_PAYMENT_TOTAL_AMOUNT", - "message": "Total Amount Due", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_PAYMENT_TRANSANCTION_DATE", - "message": "Payment Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_PAYMENT_TRANSANCTION_ID", - "message": "Transaction ID", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_PENDING_APPROVAL_FOR_CONNECTION", - "message": "Pending Approval for Connection", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_PENDING_FOR_APPROVA", - "message": "Pending for Approval", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_PENDING_FOR_APPROVAL", - "message": "Pending for Approval", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_PENDING_FOR_CONNECTION_ACTIVATION", - "message": "Pending for Connection Activation", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_PENDING_FOR_DOCUMENT_VERIFICATION", - "message": "Pending for Document Verification", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_PENDING_FOR_FIELD_INSPECTION", - "message": "Pending for Field Inspection", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_PENDING_FOR_PAYMENT", - "message": "Pending for Payment ", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_PGR_REPORTS_HEADER", - "message": "Reports", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_PROFILE_EMAIL", - "message": "Email Id", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_PROFILE_EMAIL_ERRORMSG", - "message": "Invalid Email Id", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_PROFILE_EMAIL_PLACEHOLDER", - "message": "Enter Your Email Id", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_PROFILE_SAVE", - "message": "Save", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_PROPERTY_APPLICATION_SUCCESS", - "message": "Application Submitted Successfully", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_PROPERTY_FEEDBACK_SUCCESS", - "message": "Thank you for rating us!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_PROPERTY_ID_FORMAT_MUST_BE", - "message": "Property ID format must be ", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_PROPERTY_ID_FORMAT_MUST_BEPG-PT-xxxx-xx-xx-xxxxxx", - "message": "Property ID must be in this format PG-PT-xxxx-xx-xx-xxxxxx", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_PT_HOME_SEARCH_RESULTS_DESC", - "message": "Provide atleast one search parameter.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_PT_NO_PROPERTIES_FOUND", - "message": "No Properties Found", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_READ_LESS", - "message": "Read Less", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_READ_MORE", - "message": "Read More", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_RECORDS", - "message": "records", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_REJECTED", - "message": "Rejected", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_RESEND_ANOTHER_OTP", - "message": "Resend another OTP", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_RESEND_ANOTHER_OTP,", - "message": "Resend another OTP", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_RESEND_OTP", - "message": "Resend OTP", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_RESEND_OTP,", - "message": "Resend OTP", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_RESEND_SECONDS", - "message": "secs", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_RESEND_SECONDS,", - "message": "secs", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_REVIEW_AND_FEEDBACK", - "message": "Rate us", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_SEARCH", - "message": "search", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_SEARCH_RESULTS", - "message": "Search Results", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_SELECTED_TEXT", - "message": "ULB", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_SELECT_CITY_CHOOSE_CITY", - "message": "Choose City", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_SHOW", - "message": "Show", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_SHOWING", - "message": "showing", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_SHOW_CARD", - "message": "View Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_SKIP_CONTINUE", - "message": "Skip and Continue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_SLA_DAY", - "message": "days ago", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_SLA_DAY_ONE", - "message": "{0} day ago", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_SLA_MINUTE", - "message": "{0} minutes ago", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_SLA_MINUTE_ONE", - "message": "{0} minute ago", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_SLA_MONTH", - "message": "{0} months ago", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_SLA_MONTH_ONE", - "message": "{0} month ago", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_SLA_NOW", - "message": "Now", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_SLA_TIME", - "message": "{0} hrs ago", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_SLA_TIME_ONE", - "message": "{0} hr ago", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_SLA_WEEK", - "message": "{0} weeks ago", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_SLA_WEEK_ONE", - "message": "1 week ago", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_STAKEHOLDER_APPLICATION_FAILED", - "message": "Stakeholder Registration Failed", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_SURVEY_RESPONDED", - "message": "Already Responded", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_SURVEY_RESULTS", - "message": "Survey results", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_TITLE_APPLICATION_DETAILS", - "message": "Application Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_TITLE_GENERATE_NOTE", - "message": "Generate Note", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_TITLE_MY_BILLS", - "message": "My Bills", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_TO", - "message": "to", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_TRADE_UPDATE_APPLICATION_SUCCESS", - "message": "Application Updated Successfully", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_VIEW", - "message": "View", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_VIEW_DETAILS", - "message": "View Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_VILLAGE_NAME", - "message": "Village Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_WHAT_WENT_GOOD", - "message": "What went good?", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CS_WHAT_WENT_WRONG", - "message": "What went wrong ?", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CULTURAL", - "message": "Cultural", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "Citya", - "message": "City A", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "Close Financial Year", - "message": "Close Financial Year", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "Code", - "message": "code", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CollectionOperator", - "message": "Collection Operator", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "CollectionOperator_PLACE", - "message": "Collection Operator", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DASHBOARD_CITIZEN_SERVICES_LABEL", - "message": "Citizen Services", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DASHBOARD_LOCAL_INFORMATION_LABEL", - "message": "Local Information", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DASHBOARD_TITLE_FINANCE_ROLLOUT_ADOPTION", - "message": "Finance Rollout & Adoption Dashboard", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DASHBOARD_VIEW_ALL_LABEL", - "message": "VIEW ALL", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DASHBOARD_WHATS_NEW_LABEL", - "message": "What’s New", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DATE_ANSWER_TYPE", - "message": "Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DATE_OF_INCORP", - "message": "Date of Incorporation", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DATE_VALIDATION_MSG", - "message": "To date should be greater then from date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DATE_VALIDATION_VALID_TO_VALID_FROM_MSG", - "message": "Valid To date should be greater than Valid From date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DCOUMENT_DESCRIPTION", - "message": "Document Description", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DDR_STATEA_AMHARA", - "message": "Ethiopia", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DDR_undefined", - "message": "Dire Dawa District", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DEATH_CERT_FEE", - "message": "Death Certificate Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DEFAULTERREPORT", - "message": "Defaulter Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DEFENCE", - "message": "Defence", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DEFENSE", - "message": "Defense Personnel", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DELETE_EVENT_LABEL", - "message": "Delete Event", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DELETE_PUBLIC_MESSAGE", - "message": "Delete Public Message", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DEPOSITED", - "message": "Deposited", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DEPT_REG_NO", - "message": "Department Registration number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DESCRIPTIONREPORT", - "message": "Description Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DESIGNATION", - "message": "Designation", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DIGIT_I_ACCEPT", - "message": "I accept", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DIGIT_I_DO_NOT_ACCEPT", - "message": "I do not accept", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DIGIT_TABLE_OF_CONTENTS", - "message": "Privacy Policy", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DIRECTRENEWAL", - "message": "Direct Renewal", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DIRECTRENEWAL-APPLIED", - "message": "Direct Renewal-Applied", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DIRECTRENEWAL-APPROVED", - "message": "Direct Renewal-Approved", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DIRECTRENEWAL-CANCELLED", - "message": "Direct Renewal-Cancelled", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DIRECTRENEWAL-EXPIRED", - "message": "Direct Renewal-Expired", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DIRECTRENEWAL-MANUALEXPIRED", - "message": "Direct Renewal-Manual Expired", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DIRECTRENEWAL-PENDINGPAYMENT", - "message": "Direct Renewal-Pending For Payment", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DISABLED", - "message": "Disabled", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DISCONNECT_SEWERAGE_CONNECTION", - "message": "Sewerage", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DISCONNECT_SEWERAGE_CONNECTON", - "message": "Sewerage", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DISCONNECT_WATER_CONNECTION", - "message": "Water", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DISHONOURED", - "message": "Dishonoured", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DISPOSAL_IN_PROGRESS", - "message": "Disposal in Progress", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DOB_IS_REQUIRED", - "message": "Date of birth is required", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DOCUMENTS_ATTACH_RESTRICTIONS_SIZE", - "message": "Only jpg, png, doc and pdf files. 5MB max file size.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DOCUMENTS_CATEGORY_CARD_LABEL", - "message": "Document Category", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DOCUMENTS_DOCUMENT_CARD_SECTION_HEADER", - "message": "Documents", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DOCUMENTS_DOCUMENT_HEADER", - "message": "Documents", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DOCUMENTS_EDIT_HEADER", - "message": "Edit", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DOCUMENTVERIFY", - "message": "Pending for Document Verification", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DOCUMENT_CATEGORY", - "message": "Document Category", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DOCUMENT_NAME", - "message": "Document Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DOC_VERIFICATION_INPROGRESS", - "message": "Document Verification In Progress", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DOWNLOAD_RECEIPT_HEADER", - "message": "Download Receipt", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSO_INPROGRESS", - "message": "DSO Inprogress", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSO_REJECTED", - "message": "DSO Rejected", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS", - "message": "Dashboard", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_ABOUT_DASHBOARD", - "message": "About the Dashboard", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_ALL_DDRS", - "message": "All DDRs", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_ALL_ULBS", - "message": "All ULBs", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_BND", - "message": "Birth & Death", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_BOTTOM_PERFORMING_ULBS", - "message": "Bottom Performing ULBs", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_BUILDING_PERMISSION", - "message": "Online Building Plan Approval System", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_CITIZEN_REGISTERED", - "message": "Citizen Registered", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_CLOSED_APPLICATION", - "message": "Closed Application", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_COLLECTIONS", - "message": "Collections", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_COMPLETION_RATE", - "message": "Completion Rate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_DDR_A", - "message": "DDR A", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_DDR_B", - "message": "DDR B", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_DDR_BALASORE", - "message": "DDR Berhmapur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_DDR_BERHMAPUR", - "message": "DDR Dhenkanal", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_DDR_DHENKANAL", - "message": "DDR Balasore", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_FAQS", - "message": "FAQs", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_FINANCE", - "message": "Finance", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_FIRENOC", - "message": "FireNoc", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_FSM", - "message": "FSM", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_HEADER_ACTUAL_FIRE_NOCS_ISSUED", - "message": "Actual FireNoc Issued", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_MCOLLECT", - "message": "MCollect", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_MUKTA_MUSTER_ROLLS", - "message": "Muster Rolls", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_MUKTA_MUSTER_ROLLS_BY_STATUS", - "message": "Muster Rolls", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_OBPS", - "message": "OBPS", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_OVERVIEW", - "message": "Overview", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_OVERVIEW_CITIZEN_FEEDBACK_SCORE", - "message": "Citizen Feedback Score", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_OVERVIEW_DASHBOARD", - "message": "Overview Dashboard", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_PREVIOUS_YEAR", - "message": "Previous Year", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_PROPERTY_TAX", - "message": "Property Tax", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_PROPERTY_TAX_DASHBOARD", - "message": "Property Tax Dashboard", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_PT_BOTTOM_3_PERFORMING_ULBS", - "message": "Bottom 3 Performing ULBs", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_PT_CITIZEN_FEEDBACK_SCORE", - "message": "Citizen Feedback Score", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_PT_COLLECTION_BY_USAGE_TYPE", - "message": "Collection by Usage type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_PT_CUMULATIVE_PROPERTIES_ASSESSED", - "message": "Total Cumulative Properties Assessed", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_PT_DEMAND_&_COLLECTION_INDEX", - "message": "Demand & Collection Index", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_PT_DEMAND_COLLECTION", - "message": "Demand & Collection Index", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_PT_DEMAND_COLLECTION_BOUNDARY", - "message": "Boundary", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_PT_DEMAND_COLLECTION_USAGETYPE", - "message": "Usage Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_PT_PROPERTIES_BY_USAGE_TYPE", - "message": "Properties by Usage type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_PT_SLA_ACHIEVED", - "message": "SLA Compliance", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_PT_TOP_3_PERFORMING_ULBS", - "message": "Top 3 Performing ULBs", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_PT_TOTAL_ACTIVE_ULBS", - "message": "Total Active ULBs", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_PT_TOTAL_ASSESSMENTS", - "message": "Total Assessments", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_PT_TOTAL_PROPERTIES_ASSESSED", - "message": "Total Properties Assessed", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_REVENUE", - "message": "Revenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_SERVICE", - "message": "Service", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_SLA_ACHIEVED", - "message": "SLA Achieved", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_STATEA_AMHARA", - "message": "Ethiopia", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_TARGET_ACHIEVED", - "message": "Target Achievement", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_TARGET_COLLECTION", - "message": "Target Collection", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_TB_AJIT_NAGAR_AREA_1", - "message": "Ajit Nagar Area 1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_TB_BACKSIDE_BRIJBALA_HOSPITAL___AREA3", - "message": "Backside Brijbala Hospital - Area3", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_TB_BACK_SIDE_33_KVA_GRID_PATIALA_ROAD___AREA1", - "message": "Back Side 33 KVA Grid Patiala Road - Area 1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_TB_BACK_SIDE_66_KVA_GRID_PATIALA_ROAD___AREA2", - "message": "Back Side 66 KVA Grid Patiala Road - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_TB_BLOCK_8", - "message": "Block 8", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_TB_CINEMA_ROAD___AREA1", - "message": "Cinema Road - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_TB_DDR_AMHARA", - "message": "Ethiopia", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_TB_MOHALLA_KOHLIYAN___AREA1", - "message": "Mohalla Kohliyan - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_TB_ODISHA", - "message": "Odisha", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_TB_STATEA_ADDISABABA", - "message": "City F", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_TB_STATEA_AMHARA", - "message": "Ethiopia", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_TB_STATEA_DIREDAWA", - "message": "City H", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_TB_STATEA_OROMIA", - "message": "City I", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_TB_TARGET_ACHIEVED ", - "message": "Target Achieved", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_TB_TENANTX-MC", - "message": "Tenant X", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_TB_TENANTY-MC", - "message": "Tenant Y", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_TB_TENANTZ-MC", - "message": "Tenant Z", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_TB_UTTARAKHAND", - "message": "Uttarakhand", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_TB__STATEA_OROMIA", - "message": "City I", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_THAN_LAST_YEAR", - "message": "than LY", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_THIS_MONTH", - "message": "This Month", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_THIS_QUARTER", - "message": "This Quarter", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_THIS_WEEK", - "message": "This Week", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_THIS_YEAR", - "message": "This Year", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_TL_CUMULATIVE_LICENSE_ISSUED", - "message": "Total Cumulative License Issued", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_TL_LICENSE_BY_STATUS", - "message": "Trade License by Status", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_TL_LICENSE_BY_TYPE", - "message": "License by Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_TL_LICENSE_ISSUED", - "message": "Total License Issued", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_TODAY", - "message": "Today", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_TOP_PERFORMING_ULBS", - "message": "Top Performing ULBs", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_TOTAL_APPLICATIONS:_DEPARTMENT_WISE", - "message": "Total Applications: Service Wise", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_TOTAL_APPLICATION_&_CLOSED_APPLICATION", - "message": "Total Application & Closed Application", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_TOTAL_COLLECTION", - "message": "Total Collection", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_TOTAL_CUMULATIVE_COLLECTION", - "message": "Total Cumulative Collection", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_TOTAL_CUMULATIVE_COLLECTION:_DEPARTMENT_WISE", - "message": "Total Cumulative Collection: Service Wise", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_TRADE_LICENSE", - "message": "Tradelicence", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_W&S", - "message": "Water & Sewerage", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_W&S_DASHBOARD", - "message": "Water & Sewerage Dashboard", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_YESTERDAY", - "message": "Yesterday", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DSS_undefined", - "message": "Dire Dawa District", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DUPLICATE_AADHAAR", - "message": "Entered Aadhaar is already present in the system.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "DU_DOCUMENT_UPLOAD_NOTIFICATION_TEMPLATE", - "message": "A new document {document_name} has been uploaded in mSeva. Click the following link to view the document: {link}", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EARLY_RECONC_JOB", - "message": "System", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EDITRENEWAL", - "message": "Edit Renewal", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EDITRENEWAL-APPLIED", - "message": "Edit Renewal-Applied", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EDITRENEWAL-APPROVED", - "message": "Edit Renewal-Approved", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EDITRENEWAL-CANCELLED", - "message": "Edit Renewal-Cancelled", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EDITRENEWAL-CITIZENACTIONREQUIRED", - "message": "Edit Renewal-Citizen Action Required", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EDITRENEWAL-EXPIRED", - "message": "Edit Renewal-Expired", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EDITRENEWAL-FIELDINSPECTION", - "message": "Edit Renewal-Pending For Field Inspection", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EDITRENEWAL-INITIATED", - "message": "Edit Renewal-Intiated", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EDITRENEWAL-MANUALEXPIRED", - "message": "Edit Renewal-Manual Expired", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EDITRENEWAL-PENDINGAPPROVAL", - "message": "Edit Renewal-Pending For Approval", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EDITRENEWAL-PENDINGPAYMENT", - "message": "Edit Renewal-Pending For Payment", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EDITRENEWAL-REJECTED", - "message": "Edit Renewal-Rejected", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EDIT_NEW_PUBLIC_MESSAGE", - "message": "Edit Public Message", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EDIT_PROFILE", - "message": "Edit Profile", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EFFLUENT", - "message": "Effluent", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EGOV_LOCATION_BOUNDARYTYPE_BLOCK", - "message": "BLOCK", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EGOV_LOCATION_BOUNDARYTYPE_CITY", - "message": "CITY", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EGOV_LOCATION_BOUNDARYTYPE_LOCALITY", - "message": "LOCALITY", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EGOV_LOCATION_BOUNDARYTYPE_ZONE", - "message": "ZONE", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EGOV_LOCATION_TENANTBOUNDARY_ADMIN", - "message": "ADMIN", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EGOV_LOCATION_TENANTBOUNDARY_BLOCK", - "message": "BLOCK", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EGOV_LOCATION_TENANTBOUNDARY_CITY", - "message": "CITY", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EGOV_LOCATION_TENANTBOUNDARY_LOCALITY", - "message": "LOCALITY", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EGOV_LOCATION_TENANTBOUNDARY_REVENUE", - "message": "REVENUE", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EGOV_LOCATION_TENANTBOUNDARY_ZONE", - "message": "ZONE", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EIPT_LETTER_HEAD", - "message": "Receipt", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMAIL_VALIDATION", - "message": "Please enter a valid email", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_FAILURE_ADVT_HOARDINGS_PAYMENT_MESSAGE", - "message": "Payment has failed!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_FAILURE_ADVT_HOARDINGS_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding payment failure has been sent at the registered Mobile No. of the user/owner.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_FAILURE_BPA_LOW_RISK_PERMIT_FEE_PAYMENT_MESSAGE", - "message": "Payment has failed!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_FAILURE_BPA_LOW_RISK_PERMIT_FEE_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding payment failure has been sent to property owner at registered Mobile No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_FAILURE_BPA_NC_APP_FEE_PAYMENT_MESSAGE", - "message": "Payment has failed!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_FAILURE_BPA_NC_APP_FEE_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding payment failure has been sent to property owner at registered Mobile No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_FAILURE_BPA_NC_SAN_FEE_PAYMENT_MESSAGE", - "message": "Payment has failed!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_FAILURE_BPA_NC_SAN_FEE_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding payment failure has been sent to property owner at registered Mobile No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_FAILURE_DEFALUT_PAYMENT_MESSAGE", - "message": "Payment has failed!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_FAILURE_DEFALUT_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding payment failure has been sent to property owner at registered Mobile No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_FAILURE_DEFAULT_PAYMENT_MESSAGE", - "message": "Payment has failed!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_FAILURE_DEFAULT_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding payment failure has been sent at the registered Mobile No. of the user/owner.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_FAILURE_FIRENOC_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding Payment failure has been sent to the registered Mobile No. of the user/owner.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_FAILURE_PT_MUTATION_PAYMENT_MESSAGE", - "message": "Payment has failed!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_FAILURE_PT_MUTATION_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding payment failure has been sent to property owner at registered Mobile No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_FAILURE_PT_PAYMENT_MESSAGE", - "message": "Payment has failed!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_FAILURE_PT_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding payment failure has been sent to property owner at registered Mobile No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_FAILURE_SW.ONE_TIME_FEE_PAYMENT_MESSAGE", - "message": "Payment has failed!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_FAILURE_SW.ONE_TIME_FEE_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding Payment failure has been sent to the registered Mobile No. of the user/owner.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_FAILURE_SW_ONE_TIME_FEE_PAYMENT_MESSAGE", - "message": "Payment has failed!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_FAILURE_SW_ONE_TIME_FEE_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding Payment failure has been sent to the registered Mobile No. of the user/owner.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_FAILURE_SW_PAYMENT_MESSAGE", - "message": "Payment has failed!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_FAILURE_SW_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding Payment failure has been sent to the registered Mobile No. of the user/owner.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_FAILURE_TL_PAYMENT_MESSAGE", - "message": "Payment has failed!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_FAILURE_TL_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding payment failure has been sent to property owner at registered Mobile No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_FAILURE_WS.ONE_TIME_FEE_PAYMENT_MESSAGE", - "message": "Payment has failed!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_FAILURE_WS.ONE_TIME_FEE_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding Payment failure has been sent to the registered Mobile No. of the user/owner.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_FAILURE_WS_ONE_TIME_FEE_PAYMENT_MESSAGE", - "message": "Payment has failed!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_FAILURE_WS_ONE_TIME_FEE_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding Payment failure has been sent to the registered Mobile No. of the user/owner.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_FAILURE_WS_PAYMENT_MESSAGE", - "message": "Payment has failed!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_FAILURE_WS_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding Payment failure has been sent to the registered Mobile No. of the user/owner.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_RESPONSE_ACTIVATION_ACTION_ERROR", - "message": "Employee Activation Failed", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_ADVT_GAS_BALLOON_ADVERTISEMENT_PAYMENT_MESSAGE", - "message": "Payment has been collected successfully!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_ADVT_GAS_BALLOON_ADVERTISEMENT_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding Payment Collection has been sent to the registered Mobile No. of the user/owner.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_ADVT_GAS_BALLOON_ADVERTISEMENT_PAYMENT_RECEIPT_NO", - "message": "Payment Receipt No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_ADVT_HOARDINGS_PAYMENT_MESSAGE", - "message": "Payment has been collected successfully!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_ADVT_HOARDINGS_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding Payment Collection has been sent to the registered Mobile No. of the user/owner.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_ADVT_HOARDINGS_PAYMENT_RECEIPT_NO", - "message": "Payment Receipt No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_ADVT_LIGHT_WALA_BOARD_PAYMENT_MESSAGE", - "message": "Challan Generated Successfully", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_ADVT_LIGHT_WALA_BOARD_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding above challan/bill has been sent to the registered Mobile No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_ADVT_LIGHT_WALA_BOARD_PAYMENT_RECEIPT_NO", - "message": "Receipt No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_ADVT_UNIPOLLS_PAYMENT_MESSAGE", - "message": "Challan Generated Successfully", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_ADVT_UNIPOLLS_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding above challan/bill has been sent to the registered Mobile No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_ADVT_UNIPOLLS_PAYMENT_RECEIPT_NO", - "message": "Receipt No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_ADVT_WALL_PAINT_ADVERTISEMENT_PAYMENT_MESSAGE", - "message": "Challan Generated Successfully", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_ADVT_WALL_PAINT_ADVERTISEMENT_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding above challan/bill has been sent to the registered Mobile No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_ADVT_WALL_PAINT_ADVERTISEMENT_PAYMENT_RECEIPT_NO", - "message": "Receipt No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_BPA_LOW_RISK_PERMIT_FEE_PAYMENT_MESSAGE", - "message": "Payment has been collected successfully!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_BPA_LOW_RISK_PERMIT_FEE_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding Payment Collection has been sent to property owner at registered Mobile No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_BPA_LOW_RISK_PERMIT_FEE_PAYMENT_RECEIPT_NO", - "message": "Payment Receipt No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_BPA_NC_APP_FEE_PAYMENT_MESSAGE", - "message": "Payment has been collected successfully!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_BPA_NC_APP_FEE_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding Payment Collection has been sent to property owner at registered Mobile No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_BPA_NC_APP_FEE_PAYMENT_RECEIPT_NO", - "message": "Payment Receipt No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_BPA_NC_OC_APP_FEE_PAYMENT_MESSAGE", - "message": "Payment has been collected successfully!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_BPA_NC_OC_APP_FEE_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding Payment Collection has been sent to property owner at registered Mobile No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_BPA_NC_OC_APP_FEE_PAYMENT_RECEIPT_NO", - "message": "Payment Receipt No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_BPA_NC_OC_SAN_FEE_PAYMENT_MESSAGE", - "message": "Payment has been collected successfully!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_BPA_NC_OC_SAN_FEE_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding Payment has been sent to the registered Mobile No. of the user/owner.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_BPA_NC_OC_SAN_FEE_PAYMENT_RECEIPT_NO", - "message": "Payment Receipt No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_BPA_NC_SAN_FEE_PAYMENT_MESSAGE", - "message": "Payment has been collected successfully!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_BPA_NC_SAN_FEE_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding Payment has been sent to the registered Mobile No. of the user/owner.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_BPA_NC_SAN_FEE_PAYMENT_RECEIPT_NO", - "message": "Payment Receipt No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_DEFALUT_PAYMENT_MESSAGE", - "message": "Payment has been paid successfully!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_DEFALUT_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding Payment Collection has been sent to property owner at registered Mobile No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_DEFALUT_PAYMENT_RECEIPT_NO", - "message": "Payment Receipt No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_FIRENOC_PAYMENT_MESSAGE", - "message": "Payment has been collected successfully!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_FIRENOC_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding Payment Collection has been sent to the registered Mobile No. of the user/owner.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_FIRENOC_PAYMENT_RECEIPT_NO", - "message": "Payment Receipt No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_PT_MUTATION_PAYMENT_MESSAGE", - "message": "Payment has been collected successfully!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_PT_MUTATION_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding Payment Collection has been sent to property owner at registered Mobile No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_PT_MUTATION_PAYMENT_RECEIPT_NO", - "message": "Payment Receipt No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_PT_PAYMENT_MESSAGE", - "message": "Payment has been collected successfully!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_PT_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding Payment Collection has been sent to property owner at registered Mobile No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_PT_PAYMENT_RECEIPT_NO", - "message": "Payment Receipt No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_SW.ONE_TIME_FEE_PAYMENT_MESSAGE", - "message": "Payment has been collected successfully!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_SW.ONE_TIME_FEE_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding Payment Collection has been sent to the registered Mobile No. of the user/owner.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_SW.ONE_TIME_FEE_PAYMENT_RECEIPT_NO", - "message": "Payment Receipt No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_SW_ONE_TIME_FEE_PAYMENT_MESSAGE", - "message": "Payment has been collected successfully!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_SW_ONE_TIME_FEE_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding Payment Collection has been sent to the registered Mobile No. of the user/owner.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_SW_ONE_TIME_FEE_PAYMENT_RECEIPT_NO", - "message": "Payment Receipt No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_SW_PAYMENT_MESSAGE", - "message": "Payment has been collected successfully!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_SW_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding Payment Collection has been sent to the registered Mobile No. of the user/owner.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_SW_PAYMENT_RECEIPT_NO", - "message": "Payment Receipt No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_TL_PAYMENT_MESSAGE", - "message": "Payment has been collected successfully!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_TL_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding Payment Collection has been sent to property owner at registered Mobile No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_TL_PAYMENT_RECEIPT_NO", - "message": "Payment Receipt No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_TX_ELECTRICITY_CHUNGI_PAYMENT_MESSAGE", - "message": "Payment has been collected successfully!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_TX_ELECTRICITY_CHUNGI_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding Payment Collection has been sent to the registered Mobile No. of the user/owner.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_TX_ELECTRICITY_CHUNGI_PAYMENT_RECEIPT_NO", - "message": "Payment Receipt No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_TX_NO_DUES_CERTIFICATE_PAYMENT_MESSAGE", - "message": "Payment has been collected successfully!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_TX_NO_DUES_CERTIFICATE_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding Payment Collection has been sent to the registered Mobile No. of the user/owner.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_TX_NO_DUES_CERTIFICATE_PAYMENT_RECEIPT_NO", - "message": "Payment Receipt No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_TX_TRANSFER_PROPERTY_FEES_PAYMENT_MESSAGE", - "message": "Challan Generated Successfully", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_TX_TRANSFER_PROPERTY_FEES_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding above challan/bill has been sent to the registered Mobile No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_TX_TRANSFER_PROPERTY_FEES_PAYMENT_RECEIPT_NO", - "message": "Receipt No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_TX_TS1_COPY_REGISTER_FOR_OLD_SURVEY_PAYMENT_MESSAGE", - "message": "Payment Successful", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_TX_TS1_COPY_REGISTER_FOR_OLD_SURVEY_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding above challan/bill has been sent to the registered Mobile No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_TX_TS1_COPY_REGISTER_FOR_OLD_SURVEY_PAYMENT_RECEIPT_NO", - "message": "Receipt No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_WS.ONE_TIME_FEE_PAYMENT_MESSAGE", - "message": "Payment has been collected successfully!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_WS.ONE_TIME_FEE_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding Payment Collection has been sent to the registered Mobile No. of the user/owner.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_WS.ONE_TIME_FEE_PAYMENT_RECEIPT_NO", - "message": "Payment Receipt No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_WS_ONE_TIME_FEE_PAYMENT_MESSAGE", - "message": "Payment has been collected successfully!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_WS_ONE_TIME_FEE_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding Payment Collection has been sent to the registered Mobile No. of the user/owner.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_WS_ONE_TIME_FEE_PAYMENT_RECEIPT_NO", - "message": "Payment Receipt No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_WS_PAYMENT_MESSAGE", - "message": "Payment has been collected successfully!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_WS_PAYMENT_MESSAGE_DETAIL", - "message": "A notification regarding Payment Collection has been sent to the registered Mobile No. of the user/owner.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_SUCCESS_WS_PAYMENT_RECEIPT_NO", - "message": "Payment Receipt No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EMPTY_NOTIFICATIONS", - "message": "Notification Empty!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ENGAGEMENT_DOCS_CIRCULARS", - "message": "Circulars", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ENGAGEMENT_DOCS_CITIZEN_CHARTER", - "message": "Citizen Charter", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ENGAGEMENT_DOCS_FORMS", - "message": "Forms", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ENGAGEMENT_DOCS_GOVERNMENT_ORDERS", - "message": "Government Orders", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ENGAGEMENT_DOCS_TENDERS", - "message": "Tenders", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ENGAGEMENT_DOCUMENT_ID", - "message": "Document ID", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ENGAGEMENT_DOC_CREATED", - "message": "Document Uploaded Successfully", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ENGAGEMENT_DOC_FAILURE", - "message": "Document Creation Failed", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ENGAGEMENT_DOC_UPDATED", - "message": "Document Successfully Updated", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ENGAGEMENT_DOC_UPDATE_FAILURE", - "message": "Document Creation Failed", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ENGAGEMENT_EVENT_CREATED", - "message": " ", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ENGAGEMENT_EVENT_CREATED_MESSAGE", - "message": "Event Successfully Created", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ENGAGEMENT_EVENT_CREATED_MESSAGES", - "message": "{{eventName}} has been successfully created for {{fromDate}} from {{fromTime}} to {{toDate}},{{toTime}} and an event notification will be sent to all citizens. To Modify this event please visit All Events section on Events Page.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ENGAGEMENT_EVENT_DELETED", - "message": "Event Successfully Deleted", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ENGAGEMENT_EVENT_DELETED_MESSAGES", - "message": "Event has been successfully deleted.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ENGAGEMENT_EVENT_ID", - "message": "Event ID", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ENGAGEMENT_EVENT_NAME", - "message": "Event Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ENGAGEMENT_EVENT_UPDATED", - "message": "Event Successfully Updated", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ENGAGEMENT_EVENT_UPDATED_MESSAGES", - "message": "Event has been successfully updated.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ENGLISH", - "message": "English", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ENTERED_MOBILE_NO_NOT_REGISTERED_AS_CBO", - "message": "Entered mobile number is not registered as CBO user in the system.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ENTER_OTP_SENT_TO", - "message": "Enter the OTP sent to {mobileNumber}", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ENTER_REGISTERED_MOBILE", - "message": "Please enter the registered mobile number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ENTER_VALID_IFSC_CODE", - "message": "Please enter valid IFSC Code", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERROR_MAXLENGTH_140", - "message": "Description canot be more than 140 char", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_ACCEPT_THE_TERMS", - "message": "Please accept the terms !", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_ADD_MULTIPLE_OWNERS", - "message": "Please add multiple owners !", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_AMOUNT_CANT_BE_EMPTY", - "message": "Amount to pay can't be empty", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_API_ERROR", - "message": "API error", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_BANK_DETAILS_NOT_FOUND_FOR_IFSC", - "message": "Bank details not found for this IFSC", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_BILLING_SLAB_ERROR", - "message": "Billing Slab error!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_CHEQUE_NUMBER_LESS_THAN_6", - "message": "Cheque number is less than 6", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_COMPLAINT_NUMBER_SEARCH", - "message": "Complaint No. should be at least 6 digits", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_DEFAULT_INPUT_FIELD_MSG", - "message": "Invalid Input", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_DOCUMENT_TYPE_MISSING", - "message": "Please select document type for uploaded document", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_ENTER_ATLEAST_ONE_FIELD", - "message": "Enter at least one field", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_ENTER_VALID_IFSC", - "message": "Please fill all fields", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_ERROR_CALCULATING_TAX", - "message": "Error calculating tax!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_FILE_MORE_THAN_FIVEMB", - "message": "The file is more than 5mb", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_FILL_ALL_FIELDS", - "message": "Please fill all fields", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_FILL_ALL_MANDATORY_FIELDS_APPLICANT_TOAST", - "message": "Please fill all mandatory fields for Applicant Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_FILL_ALL_MANDATORY_FIELDS_BASIC_TOAST", - "message": "Please fill all mandatory fields for Basic Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_FILL_ALL_MANDATORY_FIELDS_BOUNDARY_TOAST", - "message": "Please fill all mandatory fields for Plot & Boundary Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_FILL_ALL_MANDATORY_FIELDS_PROPERTY_TOAST", - "message": "Please check the Missing/Invalid field for Property Details, then proceed!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_FILL_ALL_MANDATORY_FIELDS_SCRUTINY_TOAST", - "message": "Please fill all mandatory fields for Scrutiny Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_FILL_ATLEAST_ONE_FIELD_WITH_CITY", - "message": "Please fill atleast one field along with city", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_FILL_BPA_FIELDS", - "message": "Please fill all mandatory fields for Stakeholder Registration, then do next!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_FILL_EDCR_PERMIT_INCORRECT_DATE", - "message": "Entered permit date is not correct, please check.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_FILL_FROM_DATE", - "message": "Please fill From Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_FILL_MANDATORY_FIELDS_UPLOAD_DOCS", - "message": "Please fill all mandatory fields and upload the documents !", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_FILL_ONE_FIELDS", - "message": "Please fill at least one field to start search", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_FILL_OWNERS_MANDATORY_FIELDS", - "message": "Please fill all mandatory fields for Owner Details, then do next !", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_FILL_TRADE_MANDATORY_FIELDS", - "message": "Please fill all mandatory fields for Trade Details, then do next !", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_FILL_VALID_FIELDS", - "message": "Please fill valid fields to start search", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_FROM_TO_DATE_TOAST", - "message": "To and from date must be different", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_HRMS_INVALID_CITY", - "message": "Invalid City", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_HRMS_INVALID_MOB_NO", - "message": "Invalid mobile number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_INVALID_AMOUNT", - "message": "Invalid Amount", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_INVALID_APPID", - "message": "Invalid Application No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_INVALID_APPLICATION_NO", - "message": "Invalid Application No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_INVALID_CONSUMER_NO", - "message": "Invalid Consumer No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_INVALID_DATE", - "message": "Invalid Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_INVALID_MAT_COST", - "message": "Please enter a valid amount", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_INVALID_MOBILE_NUMBER", - "message": "Invalid Mobile Number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_INVALID_PROPERTY_ID", - "message": "Invalid Property ID", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_INVALID_TRADE_LICENSE_NO", - "message": "Invalid Trade License No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_MOBILE_NUMBER_INCORRECT", - "message": "Provided mobile number not found in the system, Please fill all details manually", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_MOBILE_NUMBER_NOT_REGISTERED", - "message": "This mobile number is not registered !", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_NON_ZERO_AMOUNT_TOAST", - "message": "Please enter amount", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_NOT_AUTHORISED_BUSINESS_SERVICE", - "message": "Not authorized to access Business Service!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_NOT_VALID_IMAGE", - "message": "The file is not a valid image", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_NO_ADMIN_BOUNDARY_FOR_TENANT", - "message": "There is no admin boundary data available for this tenant", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_OTP_RESENT", - "message": "OTP has been Resent", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_OWNER_ALREADY_ADDED", - "message": "Owner already added !", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_OWNER_ALREADY_ADDED_1", - "message": "Owner already added !", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_OWNER_ALREADY_ADDED_TOGGLE_MSG", - "message": "Owner has been added already!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_PASSWORD_DO_NOT_MATCH", - "message": "Password do not match", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_PLEASE_MENSION_YOUR_REASON", - "message": "Please mention your reason", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_PLEASE_PROVIDE_RATINGS", - "message": "Please provide ratings", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_PLEASE_UPLOAD_PHOTO", - "message": "Please upload photo or write comments", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_PREPARING_CONFIRMATION_FORM", - "message": "Preparing confirmation form, please wait...", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_PRIMARY_OWNER_TOAST", - "message": "Please check is primary owner", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_PROPERTY_NOT_FOUND_WITH_PROPERTY_ID", - "message": "Property is not found with this Property Id", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_PT_COMMON_FILL_MANDATORY_FIELDS", - "message": "Please provide the city and any one other field information to search for property.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_PT_FILL_VALID_FIELDS", - "message": "Provide at least one parameter to search for an application", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_SEARCH_ERROR", - "message": "Workflow search error !", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_SELECT_CITY_TO_SEARCH_PROPERTY_ID", - "message": "Please select city to search by property id !!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_SELECT_CURRENT_ASSIGNMENT", - "message": "Please select at least one current assignment", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_SELECT_MANDATORY_FIELDS", - "message": "Please fill all the mandatory fields", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_TL_UPDATE_ERROR", - "message": "TL update error!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_TRANSACTION_NO_DONT_MATCH", - "message": "Transaction numbers don't match !", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_TRASACTION_NUMBERS_DONT_MATCH", - "message": "Transaction numbers don't match !", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_TYPE_YOUR_COMMENTS", - "message": "Please type your comments", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_ULD_VALIDATIONS_FAILED", - "message": "ULB validations failed!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_UPLOAD_FILE", - "message": "Please Upload file !", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_UPLOAD_MANDATORY_DOCUMENTS_TOAST", - "message": "Please fill all mandatory fields and upload the documents!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_UPLOAD_REQUIRED_DOCUMENTS", - "message": "Please upload all the required documents!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_VALUE_LESS_THAN_SIX_CHARACTERS", - "message": "Entered value is less than 6 characters in length.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_WS_FILL_ATLEAST_ONE_FIELD", - "message": "Please provide at least one field information to search for connection", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ERR_WS_PROP_STATUS_INWORKFLOW", - "message": "Property inworkflow", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ER_ULB", - "message": "ULB", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ESTIMATE_DOC_DESIGN_DOCUMENT", - "message": "Design document", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ESTIMATE_DOC_DETAILED_ESTIMATE", - "message": "Detailed estimate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ESTIMATE_DOC_LABOUR_ANALYSIS", - "message": "Labour analysis", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ESTIMATE_DOC_MATERIAL_ANALYSIS", - "message": "Material analysis", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ESTIMATE_DOC_OTHERS", - "message": "Others", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ESTIMATE_ESTIMATE_NO", - "message": "Estimate Number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EST_VIEW_ACTIONS_CREATE_CONTRACT", - "message": "Create Contract", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_ACTION_MESSAGE_SAVE_AS_DRAFT", - "message": "Test saved as draft", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_ACTION_MESSAGE_SUBMIT_SAMPLE", - "message": "Submit sample for testing", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_ACTION_MESSAGE_UPDATE_RESULT", - "message": "Update test result", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_AIRPORT_NOC_OFFLINE_AUTO_APPROVE_UPDATE_SUCCESS", - "message": "Application Approved Successfully", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_APPLICATION_CHANNEL", - "message": "Source", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_APPLICATION_DETAILS_APPLICATION_TIMELINE", - "message": "Timeline", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_BPA_ACTION_TITLE_APPROVE", - "message": "Approve", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_BPA_ACTION_TITLE_SEND_BACK_TO_CITIZEN", - "message": "SEND BACK TO CITIZEN", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_BPA_ACTION_TITLE_SEND_TO_ARCHITECT", - "message": "SEND TO ARCHITECT", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_BPA_ALL_SELECTED", - "message": "All Selected", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_BY_CLICKING", - "message": "I agree to the DIGIT's", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_CE_DELETE", - "message": "Delete", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_CE_EDIT_DOCUMENT", - "message": "Edit Document Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_CLEAR_ALL", - "message": "Clear All", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_AADHAR", - "message": "Aadhaar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_ACCOUNT_HOLDER_NAME", - "message": "Account Holder’s Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_AGE_GREATER_THAN_18_ERROR", - "message": "Age should be greater than 18 years", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_AMOUNT", - "message": "Amount (₹)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_APPLICATION_SEARCH", - "message": "Search Application", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_APPLICATION_SUBMIT", - "message": "Submit", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_APPLY", - "message": "Apply", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_ATTENDENCEMGMT", - "message": "MUKTA", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_BILLS_SEWERAGE_INBOX_LABEL", - "message": "Inbox", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_BILLS_WATER_INBOX_LABEL", - "message": "Inbox", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_BILL_AMEND_SEWERAGE_INBOX_LABEL", - "message": "Sewerage Inbox", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_BILL_AMEND_WATER_INBOX_LABEL", - "message": "Water Inbox", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_BILL_PATTERN_ERR_MSG", - "message": "Please enter valid bill number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_BIRTHDATE", - "message": "Date of birth", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_BRANCH", - "message": "Branch", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_CANCEL", - "message": "Cancel", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_CATEGORY", - "message": "Category", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_CBO_NAME", - "message": "CBO Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_CLEAR_ALL", - "message": "CLEAR ALL", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_CLEAR_SEARCH", - "message": "CLEAR SEARCH", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_CONNECTION_SEARCH_LABEL", - "message": "Search Connection", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_CONTACT_DETAILS", - "message": "Contact Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_CPS-CWNS", - "message": "Child Play Station - Capital Works - Non-Slum", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_CPS-CWS", - "message": "Child Play Station - Capital Works - Slum", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_CPS-OMNS", - "message": "Child Play Station - Operations and Maintenance - Non-Slum", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_CPS-OMS", - "message": "Child Play Station - Operations and Maintenance - Slum", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_CREATED_BY", - "message": "Created By", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_CREATED_FROM", - "message": "Created from", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_CREATED_TO", - "message": "Created to", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_CREATE_PROPERTY_HEADER", - "message": "Create New Property (For TL Application)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_CREATE_PROPERTY_HEADER_TL", - "message": "Create New Property (For Trade License)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_CREATE_PROPERTY_HEADER_WS", - "message": "Create Property (On New Connection)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_DATE", - "message": "Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_DAYS_LESS_THAN_SEVEN_ERROR", - "message": "Modified days should be between 0 to 7", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_DOC_CATEGORY", - "message": "Document Category", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_DOC_DESCRIPTION", - "message": "Document Description", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_DOC_DOCUMENT", - "message": "Document", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_DOC_FILENAME", - "message": "File Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_DOC_NAME", - "message": "Document Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_DOOR_NO", - "message": "Door/ House number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_DOWNLOADS", - "message": "Downloads", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_DOWNLOAD_PAYMENT_ADVICE", - "message": "Download Payment Advice", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_DSS_NSS_BND", - "message": "Birth & Death", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_DSS_OVERVIEW", - "message": "Overview Dashboard", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_ENTER_DATE_RANGE", - "message": "Enter valid date range", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_ENTER_NAME", - "message": "Enter the file name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_FILTER", - "message": "Filter", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_FILTERS", - "message": "Filters", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_FILTER_BY", - "message": "FILTER BY", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_FSTP_OPERATION", - "message": "FSTP Operations", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_GENERATE_PAYMENT_ADVICE", - "message": "Generate Payment Advice", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_GOTO_HOME", - "message": "Go To Home", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_HIDE_DETAILS", - "message": "Hide Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_HOME", - "message": "Home", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_IFSC", - "message": "IFSC Code", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_IFSC ", - "message": "IFSC Code", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_IFSC_CODE_ERROR", - "message": "Enter valid IFSC code", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_INBOX", - "message": "Inbox", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_INFO", - "message": "Info", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_JOB_ID", - "message": "Job ID", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_LAST_4_DIGITS", - "message": "Last 4 Digits", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_LESS", - "message": "Less", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_LINK_LABEL", - "message": "Document Link", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_LOCATION", - "message": "Location", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_LOCATION_DETAILS", - "message": "Location Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_LOO-CWNS", - "message": "Loo - Capital Works - Non-Slum", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_LOO-OMNS", - "message": "Loo - Operations and Maintenance - Non-Slum", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_LOO-OMS", - "message": "Loo - Operations and Maintenance - Slum", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_LOO_CWS", - "message": "Loo - Capital Works - Slum", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_MIN_SEARCH_CRITERIA_MSG", - "message": "Please enter minimum 1 search criteria", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_MOBILE_EXISTS_ERROR", - "message": "Mobile number already exists", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_MODE_OF_ENTRUSTMENT", - "message": "Recommended mode of entrustment", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_MODIFY", - "message": "Modify", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_MORE", - "message": "More", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_MP-CWNS", - "message": "Mini Park - Capital Works - Non-Slum", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_MP-CWS", - "message": "Mini Park - Capital Works - Slum", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_MP-OMNS", - "message": "Mini Park - Operations and Maintenance - Non-Slum", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_MP-OMS", - "message": "Mini Park - Operations and Maintenance - Slum", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_MP001", - "message": "Mini Park Sub Project 1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_MP002", - "message": "Mini Park Sub Project 2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_MUSTER_ROLL_ID", - "message": "Muster Roll ID", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_MUSTER_ROLL_PERIOD", - "message": "Muster Roll Period", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_MUSTER_RPLL_PERIOD", - "message": "Muster Roll Period", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_NA", - "message": "NA", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_NOTE", - "message": "Note", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_NO_DATA", - "message": "No Data Found", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_NO_ITEMS", - "message": "No Items", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_NO_OF_BENEFICIARIES", - "message": "No. of beneficiaries", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_NO_OF_BILLS", - "message": "No. of bills", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_NO_ORG_LINKED_WITH_MOBILE_NUMBER", - "message": "No Organization exists with the entered mobile number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_OAG-CWNS", - "message": "Open Air Gym - Capital Works - Non-Slum", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_OAG-CWS", - "message": "Open Air Gym - Capital Works - Slum", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_OAG-OMNS", - "message": "Open Air Gym - Operations and Maintenance - Non-Slum", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_OAG-OMS", - "message": "Open Air Gym - Operations and Maintenance - Slum", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_OBPS_INBOX_LABEL", - "message": "OBPS Inbox", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_ORG_EXISTS_WITH_MOBILE_NUMBER", - "message": "An Organisation already exists with this mobile number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_ORG_NAME", - "message": "Organisation Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_PAGE_1", - "message": "Edit profile", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_PAYMENT_STATUS", - "message": "Payment Status", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_PG-CWNS", - "message": "Playground - Capital Works - Non-Slum", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_PG-CWS", - "message": "Playground - Playground - Slum", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_PG-OMNS", - "message": "Playground - Operations and Maintenance - Non-Slum", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_PG-OMS", - "message": "Playground - Operations and Maintenance - Slum", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_PHOTOGRAPH", - "message": "Photograph", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_PLEASE_ENTER_ALL_MANDATORY_FIELDS", - "message": "Please enter all mandatory fields", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_PROJECT_NAME", - "message": "Project Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_PROPOSAL_DATE", - "message": "Project sanction date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_RELATIONSHIP", - "message": "Relationship", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_RESPONSE", - "message": "Response", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_RE_TRANSANCTION_NO", - "message": "Re-Enter Transaction No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_SEARCH", - "message": "Search", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_SEARCH_APPLICATION", - "message": "Search Application", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_SEARCH_BY", - "message": "Search By", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_SKILL", - "message": "Skill", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_SKILL_CATEGORY", - "message": "Skill Category", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_SORT_BY_ASC", - "message": "Date(Latest Last)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_SORT_BY_DESC", - "message": "Date(Latest First)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_STAKEHOLDER_INBOX_LABEL", - "message": "Stakeholder Inbox", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_STATUS", - "message": "Status", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_STREET", - "message": "Street", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_STREET_NAME", - "message": "Street name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_TAKE_ACTION", - "message": "Take action", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_TIME", - "message": "Inspection Time", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_TOTAL_AMOUNT", - "message": "Total Amount", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_TRANSANCTION_NO", - "message": "Transaction No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_ULB", - "message": "ULB", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_UPDATE", - "message": "Update", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_USER_ULBS", - "message": "User Ulb(s)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_VALID_DAY", - "message": "Enter valid day", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_VALID_FROM", - "message": "Valid From", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_VALID_TO", - "message": "Valid To", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_VIEW_DETAILS", - "message": "View Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_VZ-CWNS", - "message": "Vending Zone - Capital Works - Non-Slum", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_VZ-CWS", - "message": "Vending Zone - Capital Works - Slum", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_VZ-OMNS", - "message": "Vending Zone - Operations and Maintenance - Non-Slum", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_VZ-OMS", - "message": "Vending Zone - Capital Works - Slum", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_WB-CWNS", - "message": "Water Body - Capital Works - Non-Slum", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_WB-CWS", - "message": "Water Body - Capital Works - Slum", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_WB-OMNS", - "message": "Water Body - Operations and Maintenance - Non-Slum", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_WB-OMS", - "message": "Water Body - Operations and Maintenance - Slum", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_WORK_NATURE", - "message": "Nature of Work", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_WS_DOCUMENTS_REQUIRED", - "message": "Required Documents", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_WS_NEW_CONNECTION", - "message": "New connection", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_WT-CWNS", - "message": "Walking Track - Capital Works - Non-Slum", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_WT-CWS", - "message": "Walking Track - Walking Track - Slum", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_WT-OMNS", - "message": "Walking Track - Operations and Maintenance - Non-Slum", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_WT-OMS", - "message": "Walking Track - Operations and Maintenance - Slum", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_Y_DEL", - "message": "Yes, Delete", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMPLAINT_RESOLVED_SUCCESS_MESSAGE", - "message": "You have marked the complaint as", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_COMPLIENT_CREATE", - "message": "New Complaint", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_DEFAULT_NOTIFICATION", - "message": "Notification", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_DIRECTRENEWAL_MANUALEXPIRE_UPDATE_SUCCESS", - "message": "Application expired successfully", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_DISCONNECTWSCONNECTION_APPROVE_FOR_DISCONNECTION_UPDATE_SUCCESS", - "message": "Application is approved Successfully", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_DSS_DATE_RANGE", - "message": "Date Range", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_EDITRENEWAL_APPLY_UPDATE_SUCCESS", - "message": "Application updated successfully", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_EDITRENEWAL_MANUALEXPIRE_UPDATE_SUCCESS", - "message": "Application expired successfully", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_ENGAGEMENT_DOCUMENTS", - "message": "Add New Document", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_ENGAGEMENT_EDIT_DOC", - "message": "Edit Document", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_ERROR_DSO_LOGIN", - "message": "Please use a registered number for logging as a DSO", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_ERROR_REQUIRED", - "message": "field can't be empty", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_ERROR_USER_NOT_PERMITTED", - "message": "User not Permitted", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_EVENT_DELETE", - "message": "Delete", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_EVENT_DELETE_POPUP_HEADER", - "message": "Confirm Delete Event", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_EVENT_DELETE_TEXT", - "message": "Please Confirm if you want to delete the Event", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_EVENT_EDIT", - "message": "Edit Event", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_EVENT_EDIT_EVENT", - "message": "Edit Events", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_EVENT_EVENT_DETAILS", - "message": "Event Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_EVENT_INBOX", - "message": "Inbox", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_EVENT_NEW_EVENT", - "message": "New Event", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_EVENT_NEW_EVENT_RESPONSE", - "message": "Response", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_FIRE_NOC_SRV_VOID_UPDATE_SUCCESS", - "message": "Application Voided Successfully", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_FORGOT_PASSWORD", - "message": "Forgot Password?", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_FORGOT_PASSWORD_DESC", - "message": "Please enter your phone number to reset password.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_FORGOT_PASSWORD_DESC,", - "message": "Please enter your phone number to reset password.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_FSM_ACTION_TITLE_SCHEDULE", - "message": "DSO Vehicle Selection", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_FSM_ADD_NEW_BUTTON", - "message": "Add New", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_FSM_DISPOSE_UPDATE_FAILURE", - "message": "Dsispose Update Failure", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_FSM_PAYMENT_PREFERENCE", - "message": "Payment Preference", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_FSM_REJECTION_OPTION_A", - "message": "Vehicle under maintenance", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_FSM_REJECTION_OPTION_B", - "message": "Cannot service within provided service date, multiple request in pipeline", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_FSM_RESPONSE_ASSIGN_DSO_ACTION", - "message": "Select DSO Now", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_FSM_RESPONSE_ASSIGN_DSO_LABEL", - "message": "Select DSO", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_FSM_RESPONSE_SUBMIT_ACTION", - "message": "Application Updated Successfully", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_FSM_SCHEDULE", - "message": "Schedule Vehicle", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_FSM_SCHEDULE_UPDATE_SUCCESS", - "message": "Vehicle Schedule Complete", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_FSM_SENDBACK_UPDATE_SUCCESS", - "message": "Application Sentback Successfully", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_FSM_VEHICLE_TRACKING", - "message": "Vehicle Tracking", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_FSM_VIEW_REPORTS_BUTTON", - "message": "View Reports", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_INBOX_ASSIGNED_TO_ALL", - "message": "Assigned to All", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_INBOX_ASSIGNED_TO_ME", - "message": "Assigned to Me", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_INBOX_COMMON_SEARCH", - "message": "Search", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_INBOX_DATE_LATEST_FIRST", - "message": "Latest First", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_INBOX_DATE_LATEST_LAST", - "message": "Latest Last", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_INBOX_LOCALITY", - "message": "Locality", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_INBOX_PLEASE_SPECIFY_GRAM_PANCHAYAT", - "message": "If Others, Specify Gram Panchayat", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_INBOX_PLEASE_SPECIFY_LOCALITY", - "message": "If Others, Specify Locality", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_INBOX_PLEASE_SPECIFY_VILLAGE", - "message": "Specify Village", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_INBOX_SLA_DAYS_REMAINING", - "message": "SLA Days Remaining", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_INBOX_STATUS", - "message": "Status", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_INVALID_LOGIN_CREDENTIALS", - "message": "Invalid Login Credentials", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_NEW_APPLICATION_AMOUNT_INVALID", - "message": "Please provide a valid amount", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_NEW_APPLICATION_AMOUNT_PER_TRIP", - "message": "Amount per Trip (₹)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_NEW_APPLICATION_APPLICANT_MOBILE_NO", - "message": "Applicant Mobile No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_NEW_APPLICATION_APPLICANT_NAME", - "message": "Applicant Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_NEW_APPLICATION_APPLICATION_CHANNEL", - "message": "Application Channel", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_NEW_APPLICATION_APPLICATION_TIMELINE", - "message": "Application Timeline", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_NEW_APPLICATION_DISTANCE_FROM_ROAD", - "message": "Distance of Pit from Road (m)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_NEW_APPLICATION_DOOR_NO", - "message": "Door No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_NEW_APPLICATION_LOCATION_CITY", - "message": "City", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_NEW_APPLICATION_LOCATION_DETAILS", - "message": "Location Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_NEW_APPLICATION_LOCATION_GEOLOCATION", - "message": "Geolocation", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_NEW_APPLICATION_LOCATION_LANDMARK", - "message": "Landmark", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_NEW_APPLICATION_LOCATION_LOCALITY", - "message": "Locality", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_NEW_APPLICATION_LOCATION_MOHALLA", - "message": "Locality", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_NEW_APPLICATION_LOCATION_PINCODE", - "message": "Pincode", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_NEW_APPLICATION_OWNERSHIP_DETAILS", - "message": "Ownership Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_NEW_APPLICATION_PINCODE", - "message": "Pincode", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_NEW_APPLICATION_PROPERTY_DETAILS", - "message": "Property Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_NEW_APPLICATION_PROPERTY_SUB-TYPE", - "message": "Property Sub-Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_NEW_APPLICATION_PROPERTY_TYPE", - "message": "Property Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_NEW_APPLICATION_PROVIDE_PROPERTY_STREET_DOOR_NO", - "message": "Provide the Street Name and Door/House No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_NEW_APPLICATION_PT_DETAILS", - "message": "Property Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_NEW_APPLICATION_STREET_NAME", - "message": "Street Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_NO_EVENTS", - "message": "No Events", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_NO_FILE_SELECTED_LABEL", - "message": "No File Selected", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_NewTL_MANUALEXPIRE_UPDATE_SUCCESS", - "message": "Application expired successfully", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_OBPS_ACTION_COMMENTS", - "message": "Comments", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_OBPS_ACTION_FILE_UPLOAD", - "message": "Attach Documents", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_OBPS_SEARCH", - "message": "Search Application", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_OBPS_SEARCH_BPA", - "message": "Application Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_OTP_RESEND", - "message": "OTP Resend", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_OWNER", - "message": "Owner", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_PAYMENT_AMOUNT", - "message": "Payment Amount", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_PAYMENT_BPA.LOW_RISK_PERMIT_FEE_ARCHITECT_SUCCESSFUL_DESCRIPTION", - "message": "A Noticication regarding payment has been sent to the registered mobile number of Applicant and Architect.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_PAYMENT_BPA.LOW_RISK_PERMIT_FEE_TOWNPLANNER_SUCCESSFUL_DESCRIPTION", - "message": "A Noticication regarding payment has been sent to the registered mobile number of Applicant and Architect.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_PAYMENT_BPA.NC_APP_FEE_ARCHITECT_SUCCESSFUL_DESCRIPTION", - "message": "A Noticication regarding payment has been sent to the registered mobile number of Applicant and Architect.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_PAYMENT_BPA.NC_APP_FEE_BUILDER_SUCCESSFUL_DESCRIPTION", - "message": "A Noticication regarding payment has been sent to the registered mobile number of Applicant and Architect.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_PAYMENT_COLLECTED", - "message": "Payment Collected", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_PAYMENT_DETAILS_ADV_AMOUNT", - "message": "Advance Amount", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_PAYMENT_DETAILS_TOTAL_AMOUNT", - "message": "Total Amount", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_PAYMENT_SUCCESSFUL_DESCRIPTION", - "message": "The notification along with Payment details is sent to the registered mobile number of the user / owner.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_PAYMENT_TAXHEADS", - "message": "Tax Heads", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_PAYMENT_WS_SW_SUCCESSFUL_DESCRIPTION", - "message": "The notification along with your application number is sent to your applicant’s mobile number. Applicant can track the application status using mobile or web app.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_PAYMENT_WS_WS_ONE_TIME_FEE_SUCCESSFUL_DESCRIPTION", - "message": "The notification along with your application number is sent to your applicant’s mobile number. Applicant can track the application status using mobile or web app", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_PAYMENT_WS_WS_SUCCESSFUL_DESCRIPTION", - "message": "The notification along with your application number is sent to your applicant’s mobile number. Applicant can track the application status using mobile or web app", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_PGR_HEADER_COMPLAINT", - "message": "Citizen Complaint Resolution System", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_PGR_INBOX", - "message": "Inbox", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_PGR_NEW_COMPLAINT", - "message": "New Complaint", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_PRIVACY_POLICY", - "message": "Privacy Policy", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_PT_ACTION_FILEUPLOADED", - "message": "File Uploaded", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_PT_COMMON_STATUS_ACTIVE", - "message": "Active", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_PT_COMMON_STATUS_INWORKFLOW", - "message": "Inworkflow", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_READY_FOR_DISPOSAL", - "message": "Ready For Disposal", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_SEARCH_APPLICATION_MOBILE_INVALID", - "message": "Please provide a valid mobile number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_SELECT_AN_OPTION", - "message": "Select an option", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_SHOW_LESS", - "message": "Show Less", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_SOMETHING_WRONG", - "message": "Something went wrong !!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_SOMETHING_WRONG,", - "message": "Something went wrong !!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_SURVEY_DONT_START_WITH_NUMBER", - "message": "Survey name cannot start with a number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_TITILE_SEARCH_APPLICATION", - "message": "Search Application", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_TITLE_APPLICANT_DETAILS", - "message": "Applicant Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_TITLE_APPLICATION_DETAILS", - "message": "Event Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_TITLE_CITIZEN_ENGAGEMENT", - "message": "Citizen Engagement", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_TITLE_DOCS", - "message": "Documents", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_TITLE_DSS", - "message": "DSS", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_TITLE_DSS_OVERVIEW", - "message": "DSS Overview", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_TITLE_EDIT_EVENTS", - "message": "Edit Event", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_TITLE_EVENT_INBOX", - "message": "Events", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_TITLE_FAECAL_SLUDGE_MGMT", - "message": "Faecal Sludge Mgmt", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_TITLE_FSM_REGISTRY", - "message": "FSM Registry", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_TITLE_INBOX", - "message": "Inbox", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_TITLE_NEW_DESULDGING_APPLICATION", - "message": "New Emptying of Septic Tank / Pit Application", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_TITLE_NEW_EVENTS", - "message": "New event", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_TITLE_NEW_REGISTRATION", - "message": "New Property Registration", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_TITLE_NEW_TRADE_LICESE_APPLICATION", - "message": "New Trade License Application", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_TITLE_PROPERTY_TAX", - "message": "Property Tax", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_TITLE_VEHICLE_LOG", - "message": "Vehicle Log", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_TQM_DAYS_AGO", - "message": " {NO_OF_DAY} days ago ", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_TQM_DAYS_AGO_VAL", - "message": "days ago", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_TQM_DAY_AGO", - "message": "1 day ago", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_TQM_LABEL_SAVE_AS_DRAFT", - "message": "Update draft", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_TQM_MONTHS_AGO", - "message": " {NO_OF_MONTH} months ago", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_TQM_MONTH_AGO", - "message": "1 month ago", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_TQM_NOTIFICATIONS", - "message": "Notifications", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_TQM_NO_NOTIFICATION", - "message": "No notifications available", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_TQM_TODAY", - "message": "Today", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_VEHICLE_TRIP_NO ", - "message": "Vehicle Trip No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_VIEW_ALL", - "message": "View All", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ES_WAGE_SEEKER", - "message": "Wage Seeker", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EVENTS_ACTIVE_LABEL", - "message": "Active", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EVENTS_ADDRESS_LABEL", - "message": "Event Address", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EVENTS_ADD_NEW_LABEL", - "message": "Add New Event", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EVENTS_ATTACHMENT_LABEL", - "message": "Attachment", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EVENTS_CATEGORY_ERROR_REQUIRED", - "message": "Required", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EVENTS_CATEGORY_LABEL", - "message": "Event Category", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EVENTS_CATEGORY_PLACEHOLDER", - "message": "Select Event Category", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EVENTS_COMMENTS_LABEL", - "message": "Message Content", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EVENTS_COMMENTS_PLACEHOLDER", - "message": "Message Content ( Character Length:280)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EVENTS_CREATED_EVENTS_HEADER", - "message": "Created Events", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EVENTS_CREATE_EVENT", - "message": "Create Event", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EVENTS_DATERANGE_LABEL", - "message": "Date Range", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EVENTS_DESCRIPTION", - "message": "Description", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EVENTS_DESCRIPTION_LABEL", - "message": "Description", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EVENTS_DESCRIPTION_LIMIT_PLACEHOLDER", - "message": "Description (Max Char Limit : 500)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EVENTS_DESCRIPTION_TEXT", - "message": "Description (Max Char limit : 500)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EVENTS_DETAILS_TITLE", - "message": "Event Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EVENTS_EDIT_EVENT", - "message": "Edit", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EVENTS_END_DATE_LABEL", - "message": "End Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EVENTS_ENTER_ENTRY_FEE_PLACEHOLDER", - "message": "Enter Entry Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EVENTS_ENTER_ORGANIZER_NAME_PLACEHOLDER", - "message": "Enter Organizer Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EVENTS_ENTRY_FEE_INR_LABEL", - "message": "Entry Fee (INR)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EVENTS_EVENTS_HEADER", - "message": "Events", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EVENTS_EVENT_CATEGORY_LABEL", - "message": "Event Category", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EVENTS_EVENT_NAME_LABEL", - "message": "Event Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EVENTS_FROM_DATE_ERROR_INVALID", - "message": "Invalid From Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EVENTS_FROM_DATE_LABEL", - "message": "From Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EVENTS_FROM_TIME_LABEL", - "message": "Event From Time", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EVENTS_GEOLOCATION_LABEL", - "message": "Pick Event Location from the Map:", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EVENTS_INACTIVE_LABEL", - "message": "Inactive", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EVENTS_MAP_LABEL", - "message": "Event Location", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EVENTS_MESSAGE_LABEL", - "message": "Message", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EVENTS_NAME_ADDRESS_PLACEHOLDER", - "message": "Enter Event Address", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EVENTS_NAME_ERROR_REQUIRED", - "message": "Required", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EVENTS_NAME_LABEL", - "message": "Event Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EVENTS_NAME_PLACEHOLDER", - "message": "Enter Event Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EVENTS_NEW_PUBLIC_MESSAGE_BUTTON_LABEL", - "message": "NEW PUBLIC MESSAGE", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EVENTS_ORGANIZER_ERROR", - "message": "Invalid Organizer Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EVENTS_ORGANIZER_NAME_LABEL", - "message": "Organizer Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EVENTS_PICK_MAP_LABEL", - "message": "Pick event location from the map", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EVENTS_POSTEDBY_LABEL", - "message": "Posted By", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EVENTS_POSTING_DATE_LABEL", - "message": "Posting Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EVENTS_PUBLIC_MESSAGE_NOTICE_HEADER", - "message": "Public Message Notice", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EVENTS_SELECT_CATEGORY_LABEL", - "message": "Select Event Category", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EVENTS_START_DATE_LABEL", - "message": "Start Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EVENTS_STATUS_LABEL", - "message": "Status", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EVENTS_TITLE_LABEL", - "message": "Title", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EVENTS_TITLE_LABEL_PLACEHOLDER", - "message": "Enter the title of the message", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EVENTS_TO_DATE_ERROR_INVALID", - "message": "Invalid End Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EVENTS_TO_DATE_ERROR_REQUIRED", - "message": "Required", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EVENTS_TO_DATE_LABEL", - "message": "To Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EVENTS_TO_TIME_LABEL", - "message": "Event To Time", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EVENTS_ULB_LABEL", - "message": "ULB", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EVENTS_UPLOADED_MESSAGES_HEADER", - "message": "Uploaded Messages", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EVENTS_UPLOAD_FILE", - "message": "UPLOAD FILE", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EVENT_ADD_NEW_LABEL", - "message": "Create New Event", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EVENT_ADD_SUCCESS_MESSAGE_MAIN", - "message": "Event published successfully", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EVENT_ADD_SUCCESS_MESSAGE_SUB", - "message": " ", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EVENT_DELETE_SUCCESS_MESSAGE_MAIN", - "message": "Event deleted Successfully", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EVENT_EDIT_LABEL", - "message": "Edit Event", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EVENT_UPDATE_SUCCESS_MESSAGE_MAIN", - "message": "Event updated successfully", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EV_SLA_DAY_ONE", - "message": "day ago", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EV_SLA_MINUTE", - "message": "Minutes ago", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EV_SLA_MINUTE_ONE", - "message": "minute ago", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EV_SLA_MONTH", - "message": "Months ago", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EV_SLA_MONTH_ONE", - "message": "month ago ", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EV_SLA_TIME", - "message": "hrs ago", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EV_SLA_TIME_ONE", - "message": "hr ago", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EV_SLA_WEEK", - "message": "Weeks ago", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EV_SLA_WEEK_ONE", - "message": "Week ago", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EXCEEDS_100_CHAR_LIMIT", - "message": "Cannot exceed 100 characters", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EXCEEDS_140_CHAR_LIMIT", - "message": "Cannot exceed 140 characters", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EXCEEDS_200_CHAR_LIMIT", - "message": "Cannot exceed 200 characters", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EXCEEDS_60_CHAR_LIMIT", - "message": "Title should be less than 60 charchters", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EXPIRED", - "message": "Expired", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EXP_DEDUCTION_NAME", - "message": "Deduction Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EXP_PAYMENT_INS", - "message": "Payment Instruction", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EXP_PERCENTAGE_OR_FIXED", - "message": "Percentage/ Fixed", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "EXP_VIEW_BILLS_MENU", - "message": "View Bills Menu", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "Enter Property Tax Unique ID", - "message": "Enter", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FAQ_S", - "message": "FAQs", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FATHER", - "message": "Father", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FATHER_NAME", - "message": "Father / Husband Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FATHER_NAME_IS_REQUIRED", - "message": "Father name is required", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FEMALE", - "message": "Female", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FEMALE_MULIA", - "message": "Female mulia", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FI", - "message": "Field Inspection documents", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FI.AGRICULTURE.LANDUSE", - "message": "Agriculture Landuse", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FI.AGRICULTURE_WATERBODY.FTL", - "message": "Agriculture Water body FTL", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FI.FIR", - "message": "Field inspection report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FI.FIR.FIR", - "message": "Field inspection report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FI.SIES", - "message": "Site Image East side", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FI.SIES.SIES", - "message": "Site Image East side", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FI.SINS", - "message": "Site image North side", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FI.SINS.SINS", - "message": "Site image North side", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FI.SISS", - "message": "Site Image South side", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FI.SISS.SISS", - "message": "Site Image South side", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FI.SIWS", - "message": "Site Image West Side", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FI.SIWS.SIWS", - "message": "Site Image West Side", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FIELDINSPECTION", - "message": "Pending for Field inspection", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FIELDINSPECTION_INPROGRESS", - "message": "Field Inspection InProgress", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FILE_LIMIT_EXCEED", - "message": "FIle size is Exceeded", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FILE_LIMIT_EXCEEDED", - "message": "Remove existing file before uploading new one", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FILE_MANAGER", - "message": "Gallery", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FILE_SIZE", - "message": "Maximum file size should be 5 MB", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FILE_SIZE_EXCEEDED", - "message": "File size cannot be greater than 5mb", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FILE_SIZE_EXCEEDED_5MB", - "message": "File Size Exceeded(5MB). Please upload single file upto 5 MB", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FILTERS_FILTER_CARD_CAPTION", - "message": "Filters", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FINANCIALS_SEARCH_ERROR", - "message": "Payment cannot be processed.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FIRENOC", - "message": "Fire No Objection Certificate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FIRENOC_BUILDINGTYPE_GROUP_A_RESIDENTIAL", - "message": "Group A Residential", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FIRENOC_BUILDINGTYPE_GROUP_A_RESIDENTIAL_SUBDIVISIONA_1", - "message": "Subdivision A-1 Lodging and rooming houses", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FIRENOC_BUILDINGTYPE_GROUP_A_RESIDENTIAL_SUBDIVISIONA_2", - "message": "Subdivision A-2 One or two family private dwellings", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FIRENOC_BUILDINGTYPE_GROUP_A_RESIDENTIAL_SUBDIVISIONA_3", - "message": "Subdivision A-3 Dormitories", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FIRENOC_BUILDINGTYPE_GROUP_A_RESIDENTIAL_SUBDIVISIONA_4", - "message": "Subdivision A-4 Apartment houses", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FIRENOC_BUILDINGTYPE_GROUP_A_RESIDENTIAL_SUBDIVISIONA_5", - "message": "Subdivision A-5 Hotels", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FIRENOC_BUILDINGTYPE_GROUP_A_RESIDENTIAL_SUBDIVISIONA_6", - "message": "Subdivision A-6 Starred hotels", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FIRENOC_BUILDINGTYPE_GROUP_B_EDUCATIONAL", - "message": "Group B Educational", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FIRENOC_BUILDINGTYPE_GROUP_B_EDUCATIONAL_SUBDIVISIONB_1", - "message": "Subdivision B-1 Schools up to senior secondary level", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FIRENOC_BUILDINGTYPE_GROUP_B_EDUCATIONAL_SUBDIVISIONB_2", - "message": "Subdivision B-2 All others/training institutions", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FIRENOC_BUILDINGTYPE_GROUP_C_INSTITUTIONAL", - "message": "Group C Institutional", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FIRENOC_BUILDINGTYPE_GROUP_C_INSTITUTIONAL_SUBDIVISIONC_1", - "message": "Subdivision C-1 Hospitals and sanatoria", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FIRENOC_BUILDINGTYPE_GROUP_C_INSTITUTIONAL_SUBDIVISIONC_2", - "message": "Subdivision C-2 Custodial institutions", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FIRENOC_BUILDINGTYPE_GROUP_C_INSTITUTIONAL_SUBDIVISIONC_3", - "message": "Subdivision C-3 Penal and mental institutions", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FIRENOC_BUILDINGTYPE_GROUP_D_ASSEMBLY", - "message": "Group D Assembly", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FIRENOC_BUILDINGTYPE_GROUP_D_ASSEMBLY_SUBDIVISIOND_1", - "message": "Subdivision D-1 Buildings having a theatrical or motion picture or any other stage and fixed seats for over 1 000 persons", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FIRENOC_BUILDINGTYPE_GROUP_D_ASSEMBLY_SUBDIVISIOND_2", - "message": "Subdivision D-2 Buildings having a theatrical or motion picture or any other stage and fixed seats up to 1 000 persons", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FIRENOC_BUILDINGTYPE_GROUP_D_ASSEMBLY_SUBDIVISIOND_3", - "message": "Subdivision D-3 Buildings without a permanent stage having accommodation for 300 or more persons but no permanent seating arrangement", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FIRENOC_BUILDINGTYPE_GROUP_D_ASSEMBLY_SUBDIVISIOND_4", - "message": "Subdivision D-4 Buildings without a permanent stage having accommodation for less than 300 persons with no permanent seating arrangement", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FIRENOC_BUILDINGTYPE_GROUP_D_ASSEMBLY_SUBDIVISIOND_5", - "message": "Subdivision D-5 All other structures including temporary structures designed for assembly of people not covered by Subdivisions D-1 to D-4, at ground level", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FIRENOC_BUILDINGTYPE_GROUP_D_ASSEMBLY_SUBDIVISIOND_6", - "message": "Subdivision D-6 Buildings having mixed occupancies of assembly and mercantile (for example, shopping malls providing facilities such as shopping, cinema theatres, multiplexes and restaurants/food courts)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FIRENOC_BUILDINGTYPE_GROUP_D_ASSEMBLY_SUBDIVISIOND_7", - "message": "Subdivision D-7 Underground and elevated mass rapid transit system", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FIRENOC_BUILDINGTYPE_GROUP_E_BUSINESS", - "message": "Group E Business", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FIRENOC_BUILDINGTYPE_GROUP_E_BUSINESS_SUBDIVISIONE_1", - "message": "Subdivision E-1 Offices, banks, professional establishments, like offices of architects, engineers, doctors, lawyers, post offices and police stations", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FIRENOC_BUILDINGTYPE_GROUP_E_BUSINESS_SUBDIVISIONE_2", - "message": "Subdivision E-2 Laboratories, outpatient clinics, research establishments, libraries and test houses", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FIRENOC_BUILDINGTYPE_GROUP_E_BUSINESS_SUBDIVISIONE_3", - "message": "Subdivision E-3 Electronic data processing centres, computer installations, information technology parks and call centres", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FIRENOC_BUILDINGTYPE_GROUP_E_BUSINESS_SUBDIVISIONE_4", - "message": "Subdivision E-4 Telephone exchanges", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FIRENOC_BUILDINGTYPE_GROUP_E_BUSINESS_SUBDIVISIONE_5", - "message": "Subdivision E-5 Broadcasting stations, T.V. stations and air traffic control towers", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FIRENOC_BUILDINGTYPE_GROUP_F_MERCANTILE", - "message": "Group F Mercantile", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FIRENOC_BUILDINGTYPE_GROUP_F_MERCANTILE_SUBDIVISIONF_1", - "message": "Subdivision F-1 Shops, stores, departmental stores, markets (any with covered area up to 500 m2 )", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FIRENOC_BUILDINGTYPE_GROUP_F_MERCANTILE_SUBDIVISIONF_2", - "message": "Subdivision F-2 Shops, stores, departmental stores, markets (any with covered area more than 500 m2 )", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FIRENOC_BUILDINGTYPE_GROUP_F_MERCANTILE_SUBDIVISIONF_3", - "message": "Subdivision F-3 Underground shopping centres", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FIRENOC_BUILDINGTYPE_GROUP_G_INDUSTRIAL", - "message": "Group G Industrial", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FIRENOC_BUILDINGTYPE_GROUP_G_INDUSTRIAL_SUBDIVISIONG_1", - "message": "Subdivision G-1 Buildings used for low hazard industries", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FIRENOC_BUILDINGTYPE_GROUP_G_INDUSTRIAL_SUBDIVISIONG_2", - "message": "Subdivision G-2 Buildings used for moderate hazard industries", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FIRENOC_BUILDINGTYPE_GROUP_G_INDUSTRIAL_SUBDIVISIONG_3", - "message": "Subdivision G-3 Buildings used for high hazard industries", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FIRENOC_BUILDINGTYPE_GROUP_H_STORAGE", - "message": "Group H Storage", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FIRENOC_BUILDINGTYPE_GROUP_H_STORAGE_GROUP_H_STORAGE", - "message": "Group H Storage", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FIRENOC_BUILDINGTYPE_GROUP_J_HAZARDOUS", - "message": "Group J Hazardous", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FIRENOC_BUILDINGTYPE_GROUP_J_HAZARDOUS_GROUP_J_HAZARDOUS", - "message": "NA", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FIRENOC_FIRESTATIONS_FS_AMRITSAR_01", - "message": "Amritsar Firestation", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FIRENOC_FIRESTATIONS_FS_CITYA_01", - "message": "City A", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FIRENOC_FIRESTATIONS_FS_JALANDHAR_01", - "message": "Jalandhar Firestation", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FIRENOC_FIRESTATIONS_FS_MOHALI_01", - "message": "Mohali Firestation", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FIRENOC_NEW_APPLICATION", - "message": "NEW APPLICATION", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FIRE_NOC", - "message": "Fire No Objection Certificate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FIRE_NOC_APPLICATION_SENDBACKTOCITIZEN_SUCCESS", - "message": " ", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FIRE_NOC_SENDBACKTOCITIZEN_SUCCESS_MESSAGE_MAIN", - "message": "Application Sent Back to Citizen Successfully", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FITTER", - "message": "Fitter", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FI_AGRICULTURE", - "message": "Agriculture", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FI_FIR", - "message": "Field inspection report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FI_FIR_FIR", - "message": "Field inspection report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FI_SIES", - "message": "Site Image East side", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FI_SINS", - "message": "Site image North side", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FI_SINS_SINS", - "message": "Site image North side", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FI_SISS", - "message": "Site Image South side", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FI_SISS_SISS", - "message": "Site Image South side", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FI_SIWS", - "message": "Site Image West Side", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FI_SIWS_SIWS", - "message": "Site Image West Side", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FN_CITIZEN", - "message": "Citizen", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FN_COUNTER", - "message": "Counter", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FN_NEW", - "message": "New", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FN_PROVISIONAL", - "message": "Provisional", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FREEDOMFIGHTER", - "message": "Freedom Fighter ", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FROM_ISSUED_DATE", - "message": "from the issued date.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FSMAREAWISEDAILYCOLLECTIONREPORT", - "message": "FSM Area Wise Daily Collection Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FSMDAILYCOLLECTIONREPORT", - "message": "FSM Daily Collection Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FSMDAILYDESLUDINGREPORT", - "message": "FSM Daily Desluding Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FSMFSTPPLANTWITHVEHICLELOGREPORT", - "message": "FSM FSTP Plant With Vehicle Log Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FSMREQUESTREPORT", - "message": "FSM Desludging Request Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FSMVEHICLELOGREPORT", - "message": "FSM Vehicle Log Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FSM_APPLICATION_NO", - "message": "Application No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FSM_DUE_AMOUNT_TO_BE_PAID", - "message": "Balance Due", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FSM_FEEDBACK_PENDING", - "message": "Dear Applicant, Your request for cleaning septic tank/pit is completed. Please take some time to rate us using the link {FSM_APPL_LINK}. EGOVS.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FSM_GENDER_DETAILS", - "message": "Gender Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FSM_PAYMENT_DETAILS", - "message": "Payment", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FSM_POST_PAY_SMS_CREATED_CREATE", - "message": "Dear citizen, your application for cleaning septic tank/pit is created with application reference no {2}. You will be notified when an operator is assigned to a request. Request is expected to be completed within {SLA_HOURS}hrs. Thank You. EGOVS.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FSM_POST_PAY_SMS_DSO_INPROGRESS_DSO_ACCEPT", - "message": "Dear Applicant, Vehicle {VEHICLE_REG_NO} will be reaching your location to clean the septic tank/pit on {POSSIBLE_SERVICE_DATE} with reference to your application number {2}. You can contact the operator in +91 {DSO_MOBILE_NUMBER}.\n\nEGOVS", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FSM_REGISTRY_ROLE", - "message": "Role", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FSM_REGISTRY_ROLE 1", - "message": "Role", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FSM_SMS_ASSIGN_DSO_APPLY", - "message": "Dear citizen, your application for cleaning septic tank/pit is created with application reference no {2}. You will be notified when an operator is assigned to a request. Request is expected to be completed within {SLA_HOURS}hrs. Thank You. EGOVS.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FSM_SMS_ASSIGN_DSO_DECLINE", - "message": "Dear Applicant, Your request for cleaning the septic tank/pit is rejected with the reason {FSM_DSO_REJECT_REASON} . Please use this link {NEW_FSM_LINK} to create a new request if needed. EGOVS.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FSM_SMS_ASSING_DSO_APPLY", - "message": "Dear citizen, your application for cleaning septic tank/pit is created with application reference no {2}. You will be notified when an operator is assigned to a request. Request is expected to be completed within {SLA_HOURS}hrs. Thank You. EGOVS.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FSM_SMS_ASSING_DSO_DECLINE", - "message": "Dear Applicant, Your request for cleaning the septic tank/pit is rejected with the reason {FSM_DSO_REJECT_REASON} . Please use this link {NEW_FSM_LINK} to create a new request if needed. EGOVS.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FSM_SMS_ASSING_DSO_PAY", - "message": "Dear citizen, amount of Rs.{AMOUNT_TO_BE_PAID}/- is received towards the payment of cleaning septic tank /pit for reference no. {RECEIPT_NO}. Please click this link {RECEIPT_LINK} to download the receipt. Thank You. EGOVS.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FSM_SMS_ASSING_DSO_PAY_V2", - "message": "Dear Applicant, Amount of Rs.{#var#}/- is received towards the payment of cleaning septic tank /pit with reference no. {#var#}. You will be notified when an operator is assigned to a request. Please click this link {#var#}{#var#} to download the receipt.EGOVS", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FSM_SMS_CANCELED_CANCEL", - "message": "Dear Applicant, Your request for cleaning the septic tank/pit is cancelled with the reason {FSM_CANCEL_REASON} . Please use this link {NEW_FSM_LINK} to create a new request if needed.\n\nEGOVS", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FSM_SMS_CANCELED_CANCEL_V2", - "message": "Dear Applicant, Your request for cleaning the septic tank/pit is cancelled with the reason {#var#}{#var#} . Please use this link {#var#}{#var#} to create a new request if needed.EGOVS", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FSM_SMS_CITIZEN_FEEDBACK_PENDING_COMPLETED", - "message": "Dear Applicant, Your request for cleaning septic tank/pit is completed. Please take some time to rate us using the link {FSM_APPL_LINK}. EGOVS.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FSM_SMS_CITIZEN_NO_OF_TRIPS_VEHICLE_CAPACITY_CHANGE", - "message": "Dear citizen, the number of trips & vehicle capacity in your application for cleaning septic tank/pit is updated. You will be notified when an operator is assigned to a request. Request is expected to be completed within 48hrs. Thank You. EGOVS.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FSM_SMS_CREATED_CREATE", - "message": "Dear Applicant,Your application for cleaning septic tank/pit is created with application reference no. {2}. You will be notified to make an application fee shortly.Request is expected to be completed within {SLA_HOURS} hrs of making the payment.\n\nEGOVS", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FSM_SMS_CREATED_CREATE_2", - "message": "Dear Applicant,Your application for cleaning septic tank/pit is created with application reference no. {2}. You will be notified to make an application fee shortly.Request is expected to be completed within {SLA_HOURS} hrs of making the payment.\n\nEGOVS", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FSM_SMS_CREATED_CREATE_NEW", - "message": "Dear Applicant,Your application for cleaning septic tank/pit is created with application reference no.{#var#}.You will be notified to make an application fee shortly.Request is expected to be completed within {#var#}hrs of making the payment.EGOVS", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FSM_SMS_CREATED_CREATE_V2", - "message": "Dear Applicant,Your application for cleaning septic tank/pit is created with application reference no.{#var#}.You will be notified to make an application fee shortly.Request is expected to be completed within {#var#}hrs of making the payment.EGOVS", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FSM_SMS_DISPOSAL_IN_PROGRESS_PAY", - "message": "Dear citizen, amount of Rs.{AMOUNT_TO_BE_PAID}/- is received towards the payment of cleaning septic tank /pit for reference no. {RECEIPT_NO}. Please click this link {RECEIPT_LINK} to download the receipt. Thank You. EGOVS.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FSM_SMS_DSO_INPROGRESS_DSO_ACCEPT", - "message": "Dear Applicant, Vehicle {VEHICLE_REG_NO} will be reaching your location to clean the septic tank/pit on {POSSIBLE_SERVICE_DATE} with reference to your application number {2}. You can contact the operator in +91 {DSO_MOBILE_NUMBER}.\n\nEGOVS", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FSM_SMS_DSO_INPROGRESS_PAY", - "message": "Dear citizen, amount of Rs.{AMOUNT_TO_BE_PAID}/- is received towards the payment of cleaning septic tank /pit for reference no. {RECEIPT_NO}. Please click this link {RECEIPT_LINK} to download the receipt. Thank You. EGOVS.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FSM_SMS_DSO_INPROGRESS_UPDATE", - "message": "Dear citizen, your application for cleaning septic tank /pit with application number {2} is updated and the operator has entered the number of trips: {NO_OF_TRIPS}. Please click this link {PAY_LINK} to pay the amount of Rs {AMOUNT_TO_BE_PAID} towards cleaning of your septic tank/pit. Thank You. EGOVS", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FSM_SMS_DSO_REJECTED_DSO_REJECT", - "message": "Dear Applicant, Your request for cleaning the septic tank/pit is rejected with the reason {FSM_DSO_REJECT_REASON} . Please use this link {NEW_FSM_LINK} to create a new request if needed. EGOVS.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FSM_SMS_PENDING_APPL_FEE_PAYMENT_APPLY", - "message": "Dear citizen, Amount of Rs.{AMOUNT_TO_BE_PAID} is your bill towards the cleaning of eptic tank /pit with reference no. {2}. Please make the payment before the request is complete. Please click this link {RECEIPT_LINK} to download the receipt. Thank You. EGOVS.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FSM_SMS_PENDING_APPL_FEE_PAYMENT_APPLY_NEW", - "message": "Dear Applicant, Your application for cleaning septic tank /pit is created with application number {#var#}.Please click this link {#var#} to pay the application fee for processing the application.Request is expected to be completed within {#var#}hrs of making the payment.EGOVS", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FSM_SMS_PENDING_APPL_FEE_PAYMENT_APPLY_V2", - "message": "Dear Applicant, Your application for cleaning septic tank /pit is created with application number {#var#}.Please click this link {#var#}{#var#} to pay the application fee for processing the application.Request is expected to be completed within {#var#}hrs of making the payment.EGOVS", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FSM_SMS_PENDING_APPL_FEE_PAYMENT_SCHEDULE", - "message": "Dear citizen, your application for cleaning septic tank /pit is created with application number {2}, and the operator has entered the number of trips: {NO_OF_TRIPS}. Please click this link {PAY_LINK} to pay the amount of Rs.{AMOUNT_TO_BE_PAID} towards cleaning of your septic tank/pit. Thank You. EGOVS.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FSM_SMS_PENDING_APPL_FEE_PAYMENT_SUBMIT", - "message": "Dear Applicant, Please pay the application fee Rs.{AMOUNT_TO_BE_PAID}/- for cleaning the septic tank/pit with request number {2}. Click this link {PAY_LINK} to make the payment. Request is expected to be completed within {SLA_HOURS} hrs of making the payment.\n\nEGOVS", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FSM_SMS_PENDING_APPL_FEE_PAYMENT_SUBMIT_NEW", - "message": "Dear Applicant, Please pay the application fee Rs.{#var#}/- for cleaning the septic tank/pit with request number {#var#}.Click this link {#var#} to make the payment.Request is expected to be completed within {#var#}hrs of making the payment.EGOVS", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FSM_SMS_PENDING_APPL_FEE_PAYMENT_SUBMIT_V2", - "message": "Dear Applicant, Please pay the application fee Rs.{#var#}/- for cleaning the septic tank/pit with request number {#var#}.Click this link {#var#}{#var#} to make the payment.Request is expected to be completed within {#var#}hrs of making the payment.EGOVS", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FSM_SMS_REJECTED_REJECT", - "message": "Dear Applicant, Your request for cleaning the septic tank/pit is rejected with the reason {FSM_DSO_REJECT_REASON} . Please use this link {NEW_FSM_LINK} to create a new request if needed.\n\nEGOVS", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FSM_SMS_REJECTED_REJECT_V2", - "message": "Dear Applicant, Your request for cleaning the septic tank/pit is rejected with the reason {#var#}{#var#} . Please use this link {#var#}{#var#} to create a new request if needed.EGOVS", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FSM_TIMELINE_SUMMARY", - "message": "Summary", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FSM_TRIP_CHARGES", - "message": "Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FS_AMRITSAR_01", - "message": "Amritsar Firestation", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FS_CITYA_01", - "message": "City A", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FS_JALANDHAR_01", - "message": "Jalandhar Firestation", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FS_MOHALI_01", - "message": "Mohali Firestation", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "Filter", - "message": "Filter", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "FromDate", - "message": "Application created from date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "GENDER_IS_REQUIRED", - "message": "Gender is required", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "GENERAL", - "message": "General", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "GO_TO_HOME", - "message": "HOME", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "GROPERFORMANCEREPORT", - "message": "GRO Performance Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "GROUND.WELL", - "message": "Ground", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "GRP_BILL_DONE", - "message": "Done", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "Gas_Balloon_Advertisement", - "message": "Gas Balloon Advertisement", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "HAMMER_MAN", - "message": "Hammer man", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "HANDICAPPED", - "message": "Handicapped/Disabled", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "HARVESTING_SCORE_NO", - "message": "No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "HARVESTING_SCORE_YES", - "message": "Yes", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "HELPER_WELL_SINKER", - "message": "Helper to Well Sinker", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "HIDE_WORKFLOW_TIMELINE", - "message": "Hide WorkflowTimeline", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "HIGHLY_SKILLED", - "message": "Skilled", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "HIGHLY_SKILLED.FITTER", - "message": "Skilled - Fitter", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "HIGHLY_SKILLED.MASON", - "message": "Skilled - Mason", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "HIGHLY_SKILLED.PAINTER", - "message": "Skilled - Painter", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "HIGHLY_SKILLED.PLUMBER", - "message": "Skilled - Plumber", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "HIGHLY_SKILLED_FITTER", - "message": "Skilled - Fitter", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "HIGHLY_SKILLED_MASON", - "message": "Skilled - Mason", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "HIGHLY_SKILLED_PAINTER", - "message": "Skilled - Painter", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "HIGHLY_SKILLED_PLUMBER", - "message": "Skilled - Plumber", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "HINT_BANK_DETAILS", - "message": "Bank of India, Dhenkanal", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "HOME_SERVICE_REQUESTS", - "message": "My Service Requests", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "HOW_IT_WORKS", - "message": "How it works?", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "HR_COMMON_CREATE_EMPLOYEE_HEADER", - "message": "Create Employee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "HR_HOME_SEARCH_RESULTS_HEADING", - "message": "Search Employee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "HR_UPDATE_PASSWORD_SUCCESS_MESSAGE", - "message": "Employee Password Updated successfully ", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "HUSBAND", - "message": "Husband", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "IDENTITYPROOF.VOTERID", - "message": "Voter ID", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "IFSC_CODE_IS_REQUIRED", - "message": "IFSC Code is required", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "IMMOVABLE___KUTCHA", - "message": "Immovable / Kutcha", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "IMMOVABLE___PUCCA", - "message": "Immovable / Pucca", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "INACTIVE", - "message": "Inactive", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "INBOX_ENTER_BID", - "message": "Enter Application No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "INBOX_QUICK_ACTION", - "message": "QUICK ACTION", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "INBOX_SORT_ICON", - "message": "Sort by SLA", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "INDEPENDENTPROPERTY", - "message": "Independent Building", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "IND_ALREADY_ADDED_TO_THE_TABLE", - "message": "Individual is already added to the list", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "INITIATED", - "message": "Pending for Stakeholders update", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "INPROGRESS", - "message": "Stakeholders's submission pending", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "INVALIDACCESSTOKENEXCEPTION", - "message": "Session Expired", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "INVALID_CREDENTIALS", - "message": "Invalid Credentials", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "INVALID_EMAIL", - "message": "Invalid Email", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "INVALID_LOGIN_CREDENTIALS", - "message": "Invalid Login Credentials", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "INWORKFLOW", - "message": "In Workflow", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "IN_PROGRESS_LABEL", - "message": "In Progress", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "IS_AVG_COMPLAINT_RESOLUTION_TIME", - "message": "is the average complaint resolution time", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "Invalid Address", - "message": "Invalid Address", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "Invalid Email", - "message": "Invalid Email", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "Invalid_Address", - "message": "Invalid Address", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "Invalid_Email", - "message": "Invalid Email", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1", - "message": "Ashok Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC10", - "message": "Gurbachan Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC100", - "message": "Dera Preet Nagar Jhuggia", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1000", - "message": "Maqsudan Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1001", - "message": "Nagra Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1002", - "message": "Jawala Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1003", - "message": "New Jawala Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1004", - "message": "Patel Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1005", - "message": "New Patel Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1006", - "message": "Guru Ravidass Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1007", - "message": "Bhupinder Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1008", - "message": "Ashok Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1009", - "message": "Nagra Pind", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC101", - "message": "Miya Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1010", - "message": "New Nagra", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1011", - "message": "Shital Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1012", - "message": "New Shital Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1013", - "message": "Jugian", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1014", - "message": "Sham Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1015", - "message": "Amar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1016", - "message": "Babu Labh Singh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1017", - "message": "Rattan Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1018", - "message": "New Rattan Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1019", - "message": "Shaheed Babu Labh Singh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC102", - "message": "Shalimar Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1020", - "message": "New Shaheed Babu Labh Singh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1021", - "message": "Madhuban Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1022", - "message": "Gujrati Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1023", - "message": "Jagwali Kathi Near Canal", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1024", - "message": "Ragu Nath Mandir Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1025", - "message": "Kacha Kot", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1026", - "message": "Old Green Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1027", - "message": "Green Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1028", - "message": "Raja Garden", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1029", - "message": "Raja Garden Extension", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC103", - "message": "New Dashmesh Nagar Part", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1030", - "message": "V.I.P Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1031", - "message": "Butti Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1032", - "message": "Gagan Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1033", - "message": "Bhai Gurdass Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1034", - "message": "Baba Bachittar Ji Nagar Mithu Basti", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1035", - "message": "Tara Singh Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1036", - "message": "New Rasila Nagar Basti Danishmandan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1037", - "message": "Dilbagh Nagar Ext.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1038", - "message": "Rasila Nagar Phase 2 Danishmandan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1039", - "message": "Rasila Nagar Basti Danishmandan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC104", - "message": "Kaki Pind", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1040", - "message": "Begampura Colony Danishmandan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1041", - "message": "Baba Budha Ji Nagar Mithu Nagar Basti", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1042", - "message": "Ekta Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1043", - "message": "New Shastri Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1044", - "message": "Satnam Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1045", - "message": "Anoop Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1046", - "message": "Bal bro Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1047", - "message": "Badhri Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1048", - "message": "Badhri Colony Phase (2)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1049", - "message": "Ram Shernam Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC105", - "message": "New Joginder Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1050", - "message": "Peer Das Basti", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1051", - "message": "Kamar Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1052", - "message": "Panu Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1053", - "message": "Paras Estate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1054", - "message": "Paras Estate 2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1055", - "message": "Maharaja Garden", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1056", - "message": "Harbanse Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1057", - "message": "5 Peer Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1058", - "message": "Anoop Nagar (2)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1059", - "message": "Sher Singh Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC106", - "message": "Part of Joginder Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1060", - "message": "Roshan Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1061", - "message": "Qilla Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1062", - "message": "Kathera Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1063", - "message": "Gautam Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1064", - "message": "New Gautam Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1065", - "message": "Kabir Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1066", - "message": "Guru Ram Dass Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1067", - "message": "Mata Sant Kaur Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1068", - "message": "City A Prime", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1069", - "message": "City A Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC107", - "message": "New Beant Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1070", - "message": "City A Kunj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1071", - "message": "Rajan Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1072", - "message": "Kailash Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1073", - "message": "Balmik Mohalla Bawa Khel", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1074", - "message": "Akal Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1075", - "message": "Basti Bawa Khel (main)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1076", - "message": "Raj Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1077", - "message": "New Raj Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1078", - "message": "Kabir Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1079", - "message": "Bank Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC108", - "message": "Part of Beant Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1080", - "message": "Basti Bawa Khel", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1081", - "message": "Katehara Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1082", - "message": "New Rattan Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1083", - "message": "Guru Nanak Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1084", - "message": "New Guru Nanak Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1085", - "message": "Shiv Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1086", - "message": "Baba Kahandass Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1087", - "message": "Village Nagara", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1088", - "message": "Abinandan Park", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1089", - "message": "National Park", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC109", - "message": "Gulmarg Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1090", - "message": "Ashok Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1091", - "message": "Vivek Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1092", - "message": "Green Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1093", - "message": "Shanti Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1094", - "message": "Viveka Nand Park", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1095", - "message": "Subash Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1096", - "message": "Golden Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1097", - "message": "Navyug Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1098", - "message": "New Shiv Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1099", - "message": "Maqsudan Byepass", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC11", - "message": "Indra Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC110", - "message": "Mehtab Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1100", - "message": "Mahasha Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1101", - "message": "Anand Ngr", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1102", - "message": "New Anand Ngr", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1103", - "message": "Janta Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1104", - "message": "Navnirman Janta Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1105", - "message": "Issa Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1106", - "message": "Guru Nanak Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1107", - "message": "Aara Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1108", - "message": "Surat Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1109", - "message": "Master Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC111", - "message": "Professor Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1110", - "message": "Angad Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC1111", - "message": "Amandip Avenue.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC112", - "message": "Mohan Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC113", - "message": "Part of Ladhewali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC114", - "message": "Part of New Dashmesh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC115", - "message": "Dhilwan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC116", - "message": "Dhanowali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC117", - "message": "Sanik Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC118", - "message": "Old Dashmesh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC119", - "message": "Ajeet Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC12", - "message": "Sant Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC120", - "message": "Guru Anged Dev Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC121", - "message": "Sunder Nagar Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC122", - "message": "Kohinoor Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC123", - "message": "Sunny Prime", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC124", - "message": "Arman Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC125", - "message": "Johan Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC126", - "message": "Ganesh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC127", - "message": "New Ganesh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC128", - "message": "Masi Mohalla Dakoha", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC129", - "message": "Tarun Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC13", - "message": "Kalia Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC130", - "message": "Kaki Pind", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC131", - "message": "Arman Nagar 2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC132", - "message": "Birring Pind-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC133", - "message": "Birring Pind-2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC134", - "message": "Mohinder Singh Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC135", - "message": "Mehnga Singh Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC136", - "message": "Dada Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC137", - "message": "Peace Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC138", - "message": "Bunga Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC139", - "message": "Golden Colony (Phase 1)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC14", - "message": "Kalia Colony Ph-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC140", - "message": "Golden Colony (Phase 2)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC141", - "message": "Golden Colony (Phase 3)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC142", - "message": "Model Estate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC143", - "message": "Defence Colony (Phase 1)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC144", - "message": "New Defence Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC145", - "message": "Paragpura ( Old Phagwara Road)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC146", - "message": "Paragpura ( Pind )", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC147", - "message": "Paragpura ( Abadi Near Railway fatak )", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC148", - "message": "Ratti Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC149", - "message": "Thakur Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC15", - "message": "Kalia Colony PH-2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC150", - "message": "Ram Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC151", - "message": "Chotte Ram Bagh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC152", - "message": "Panch Sheel Colony ( Half )", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC153", - "message": "Bhullar Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC154", - "message": "Modern State", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC155", - "message": "Yadav Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC156", - "message": "Baba Budha Ji Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC157", - "message": "Bhuda Ji Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC158", - "message": "Shaheed Gurvinder Singh Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC159", - "message": "National Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC16", - "message": "Kalia Colony PH-3", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC160", - "message": "Ravidass Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC161", - "message": "Guru Nanak Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC162", - "message": "Jagjit Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC163", - "message": "Old Kaki Pind", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC164", - "message": "Village Dakoha", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC165", - "message": "Baba Budha Singh Nagar Street No 1 to 9", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC166", - "message": "Ekta Nagar PH-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC167", - "message": "Ekta Nagar PH-2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC168", - "message": "Joginder Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC169", - "message": "Panch Rattan Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC17", - "message": "Kalia Farm", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC170", - "message": "New Defence Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC171", - "message": "Beant Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC172", - "message": "Old Beant Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC173", - "message": "PSEB Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC174", - "message": "BB Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC175", - "message": "Half Rama Mandi Main Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC176", - "message": "Khateek Market Ramamandi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC177", - "message": "Valmik Mohalla Ramamandi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC178", - "message": "Krishna Sweet Wali Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC179", - "message": "Palwon Wali Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC18", - "message": "Guru Amar Dass Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC180", - "message": "Fouji Wali Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC181", - "message": "Bhatra Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC182", - "message": "Aytar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC183", - "message": "Guru Nanak Pura East", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC184", - "message": "Guru Nanak Pura West", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC185", - "message": "Chugitti", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC186", - "message": "Ekta Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC187", - "message": "P.A.P", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC188", - "message": "Railway Colony-3", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC189", - "message": "Rajinder Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC19", - "message": "Guru Amar Dass Nagar 2- Marla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC190", - "message": "Preet Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC191", - "message": "Sehgal Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC192", - "message": "Kirti Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC193", - "message": "Mohalla Ladowali Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC194", - "message": "Mohyal Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC195", - "message": "Link Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC196", - "message": "Hargobind Pura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC197", - "message": "Ranjit Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC198", - "message": "New Rajinder Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC199", - "message": "Police Line", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC2", - "message": "Bank Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC20", - "message": "New Guru Amar Dass Nagar Ext.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC200", - "message": "Guru Nanak Pura (West) Street No. 1 to 8", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC201", - "message": "New Guru Nanak Pura (West)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC202", - "message": "Bhojowal Patti (Chugittee)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC203", - "message": "Bharat Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC204", - "message": "Satnam Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC205", - "message": "Chugittee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC206", - "message": "Ved Ram Parkash Street", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC207", - "message": "Guru Gobind Singh Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC208", - "message": "Sureya Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC209", - "message": "Komal Vihar Old & New", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC21", - "message": "Guru Amar Dass Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC210", - "message": "Bashirpura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC211", - "message": "Thakur Singh Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC212", - "message": "Royal Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC213", - "message": "Jhansi Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC214", - "message": "Gobind Garh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC215", - "message": "Arjun Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC216", - "message": "40 Quarter", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC217", - "message": "Dashmesh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC218", - "message": "New Dashmesh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC219", - "message": "Sant Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC22", - "message": "Venus Valley", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC220", - "message": "Shanti Pura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC221", - "message": "New Baradari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC222", - "message": "Poultry Form Area", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC223", - "message": "Prem Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC224", - "message": "Mandi Fenton Garg", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC225", - "message": "Partap Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC226", - "message": "Rishi Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC227", - "message": "Brahm Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC228", - "message": "Mandi Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC229", - "message": "Railway Colony No. 1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC23", - "message": "Baba Mohan Dass Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC230", - "message": "Guard Colony No-2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC231", - "message": "Old Jawahar Nagar Single Lane", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC232", - "message": "Central Town", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC233", - "message": "Krishan Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC234", - "message": "Old Jawahar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC235", - "message": "Master Tara Singh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC236", - "message": "P & T Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC237", - "message": "Riaz Pura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC238", - "message": "Ramesh Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC239", - "message": "Shiva Ji Park", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC24", - "message": "Salempur Muslmana", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC240", - "message": "Netaji Park", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC241", - "message": "Civil Lines", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC242", - "message": "Mohalla Makhdumpura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC243", - "message": "Mohalla Shastri Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC244", - "message": "Fauji Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC245", - "message": "Shivalik Apartments", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC246", - "message": "Venus Apartments", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC247", - "message": "B-Block Apartments", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC248", - "message": "Paradise Apartments", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC249", - "message": "Gurkirpa Apartments", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC25", - "message": "Swarn Park-1Swarn Prak- 2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC250", - "message": "Ganga Apartments", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC251", - "message": "Nakodar Road Market", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC252", - "message": "Lajpat Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC253", - "message": "Lajpat Nagar Market", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC254", - "message": "Abadpura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC255", - "message": "Balmiki Colony Link Road Abadpura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC256", - "message": "Major Bahadur Singh Nagar & Marg", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC257", - "message": "New Model Town Mall Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC258", - "message": "New Jawahar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC259", - "message": "Guru Nanak Mission Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC26", - "message": "Sanjay Gandhi Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC260", - "message": "Badridass Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC261", - "message": "Purani Baradari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC262", - "message": "Skylark Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC263", - "message": "Civil Lines", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC264", - "message": "Sehdev Market", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC265", - "message": "Namdev Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC266", - "message": "G.T Road Market", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC267", - "message": "Shastri Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC268", - "message": "Sanjay Gandhi Market", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC269", - "message": "New Courts Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC27", - "message": "Gadaipur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC270", - "message": "Police Line Market", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC271", - "message": "BMC Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC272", - "message": "Market Opposite Bus Stand", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC273", - "message": "Link Road Model Town", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC274", - "message": "Valmiki Colony Major Bahadur Singh Marg", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC275", - "message": "Radio Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC276", - "message": "New Jawahar Nagar (Point)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC277", - "message": "Green Park", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC278", - "message": "Mota Singh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC279", - "message": "Modern Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC28", - "message": "Raja Garden", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC280", - "message": "Gurjaipal Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC281", - "message": "Wariam Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC282", - "message": "Gian Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC283", - "message": "New Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC284", - "message": "Defence Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC285", - "message": "Defence Colony Ext.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC286", - "message": "Chotti Baradari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC287", - "message": "Jaswant Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC288", - "message": "Roop Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC289", - "message": "Atwal Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC29", - "message": "Ram Bagh Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC290", - "message": "Atwal House", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC291", - "message": "New Hardyal Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC292", - "message": "Hardyal Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC293", - "message": "Rubi Hospital", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC294", - "message": "BSF Camp", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC295", - "message": "New Green Park", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC296", - "message": "Railway Quarter ( Cool Road)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC297", - "message": "Garha/Shiv Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC298", - "message": "Dayanand chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC299", - "message": "Rattan Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC3", - "message": "Sarabha Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC30", - "message": "Dada Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC300", - "message": "Sark Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC301", - "message": "Valmiki Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC302", - "message": "Ravi dass Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC303", - "message": "Makhan Ramwali Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC304", - "message": "School wali Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC305", - "message": "Jiwan Singh Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC306", - "message": "Tanki Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC307", - "message": "Phagu Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC308", - "message": "Sarpanch wali Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC309", - "message": "Main Bazar Rama Mandir", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC31", - "message": "Industrial Area", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC310", - "message": "Main Bazar Gurudwara Singh Sabha", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC311", - "message": "Garha Vehanda", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC312", - "message": "Phagu Mohalla Ram Mandir wali Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC313", - "message": "Phagwari Mohalla Near Janj Ghar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC314", - "message": "Phagwari Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC315", - "message": "Dr. Mana Wali Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC316", - "message": "Old Div. 7 Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC317", - "message": "Cantt. Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC318", - "message": "Cantt. Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC319", - "message": "New Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC32", - "message": "Focal Point", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC320", - "message": "Jaswant Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC321", - "message": "Jawant Nagar near Gurudwara", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC322", - "message": "Jaswant Nagar Gali No. 1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC323", - "message": "Jaswant Nagar Gali Thekewali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC324", - "message": "Jaswant Nagar Gali no. 100 3 to 5", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC325", - "message": "Jaswant Nagar Gali 2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC326", - "message": "Golden Aveune-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC327", - "message": "Golden Avenue-2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC328", - "message": "Gurjeet Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC329", - "message": "Dashmesh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC33", - "message": "Transport Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC330", - "message": "Chanchal Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC331", - "message": "Chotti Baradari Part-2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC332", - "message": "Idgah Mohalla Garha", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC333", - "message": "Sarak Mohalla Garha", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC334", - "message": "Guru Diwan Nagar Garha", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC335", - "message": "Tara Chand Colony Garha", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC336", - "message": "Chintpurni Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC337", - "message": "Geeta Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC338", - "message": "Garha", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC339", - "message": "Labour Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC34", - "message": "Udyog Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC340", - "message": "Kunowali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC341", - "message": "Urban Estate Ph-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC342", - "message": "M.I.G", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC343", - "message": "Urban Estate Phase Half", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC344", - "message": "Sabowal Old.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC345", - "message": "Isherpuri Colony (Some Part)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC346", - "message": "Urban Estate 2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC347", - "message": "Sabowal", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC348", - "message": "Lahor Nangal", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC349", - "message": "Isherpuri Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC35", - "message": "Parshuram Pur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC350", - "message": "Ranjit Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC351", - "message": "Kalgidhar Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC352", - "message": "New Kalgidhar Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC353", - "message": "Ravinder Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC354", - "message": "Dashmesh Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC355", - "message": "Karol Bagh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC356", - "message": "Vijay Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC357", - "message": "Guru Ram Dass Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC358", - "message": "Baba Makhan Shah Lubana", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC359", - "message": "Friends Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC36", - "message": "Vadda Saipur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC360", - "message": "Officer Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC361", - "message": "D.C Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC362", - "message": "White Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC363", - "message": "Punjabi Bagh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC364", - "message": "Lahor Nagar Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC365", - "message": "Happy Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC366", - "message": "New Isherpuri", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC367", - "message": "Universal Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC368", - "message": "Singh Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC369", - "message": "Engineer Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC37", - "message": "Reru", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC370", - "message": "Green Garden Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC371", - "message": "Ravinder Nagar Extension", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC372", - "message": "Punjabi Bagh Extension", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC373", - "message": "Model Town", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC374", - "message": "Parkash Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC375", - "message": "Guru Nanak Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC376", - "message": "Guru Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC377", - "message": "Rishi Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC378", - "message": "Jyoti Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC379", - "message": "Shankar Garden", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC38", - "message": "Hargobind Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC380", - "message": "Lal Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC381", - "message": "Satkartar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC382", - "message": "Ravinder Nagar Extension", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC383", - "message": "Cheema Nagar Ext.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC384", - "message": "Vasant Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC385", - "message": "Vasant Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC386", - "message": "Vasant Vihar Ext.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC387", - "message": "Urban Estate Ph-2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC388", - "message": "Model Town", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC389", - "message": "New Jawahar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC39", - "message": "Punjabi Bagh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC390", - "message": "Lajpat Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC391", - "message": "Dada Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC392", - "message": "Green Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC393", - "message": "Green Model Town", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC394", - "message": "Kewal Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC395", - "message": "Indra Park", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC396", - "message": "Cheema Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC397", - "message": "Shiv Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC398", - "message": "Gurmeet Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC399", - "message": "Ramneek Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC4", - "message": "Paschim Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC40", - "message": "Bachint Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC400", - "message": "Bank Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC401", - "message": "Bank Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC402", - "message": "Raja Garden", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC403", - "message": "Keshev Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC404", - "message": "Ekta Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC405", - "message": "New Raja Garden", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC406", - "message": "New Raja Garden Extension", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC407", - "message": "Bhai Samund Singh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC408", - "message": "New Arora Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC409", - "message": "Mithapur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC41", - "message": "Parsuram Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC410", - "message": "King Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC411", - "message": "Green Wood Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC412", - "message": "Ram Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC413", - "message": "Sewerage Board Quarter", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC414", - "message": "75 Garden Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC415", - "message": "Panch Sheel Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC416", - "message": "Mayor Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC417", - "message": "New Light Colony Phase -1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC418", - "message": "Bank Enclave Phase-2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC419", - "message": "Residence Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC42", - "message": "Kahanpur Abadi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC420", - "message": "Sudhama Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC421", - "message": "New Sudhama Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC422", - "message": "Rocky Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC423", - "message": "New Light Colony Phase-2 (Sudhama Vihar)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC424", - "message": "VIP Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC425", - "message": "Sadhu Singh Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC426", - "message": "Red Face Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC427", - "message": "New Garden Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC428", - "message": "Bhai Banno Ji Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC429", - "message": "Gill Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC43", - "message": "Ramneek Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC430", - "message": "Parkash Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC431", - "message": "Khurla Kingra", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC432", - "message": "Tower Town Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC433", - "message": "Silver Residency", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC434", - "message": "Tower Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC435", - "message": "Guru Nanak Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC436", - "message": "Boota Mandi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC437", - "message": "Boota Pind (Back Side Dr.B.R. Ambedkar Park", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC438", - "message": "Swami Lal JI Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC439", - "message": "New Green Park", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC44", - "message": "Baba Deep Singh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC440", - "message": "Khurla Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC441", - "message": "Professor Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC442", - "message": "Army Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC443", - "message": "Mann Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC444", - "message": "Chopra Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC445", - "message": "Khurla Kingra (Back Side Sai Mandir)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC446", - "message": "Door Darshan Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC447", - "message": "Bombay Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC448", - "message": "Friends Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC449", - "message": "SAS Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC45", - "message": "Nurpur Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC450", - "message": "SAS Nagar Extension", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC451", - "message": "New Green Model Town", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC452", - "message": "Palam Rajeet Apartments", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC453", - "message": "Bank Enclave Part 1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC454", - "message": "Kuki Dhab", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC455", - "message": "Green Woods Apartments", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC456", - "message": "Park View Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC457", - "message": "Housing Board Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC458", - "message": "Satnam Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC459", - "message": "Mann Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC46", - "message": "Sunder Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC460", - "message": "Punjabi Bagh Wadala Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC461", - "message": "Silver heights", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC462", - "message": "Partap Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC463", - "message": "Guru Gobind Singh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC464", - "message": "Guru Arjan dev Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC465", - "message": "G.T.B Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC466", - "message": "Garden Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC467", - "message": "G.T.B Nagar extension", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC468", - "message": "GTB Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC469", - "message": "F.C.I Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC47", - "message": "Hargobind Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC470", - "message": "Chanakya Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC471", - "message": "New GTB Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC472", - "message": "Vivek Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC473", - "message": "Green Model Town", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC474", - "message": "Boota Pind", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC475", - "message": "Wadala Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC476", - "message": "Main Road Abadpura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC477", - "message": "Gali No. 2 To Gali No. 6", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC478", - "message": "Preet Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC479", - "message": "Rameshwar Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC48", - "message": "Gulmarg Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC480", - "message": "Sh. Guru Ravidass Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC481", - "message": "Tubewell wali Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC482", - "message": "Labour Court Gali Panj Peer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC483", - "message": "Maharishi Valmiki Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC484", - "message": "Taneja New Abadpura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC485", - "message": "Avtar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC486", - "message": "New Avtar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC487", - "message": "New Suraj Ganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC488", - "message": "Pishori Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC489", - "message": "Naqvi Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC49", - "message": "Bachint Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC490", - "message": "Dairy Kalu Ram-O Band Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC491", - "message": "Bhargo Camp-Add", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC492", - "message": "Pishori Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC493", - "message": "Link Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC494", - "message": "Abadpura Gali No.1 to 2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC495", - "message": "New Suraj Ganj –west", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC496", - "message": "Gali No-10-B-11-B", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC497", - "message": "Bhargo Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC498", - "message": "Bhargo Camp", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC499", - "message": "Ravidass Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC5", - "message": "Amrit Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC50", - "message": "Sarabha Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC500", - "message": "Channan Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC501", - "message": "Boota Mandi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC502", - "message": "Silver Oak Apartments", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC503", - "message": "Nakodar Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC504", - "message": "Chappli Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC505", - "message": "Sant Pura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC506", - "message": "Arya Samaj Mandir", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC507", - "message": "Valmiki Mandir", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC508", - "message": "Chapal Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC509", - "message": "Kabir Mandir", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC51", - "message": "Chack Hussiana", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC510", - "message": "Gain Giri Mandir", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC511", - "message": "Nirankari Bhawan Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC512", - "message": "Ravidass Dham", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC513", - "message": "Kanth Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC514", - "message": "State Bank Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC515", - "message": "Ravidass Mandir", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC516", - "message": "Sharif Pura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC517", - "message": "Tokri Chowk Bhargo Camp", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC518", - "message": "Gali Mirasiya Wali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC519", - "message": "Gali Somnath Aara Wala", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC52", - "message": "Lamba Pind", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC520", - "message": "Prem Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC521", - "message": "Gali Ravi Karyana Store", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC522", - "message": "Gali Sharma Model School", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC523", - "message": "Chune Wali Gali Boota Mandi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC524", - "message": "Gali Pawan Koushal", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC525", - "message": "Bhargo Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC526", - "message": "Nive Passe Bhargo Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC527", - "message": "Azad Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC528", - "message": "New Suraj Ganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC529", - "message": "New Suraj Ganj (West)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC53", - "message": "Chandigarh Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC530", - "message": "Model House Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC531", - "message": "Main Bazar Bhargo", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC532", - "message": "Mohalla Amar Saw Mill", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC533", - "message": "Bhargo Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC534", - "message": "Shamshan Ghat Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC535", - "message": "Mohalla Vari Vatt", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC536", - "message": "Bhargo Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC537", - "message": "Tej Mohan Nagar Gali No-5 to Gali No-11", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC538", - "message": "New Ashok Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC539", - "message": "Narayan Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC54", - "message": "Succhi Pind", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC540", - "message": "Ashok Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC541", - "message": "New Sant Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC542", - "message": "Sant Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC543", - "message": "Nijatam Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC544", - "message": "Chouhan Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC545", - "message": "Ganesh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC546", - "message": "Basti Nau", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC547", - "message": "Bank Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC548", - "message": "Chaar Marla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC549", - "message": "Block-A,B,C,D", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC55", - "message": "Hardial Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC550", - "message": "Bhagat Singh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC551", - "message": "Rajput Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC552", - "message": "Taranwali Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC553", - "message": "Mohalla Kot", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC554", - "message": "Uttam Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC555", - "message": "Mohalla Chaiaam", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC556", - "message": "Tej Mohan Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC557", - "message": "Sant Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC558", - "message": "Siddhartha Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC559", - "message": "New Abadi Jallowal", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC56", - "message": "New Hardial Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC560", - "message": "Kay Pee Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC561", - "message": "New Model House", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC562", - "message": "Model Gram Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC563", - "message": "Gahi Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC564", - "message": "Jaina Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC565", - "message": "New Ghai Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC566", - "message": "Chiragpura Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC567", - "message": "New Deol Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC568", - "message": "New Dashmesh Nagar Block-A", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC569", - "message": "New Dashmesh Nagar Block-C", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC57", - "message": "Hardip Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC570", - "message": "Tilak Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC571", - "message": "Kartar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC572", - "message": "New Kartar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC573", - "message": "Udye Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC574", - "message": "Deol Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC575", - "message": "New Deol Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC576", - "message": "Aman Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC577", - "message": "Major Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC578", - "message": "Pink City Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC579", - "message": "Kot Sadiq Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC58", - "message": "Judge Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC580", - "message": "Khara Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC581", - "message": "Kot Sadiq", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC582", - "message": "Mast Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC583", - "message": "Thind Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC584", - "message": "Sai Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC585", - "message": "BT Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC586", - "message": "Kanshi Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC587", - "message": "Green Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC588", - "message": "Geeta Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC589", - "message": "New Geeta Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC59", - "message": "Prem Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC590", - "message": "Ishwar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC591", - "message": "New Dashmesh Nagar B Block", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC592", - "message": "Dordarshan Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC593", - "message": "Tower Enclave Phase 2nd", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC594", - "message": "Hamilton Tower", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC595", - "message": "Guru Ravidass Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC596", - "message": "New Ravidass Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC597", - "message": "Shiva Ji Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC598", - "message": "New Shiva Ji Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC599", - "message": "Lasuri Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC6", - "message": "Chak Jinda", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC60", - "message": "Gulmohar City", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC600", - "message": "New Lasuri Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC601", - "message": "Begampura Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC602", - "message": "Main Adda Basti Danishmandan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC603", - "message": "Main Bazar Basti Danishmandan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC604", - "message": "Valmiki Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC605", - "message": "Chandigarh Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC606", - "message": "New Chandigarh Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC607", - "message": "Chungi Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC608", - "message": "Chungi No-9", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC609", - "message": "Tagri Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC61", - "message": "Three Star Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC610", - "message": "Guru Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC611", - "message": "Surjit Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC612", - "message": "Basti Sheikh + Danishmandan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC613", - "message": "Kattra Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC614", - "message": "Guru Sant Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC615", - "message": "Guru Nanak Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC616", - "message": "Lasuri Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC617", - "message": "Baldev Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC618", - "message": "Satkartar Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC619", - "message": "Ujala Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC62", - "message": "Soma Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC620", - "message": "Mohindra Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC621", - "message": "Valmiki Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC622", - "message": "Vada Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC623", - "message": "Banian Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC624", - "message": "Satran Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC625", - "message": "Mochian Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC626", - "message": "Tarkhana Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC627", - "message": "Telian Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC628", - "message": "Road Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC629", - "message": "Manjit Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC63", - "message": "Mata Salani Mandir", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC630", - "message": "Chet Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC631", - "message": "Janak Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC632", - "message": "Chaian Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC633", - "message": "Kot Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC634", - "message": "Gulabia Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC635", - "message": "Bara Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC636", - "message": "Hargobind Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC637", - "message": "Gurditta Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC638", - "message": "Borah Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC639", - "message": "Sethia Wali Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC64", - "message": "Baba Gadila Sham colony (Succhi Pind)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC640", - "message": "Dhankian Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC641", - "message": "Jairath Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC642", - "message": "Bagh Ahluwalia", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC643", - "message": "Kamaliya Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC644", - "message": "Gobind Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC645", - "message": "New Gobind Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC646", - "message": "Dilbagh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC647", - "message": "120' Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC648", - "message": "Shastri Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC649", - "message": "Old Shastri Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC65", - "message": "Deep Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC650", - "message": "Old Dusshara Ground", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC651", - "message": "Surya Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC652", - "message": "Basti Gujan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC653", - "message": "Ambedkar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC654", - "message": "Shah Kuli Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC655", - "message": "Virdi Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC656", - "message": "Valmiki Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC657", - "message": "Vada Vehra", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC658", - "message": "Sunyara Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC659", - "message": "Jangra Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC66", - "message": "New Upkar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC660", - "message": "Machi Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC661", - "message": "Harkrishan Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC662", - "message": "Manjit Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC663", - "message": "New Dilbagh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC664", - "message": "Dilbagh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC665", - "message": "Lahoria Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC666", - "message": "Kot Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC667", - "message": "Binda Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC668", - "message": "Doriya Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC669", - "message": "Board Wali Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC67", - "message": "Moh Kot Ram Dass ( Abadi )", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC670", - "message": "Main Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC671", - "message": "Shibu Mandir Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC672", - "message": "New Adarsh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC673", - "message": "J.P.Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC674", - "message": "Adarsh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC675", - "message": "J.P. Nagar Extension", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC676", - "message": "Basti Nau", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC677", - "message": "Krishan Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC678", - "message": "Basti Mithu", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC679", - "message": "Patwar Khana", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC68", - "message": "Karol Bagh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC680", - "message": "Conal Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC681", - "message": "Harbans Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC682", - "message": "New Harbans Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC683", - "message": "New Harbans Nagar Ext.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC684", - "message": "Adarsh Nagar up to Satyam Hospital Street", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC685", - "message": "New Vijay Nagar Left Side", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC686", - "message": "Tagore Nagar Right Side St.NO.7", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC687", - "message": "Dyal Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC688", - "message": "Gujral Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC689", - "message": "Shakti Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC69", - "message": "Rail Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC690", - "message": "Vijay Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC691", - "message": "S.U.S Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC692", - "message": "Ajit Singh Nagar up to Nakodar Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC693", - "message": "Niwan Suraj Gunj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC694", - "message": "Islam Gunj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC695", - "message": "Islamabad", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC696", - "message": "Mission Compound Left Side Batra Hospital", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC697", - "message": "Makhdoom Pura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC698", - "message": "Dhobi Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC699", - "message": "Mohalla Pacca Bagh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC7", - "message": "Toor Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC70", - "message": "Patel Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC700", - "message": "Ram Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC701", - "message": "Saidan Gate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC702", - "message": "Chowk Kade Shah", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC703", - "message": "Batakh Wala Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC704", - "message": "Rainak Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC705", - "message": "Naya Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC706", - "message": "Shaheed Udham Singh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC707", - "message": "Flats", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC708", - "message": "Civil Hospital", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC709", - "message": "E.S.I Hospital", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC71", - "message": "Sangam Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC710", - "message": "E.S.I Hospital Flats", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC711", - "message": "Milap Chowk to G.P.O", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC712", - "message": "G.P.O to Shastri Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC713", - "message": "Shastri to Milap Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC714", - "message": "Milap to Sunrise Hotal", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC715", - "message": "Sunrise Hotal to Partap Bagh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC716", - "message": "Partap Bagh to Phagwara Gate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC717", - "message": "Naya Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC718", - "message": "Saiden Gate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC719", - "message": "Peer Bodla Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC72", - "message": "Preet Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC720", - "message": "Khazuria Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC721", - "message": "Guru Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC722", - "message": "Neehya Band Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC723", - "message": "Jybal Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC724", - "message": "Neem Wali Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC725", - "message": "Tanki Wali Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC726", - "message": "Khodiya Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC727", - "message": "Kotpakshiya", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC728", - "message": "Hotel Raj Mahal back Side Gurudawara and Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC729", - "message": "Pakka Bagh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC73", - "message": "Mann Singh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC730", - "message": "Chohal Bagh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC731", - "message": "Hindsamachar Ground", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC732", - "message": "Mina Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC733", - "message": "Tikki Bagh Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC734", - "message": "Ucha Suraj Gunj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC735", - "message": "Jyoti chowk to preet Hotel", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC736", - "message": "Charanjit Pura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC737", - "message": "Ajit Pura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC738", - "message": "Jatt Pura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC739", - "message": "Valmiki Gate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC74", - "message": "Suchi Pind", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC740", - "message": "Malka Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC741", - "message": "Mohindru Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC742", - "message": "Mitha Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC743", - "message": "Telwali Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC744", - "message": "Chota Ali Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC745", - "message": "Alli Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC746", - "message": "Bansa Wala Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC747", - "message": "Chajju Ram Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC748", - "message": "Kotwali Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC749", - "message": "Malora Muhalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC75", - "message": "Indian Oil Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC750", - "message": "Nauhrian Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC751", - "message": "Kot Bahadur Khan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC752", - "message": "Sheikhan Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC753", - "message": "Sudan Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC754", - "message": "Deen Dayal Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC755", - "message": "Prem Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC756", - "message": "New Prem Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC757", - "message": "Sat Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC758", - "message": "Chandan Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC759", - "message": "Fateh Puri", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC76", - "message": "Green County", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC760", - "message": "Vikrampura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC761", - "message": "Subash Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC762", - "message": "Partap Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC763", - "message": "Purani Kachehri", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC764", - "message": "Piplan Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC765", - "message": "Chadhian Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC766", - "message": "Lawan Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC767", - "message": "Charjian Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC768", - "message": "Mitha Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC769", - "message": "Bhairon Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC77", - "message": "Ladhewali Pind", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC770", - "message": "Quilla Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC771", - "message": "Qazi Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC772", - "message": "Khingran Gate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC773", - "message": "Mughlan Dhiki", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC774", - "message": "Prem Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC775", - "message": "Purian Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC776", - "message": "Sehglan Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC777", - "message": "Modian Tod", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC778", - "message": "Thapra Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC779", - "message": "Mai Hiran Gate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC78", - "message": "Chokan Kalan Pind", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC780", - "message": "Phagwara Gate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC781", - "message": "Rasta Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC782", - "message": "Biliya Mandir", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC783", - "message": "Talhi Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC784", - "message": "Baghia Whra", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC785", - "message": "Quda Shah Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC786", - "message": "Phir Bodhla Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC787", - "message": "Kalo Vani Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC788", - "message": "Atari Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC789", - "message": "Nacha Badh Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC79", - "message": "Nagal Shama Pind", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC790", - "message": "Kanchia Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC791", - "message": "Qazi Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC792", - "message": "Qilla Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC793", - "message": "Shivraz Garh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC794", - "message": "Panj Peer Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC795", - "message": "Bhagat Singh Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC796", - "message": "Railway Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC797", - "message": "Rishi Nagar Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC798", - "message": "Partap Bagh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC799", - "message": "Awa Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC8", - "message": "Navjot Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC80", - "message": "Datar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC800", - "message": "Kot Kishan Chand", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC801", - "message": "Jagat Pura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC802", - "message": "Dhan Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC803", - "message": "Rishi Nagar (5 Gali)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC804", - "message": "Kishanpura (5 Gali)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC805", - "message": "Inderparsth Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC806", - "message": "Arya Samaj Mandir", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC807", - "message": "Bheem Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC808", - "message": "Sansi Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC809", - "message": "Dolatpuri", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC81", - "message": "Khehra Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC810", - "message": "Kapoor Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC811", - "message": "Ajit Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC812", - "message": "Amrik Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC813", - "message": "New Ajit Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC814", - "message": "New Amrik Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC815", - "message": "Baba Math Shah", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC816", - "message": "Santoshi Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC817", - "message": "Madrasi Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC818", - "message": "Qazi Mandi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC819", - "message": "Kishan Pura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC82", - "message": "Kabir Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC820", - "message": "Hoshiarpur Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC821", - "message": "Old Hoshiarpur Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC822", - "message": "Baldev Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC823", - "message": "New Baldev Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC824", - "message": "Baba Balak Nath Market", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC825", - "message": "Madrasi Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC826", - "message": "Ravidass School Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC827", - "message": "Dhonka Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC828", - "message": "Prithvi Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC829", - "message": "New Prithvi Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC83", - "message": "Kabir Avenue Extension", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC830", - "message": "Lambapind Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC831", - "message": "Dutta Street", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC832", - "message": "Raman Shiv Mandir Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC833", - "message": "Ajit Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC834", - "message": "Balmiki Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC835", - "message": "Vivek Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC836", - "message": "New Vivek Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC837", - "message": "Arjun Singh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC838", - "message": "Jaimal Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC839", - "message": "Durga Mandir Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC84", - "message": "Punjab Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC840", - "message": "Vinay Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC841", - "message": "Akash Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC842", - "message": "Arjun Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC843", - "message": "Jaimal Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC844", - "message": "Upkar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC845", - "message": "New Upkar Nargar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC846", - "message": "Ghandi Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC847", - "message": "New Ghandi Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC848", - "message": "Chakk Hussaina", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC849", - "message": "Hoshiarpur Road Lamba Pind(Left Side)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC85", - "message": "Punjab Avenue Extension", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC850", - "message": "Muslim Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC851", - "message": "New Vinay Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC852", - "message": "Hans Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC853", - "message": "New Santokhpura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC854", - "message": "Durga Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC855", - "message": "Sarabha Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC856", - "message": "Guru Ram Dass Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC857", - "message": "Niwi Abadi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC858", - "message": "Lakshmipura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC859", - "message": "New Lakshmipura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC86", - "message": "Dhaliwal Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC860", - "message": "Vij Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC861", - "message": "Sant Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC862", - "message": "Bhagatpura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC863", - "message": "Jeet Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC864", - "message": "Vikaspuri", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC865", - "message": "New Vikaspuri", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC866", - "message": "Ambika Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC867", - "message": "B.D.Steel", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC868", - "message": "Santokhpura Nivi Abadi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC869", - "message": "Basti Bhure Kha", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC87", - "message": "Himachal Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC870", - "message": "Shah Sikandar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC871", - "message": "Ram Gharia School", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC872", - "message": "Preet Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC873", - "message": "Basant Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC874", - "message": "New Basant Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC875", - "message": "Aman Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC876", - "message": "New Aman Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC877", - "message": "New colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC878", - "message": "Kamal Park", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC879", - "message": "Preet Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC88", - "message": "Green Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC880", - "message": "New Preet Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC881", - "message": "Sodal Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC882", - "message": "Sidh Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC883", - "message": "Ashok Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC884", - "message": "Ramco Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC885", - "message": "New Sodal Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC886", - "message": "Mathura Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC887", - "message": "Kot Baba Deep Singh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC888", - "message": "Tobari Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC889", - "message": "Tanda Road Hanuman Mandir Chowk to Tanda Road Railway Crossing", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC89", - "message": "Sunshine Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC890", - "message": "Shah Sikandar Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC891", - "message": "Kailash Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC892", - "message": "New Kailash Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC893", - "message": "New Kailash Nagar Ext.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC894", - "message": "Gobind Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC895", - "message": "New Gobind Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC896", - "message": "J.M.C Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC897", - "message": "Gujja Peer Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC898", - "message": "Amar Garden", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC899", - "message": "Saipur Kalan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC9", - "message": "New Guru Amar Das Extension Paschim", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC90", - "message": "Silver Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC900", - "message": "Sanjay Gandhi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC901", - "message": "Dada Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC902", - "message": "Saini Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC903", - "message": "Chotta Saipur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC904", - "message": "Hari Singh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC905", - "message": "Shashi Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC906", - "message": "Lathi Mar Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC907", - "message": "Sodal Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC908", - "message": "Gujja Peer Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC909", - "message": "Sodal Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC91", - "message": "Randhawa Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC910", - "message": "Laxmi Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC911", - "message": "Kali Mata Mandir Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC912", - "message": "Bhagat Singh Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC913", - "message": "Baba Balak Nath Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC914", - "message": "Shiv Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC915", - "message": "Canal Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC916", - "message": "Industrial Area", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC917", - "message": "Dada Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC918", - "message": "Chota Saipur Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC919", - "message": "Shiv Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC92", - "message": "Lahora Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC920", - "message": "Brij Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC921", - "message": "Gajji Gulla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC922", - "message": "Parbhat Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC923", - "message": "Ram Nagar Railway", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC924", - "message": "Crossing to Gajji Gujja Chowk Left Side", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC925", - "message": "Industrial Area Ext.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC926", - "message": "Canal Industrial Complex", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC927", - "message": "Gandhi Camp", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC928", - "message": "Gurdev Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC929", - "message": "Gopal Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC93", - "message": "Nanak Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC930", - "message": "Satnam Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC931", - "message": "Sawan Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC932", - "message": "Valmiki Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC933", - "message": "New Grain Market", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC934", - "message": "Jain Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC935", - "message": "New Gopal Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC936", - "message": "Neela Mahal", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC937", - "message": "Mohalla Krar Khan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC938", - "message": "Sangra Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC939", - "message": "Teacher Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC94", - "message": "Basant Hill", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC940", - "message": "Krishna Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC941", - "message": "Tobri Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC942", - "message": "Guru Nanak Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC943", - "message": "Harnamdasspura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC944", - "message": "Kot Lakhpat Rai", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC945", - "message": "Banda Bahadur Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC946", - "message": "Kapurthala Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC947", - "message": "Bagh Baharia", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC948", - "message": "Gulab Devi Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC949", - "message": "Bulton Park Cricket Stadium", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC95", - "message": "University Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC950", - "message": "Durga Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC951", - "message": "B.S.F Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC952", - "message": "Gopal Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC953", - "message": "New Colony Gopal Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC954", - "message": "Main Road Old Sabzi Mandi to Burton Park", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC955", - "message": "Sangat Singh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC956", - "message": "Balwant Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC957", - "message": "Bandha Bhadur Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC958", - "message": "Sarswati Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC959", - "message": "PNT Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC96", - "message": "Moti Bagh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC960", - "message": "Bagh Bharia", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC961", - "message": "Bhagwan Dass Pura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC962", - "message": "Dhiman Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC963", - "message": "Adresh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC964", - "message": "Natha Bagechi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC965", - "message": "Misson Compound", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC966", - "message": "Talab Bharia", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC967", - "message": "Jail Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC968", - "message": "Kabir Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC969", - "message": "Kachari Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC97", - "message": "Park Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC970", - "message": "Gandhi Camp 3 Lain", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC971", - "message": "Windsor Park", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC972", - "message": "Rose Park", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC973", - "message": "Jain Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC974", - "message": "Gupta Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC975", - "message": "Hardev Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC976", - "message": "Guru Nanak Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC977", - "message": "Guru Arjun Dev Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC978", - "message": "Sarswati Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC979", - "message": "Surjit Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC98", - "message": "Chopra Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC980", - "message": "Malak Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC981", - "message": "Kalyani Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC982", - "message": "Suriya Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC983", - "message": "Vivekananda Park", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC984", - "message": "Ariya Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC985", - "message": "Pingalwara", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC986", - "message": "Gujrati Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC987", - "message": "Shardha Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC988", - "message": "Sawarn Park", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC989", - "message": "Ram Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC99", - "message": "Dr. Ambedkar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC990", - "message": "Chhota Gandhi Nagar Camp", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC991", - "message": "Friends Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC992", - "message": "Seth Hukam Chand Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC993", - "message": "Greater Kailash", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC994", - "message": "Moti Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC995", - "message": "New Moti Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC996", - "message": "Tagore Park/ Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC997", - "message": "Professor Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC998", - "message": "Maqsudan Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "JLC999", - "message": "Bohar Wala Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "Jalandhar", - "message": "Jalandhar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "LABEL", - "message": " ", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "LABEL_FOR_POSTED_BY", - "message": "Document Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "LABEL_FOR_ULB", - "message": "ULB", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "LANGUAGE_EN", - "message": "English", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "LANGUAGE_EN_IN", - "message": "English", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "LANGUAGE_GR", - "message": "Gujarati", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "LANGUAGE_HI_IN", - "message": "Hindi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "LANGUAGE_HN", - "message": "Hindi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "LANGUAGE_OD_IN", - "message": "Odia", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "LANGUAGE_PN", - "message": "Punjabi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "LANGUAGE_PN_IN", - "message": "ਪੰਜਾਬੀ", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "LANGUAGE_od_IN", - "message": "Hindi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "LEGACY_ENTRY", - "message": "Legacy Entry", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "LMEPERFORMANCEREPORT", - "message": "LME Performance Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "LOCALITY_IS_REQUIRED", - "message": "Locality is required", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "LOGIN_INVALID_OTP", - "message": "Invalid OTP!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "LONG_ANSWER_TYPE", - "message": "Paragraph", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MALE", - "message": "Male", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MALE_MULIA", - "message": "Male mulia", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MANUALEXPIRED", - "message": "Manual Expired", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MAP_CLOSE_LABEL", - "message": "CLOSE", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MAP_PICK_LABEL", - "message": "PICK", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MASON", - "message": "Mason", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MASTERS_EFFECTIVE_FROM", - "message": "Effective From", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MASTERS_EFFECTIVE_TO", - "message": "Effective To", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MASTERS_ORGANISATION_ID", - "message": "Organization ID", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MASTERS_WAGESEEKER_ID", - "message": "Wage seeker ID", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MASTERS_WAGESEEKER_NAME", - "message": "Wage seeker name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MAX_AADHAAR_CHARCTERS_REQUIRED", - "message": "Aadhaar number should be of 12 digits", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MAX_ACCOUNT_NO_CHARACTERS_REQUIRED", - "message": "Account number should be maximum of 18 characters", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MAX_FATHER_CHARCTERS_REQUIRED", - "message": "Father Name should be maximum of 128 characters", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MAX_MOBILE_CHARCTERS_REQUIRED", - "message": "Mobile number should be of 10 digits", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MAX_NAME_CHARCTERS_REQUIRED", - "message": "Name should be maximum of 128 characters", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MCOLLECT", - "message": "Miscellaneous Collection", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MCOLLECTCHALLANREGISTER", - "message": "Challan Register", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MCOLLECTCOLLECTIONREPORT", - "message": "Collection Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MCOLLECTRECEIPTREGISTER", - "message": "Receipt Register", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MCOLLECTRECEIPTtREGISTER", - "message": "Receipt Register", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MCOLLECT_FAQ_ANS_ONE", - "message": "Challan is a demand notice issued to the citizen for availing the service of the governing body. Challan can be paid for categories like advertising fees, marriage hall booking etc.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MCOLLECT_FAQ_ANS_THREE", - "message": "Yes. Challans can be paid online or at the counter. Please use the challan reference number or phone number to search for the challan & pay online.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MCOLLECT_FAQ_ANS_TWO", - "message": "The timeline within which the challan amount has to be paid. This is usually decided by the governing body.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MCOLLECT_FAQ_QUES_ONE", - "message": "What is a Challan? ", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MCOLLECT_FAQ_QUES_THREE", - "message": "Can the challan be paid online?", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MCOLLECT_FAQ_QUES_TWO", - "message": "What is validity period for a challan?", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MCOLLECT_FAQ_S", - "message": "FAQs", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MCollectChallanRegister", - "message": "Challan Register", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MCollectCollectionReport", - "message": "Collection Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MCollectReceiptRegister", - "message": "Receipt Register", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MDMS_ADD_V2", - "message": "Add Master Data", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MDMS_SEARCH_V2", - "message": "Search Master Data", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MDMS_VIEW", - "message": "View Master Data", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MESSAGE_ADD_SUCCESS_MESSAGE_MAIN", - "message": "Message published successfully", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MESSAGE_ADD_SUCCESS_MESSAGE_SUB", - "message": " ", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MESSAGE_CANCEL_BUTTON", - "message": "CANCEL", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MESSAGE_DELETE_BUTTON_LABEL", - "message": "DELETE MESSAGE", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MESSAGE_DELETE_SUCCESS_LABEL", - "message": "Deleted Successfully!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MESSAGE_DELETE_SUCCESS_MESSAGE_MAIN", - "message": "Message deleted Successfully", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MESSAGE_SAVE_BUTTOM", - "message": "SAVE", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MESSAGE_UPDATE_SUCCESS_LABEL", - "message": "Updated Successfully!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MESSAGE_UPDATE_SUCCESS_MESSAGE_MAIN", - "message": "Message updated Successfully", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MINUCIPALITY", - "message": "नगर पालिका", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MIN_AADHAAR_CHARCTERS_REQUIRED", - "message": "Aadhaar number should be of 12 digits", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MIN_ACCOUNT_NO_CHARACTERS_REQUIRED", - "message": "Account number should be minimum of 9 characters", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MIN_FATHER_CHARCTERS_REQUIRED", - "message": "Father Name should be minimum of 2 characters", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MIN_MOBILE_CHARCTERS_REQUIRED", - "message": "Mobile number should be of 10 digits", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MIN_NAME_CHARCTERS_REQUIRED", - "message": "Name should be minimum of 2 characters", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MIN_SEARCH_CRITERIA_MSG", - "message": "Please enter minimum 1 search criteria", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MISCBUSINESSSERVICECOLLECTIONTENANT", - "message": "Service Collection Tenant", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MISCRECEIPTCB", - "message": "Consumer Receipts", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MISCRECEIPTREGISTER", - "message": "Receipt Register", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MOBILE_NUMBER_IS_REQUIRED", - "message": "Mobile number is required", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODIFICATIONS_EFFECTIVE_DATE", - "message": "Modify Effective Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODIFYING_PROPERTY_DETAILS", - "message": "Modifying Property Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODIFYING_PROPERTY_DETAILS_VIDEO_DESC", - "message": "Modify Property details by navigating to Property details page", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_-1", - "message": "Negative Test Property", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_1", - "message": "TEST Property", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_ADMN", - "message": "Admin Fees", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_ADMN_ELECTION_RALLY_FEES", - "message": "Election rally fees", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_ADMN_NO_DUES_CERTIFICATE", - "message": "NDC - No Dues Certificate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_ADMN_PARKING_BOOKING_FEE", - "message": "Parking Booking Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_ADMN_PARKING_DURING_ELECTION", - "message": "Parking during election", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_ADMN_ROAD_SHOW", - "message": "Road show", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_ADMN_RTI", - "message": "RTI", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_ADVT", - "message": "Advertisement Fee (OMD)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_ADVT_CANOPY_FEE", - "message": "Canopy Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_ADVT_GAS_BALLOON_ADVERTISEMENT", - "message": "Gas Balloon Advertisement", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_ADVT_HOARDINGS", - "message": "Hoardings ", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_ADVT_LIGHT_WALA_BOARD", - "message": "Light Wala Board", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_ADVT_OUTDOOR_MEDIA_DISPLAY_FEE", - "message": "Outdoor Media Display Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_ADVT_UNIPOLLS", - "message": "Unipolls", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_ADVT_WALL_PAINT_ADVERTISEMENT", - "message": "Wall Paint Advertisement", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_BILLS", - "message": "Bills", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_BIRTH_CERT", - "message": "Birth Certificate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_BPAREG", - "message": "BPA Stakeholder Registration", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_BPA_LOW_RISK_PERMIT_FEE", - "message": "Permit Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_BPA_NC_APP_FEE", - "message": "Application Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_BPA_NC_OC_APP_FEE", - "message": "Application Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_BPA_NC_OC_SAN_FEE", - "message": "Deviation Penality", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_BPA_NC_SAN_FEE", - "message": "Sanction Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_CH", - "message": "Challans", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_CH_BIDI_&_CIGRETTE_CHALLAN", - "message": "Bidi & Cigrette Challan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_CH_CATTLE_CHALLAN", - "message": "Cattle Challan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_CH_CHALLAN_FOR_MISUSE_OF_WATER", - "message": "Challan for Misuse of Water", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_CH_DAIRY_ANIMALS_CHALLAN", - "message": "Dairy Animals Challan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_CH_DENGUE_CHALLAN", - "message": "Dengue Challan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_CH_LITTERING_CHALLAN", - "message": "Littering Challan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_CH_PLASTIC_CHALLAN", - "message": "Plastic Challan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_CH_REHRI_CHALLAN", - "message": "Rehri Challan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_CH_SANTITATION_DUMPING_GARBAGE", - "message": "Santitation dumping garbage", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_CH_SBM_GARBAGE_PLASTIC_POLYTHENE_CHALLAN", - "message": "SBM garbage plastic polythene challan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_COMMONPT", - "message": "Property tax", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_CSS", - "message": "Cess", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_CSS_COW_CESS", - "message": "Cow Cess", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_CSS_LABOR_CESS", - "message": "Labor Cess", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_DEATH_CERT", - "message": "Death Certificate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_FIRENOC", - "message": "Fire No Objection Certificate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_FN", - "message": "Finance Fees", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_FN_ADVANCE_PROVIDENT_FUND", - "message": "Advance Provident Fund", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_FN_CPF_RECEIVED_CHECK", - "message": "CPF received check", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_FN_GPF", - "message": "GPF", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_FN_GRANTS_CHEQUE", - "message": "Grants cheque", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_FN_PF_TRANSFER_(ACCOUNTS)", - "message": "PF transfer (Accounts)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_FN_RECOVERY_EMPLOYEE/CONTRACTOR", - "message": "Recovery employee/contractor", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_FN_RECOVERY_EMPLOYEE_CONTRACTOR", - "message": "Recovery employee contractor", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_FSM_TRIP_CHARGES", - "message": "Emptying of Septic tank / Pit", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_FTP", - "message": "Fee Town Planning", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_FTP_ARCHITECT_LICENSE_FEE", - "message": "Architect license fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_FTP_BUILDING_PLANNER_RENEW", - "message": "Building planner renew", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_FTP_COMPREMASING_FEES", - "message": "Compremasing fees", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_FTP_CONSTRUCTION_WASTE", - "message": "Construction Waste", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_FTP_DEMOLITION_WASTE", - "message": "Demolition Waste", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_FTP_DRAFTSMEN_FEES", - "message": "Draftsmen fees", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_FTP_LEAVE_ENCASHMENT_AND_GRATUTY", - "message": "Leave encashment and gratuty", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_FTP_LICENSE_FEES_BUILDING_BRANCH", - "message": "License fees building branch", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_FTP_TELECOM_TOWER_FEES", - "message": "Telecom tower fees", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_LCF", - "message": "License Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_LCF_MANUAL_RIKSHAW", - "message": "Manual Rikshaw ", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_MCOLLECT", - "message": "M-Collect", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_NKS", - "message": "Naksha/Building Manual Fees", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_NKS_2_YEAR_TIME_LIMIT_OF_RENEWAL_BUILDING_NAKSHA", - "message": "2 year time limit of Renewal Building Naksha", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_NKS_ALTERATION_ADDITIONAL_CHARGE", - "message": "Alteration additional charge", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_NKS_BOUNDARY_WALL_FEES", - "message": "Boundary Wall Fees", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_NKS_BUILDING_FEES", - "message": " Building Fees", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_NKS_CHANGE_OF_LAND_USE_FEES", - "message": "Change Of Land Use Fees", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_NKS_COLONY_SAMBANDHI_FEES", - "message": "Colony Sambandhi fees", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_NKS_DEVELOPMENT_FEES", - "message": "Development Fees", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_NKS_HADUD_CERTIFICATE_FEES", - "message": "Hadud Certificate Fees", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_NKS_MALBA_FEES", - "message": "Malba Fees", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_NKS_NAKSHA_CHANGES", - "message": "Naksha changes ", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_NKS_NAKSHA_FEES", - "message": "Naksha fees", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_NKS_NAKSHA_RENEW_FEES", - "message": "Naksha renew fees", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_NKS_NAKSHA_SAMJOTA_FEES", - "message": "Naksha samjota fees", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_NKS_NOC/COMPLETION_OF_BUILDING_APPROVAL", - "message": "NOC/Completion of building approval", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_NKS_NOC_COMPLETION_OF_BUILDING_APPROVAL", - "message": "NOC completion of building approval", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_NKS_NO_DUE_CERTIFICATE_FEES", - "message": "No Due Certificate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_NKS_OUTDOOR_BUILDING_FEES", - "message": "Outdoor Building Fees", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_NKS_RAIN_HARVESTING_CHARGES", - "message": "Rain Harvesting Charges", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_NKS_REGULARISATION_OF_BUILDINGS", - "message": "Regularisation of Buildings", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_NKS_UNDER_DEVELOPMENT_FEES", - "message": "Under Development Fees", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_OBPS", - "message": "Online Building Permit System", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_OM", - "message": "O&M Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_OM_PLUMBER_LICENSE_FEE", - "message": "Plumber License Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_OM_ROAD_CUT_FEES", - "message": "Road Cut Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_OM_WATER_CONNECTION/DISCONNECTION_FEES", - "message": "Water connection/disconnection fees", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_OM_WATER_CONNECTION_DISCONNECTION_FEES", - "message": "Water connection disconnection fees", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_OTHER", - "message": "Other Fees", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_OTHER_BUS_ADDA_FEE", - "message": "Bus Adda Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_OTHER_FIRE_CALL_REPORT_FEE", - "message": "Fire Call Report Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_OTHER_FIRE_NOC_FEE", - "message": "Fire NOC Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_OTHER_FIRE_TENDER_FEE", - "message": "Fire Tender Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_OTHER_MISC_CHALLANS", - "message": "Misc. Challans", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_OTHER_NOC_FEE", - "message": "NOC Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_OTHER_NO_DUE_CERTIFICATE_ELECTRICITY", - "message": "No due certificate electricity", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_OTHER_OTHERS_FEE", - "message": "Others Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_OTHER_REGISTERY_AND_BANK_LOAN", - "message": "Registery and bank loan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_OTHER_WATER_CHARGES", - "message": "Water Charges", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_PGR", - "message": "Citizen Complaint Resolution System", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_PT", - "message": "Property Tax", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_PT_MUTATION", - "message": "Transfer of Ownership", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_RT", - "message": "Rents", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_RT_COMMERCIAL_USE_OF_MUNICIPAL_LAND", - "message": "Commercial Use of Municipal Land", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_RT_COMMUNITY_CENTRE_BOOKING_FEE", - "message": "Community Centre Booking Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_RT_JAMIN_THEKA", - "message": "Jamin Theka", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_RT_LAND_RENT", - "message": "Land Rent ", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_RT_MUNICIPAL_SHOPS_RENT", - "message": "Municipal Shops Rent", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_RT_PARKING_FEE", - "message": "Parking Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_RT_STREET_VENDOR", - "message": "Street Vendor", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_RT_TOWER_ANNUAL_RENT", - "message": "Tower Annual Rent", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_RT_TOWER_INSTALLATION", - "message": "Tower Installation", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_RT_TOWER_RENT", - "message": "Tower Rent", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_SERVICETYPE", - "message": "Service type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_SNT", - "message": "Sanitation", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_SNT_CLEAN_SAFAI_SANITATION", - "message": "Clean/Safai Sanitation", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_SNT_DEAD_ANIMALS_CONTRACT", - "message": "Dead animals contract", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_SNT_LICENCE_PURE_FOOD", - "message": "Licence Pure food", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_ST", - "message": "Stationary ", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_ST_EXPENDITURE_SANTITATION_NOT_INCOME", - "message": "Expenditure santitation (Not Income)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_ST_STATIONARY_NOT_INCOME", - "message": "Stationary (Not Income)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_SW", - "message": "Sewerage", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_SW_ONE_TIME_FEE", - "message": "SEWERAGE", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_TB", - "message": "Tehbazaari Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_TB_ADVERTISEMENT_FEE", - "message": "Advertisement fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_TB_CHALLAN_UNDER_SECTION_156", - "message": "Challan Under section 156,121 etc", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_TB_REHRI_CHALLAN", - "message": "Rehri Challan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_TB_TEHBAZAARI", - "message": "Tehbazaari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_TEHBAZAARI_FEE_CHALLAN_UNDER_SECTION_156", - "message": "Challan Under section 156,121 etc", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_TL", - "message": "Trade License", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_TX", - "message": "Tax", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_TX_ELECTRICITY_CHUNGI", - "message": "Electricity Chungi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_TX_HOUSE_TAX", - "message": "House Tax", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_TX_NO_DUES_CERTIFICATE", - "message": "NDC - No Dues Certificate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_TX_PROPERTY_TAX_2013_14", - "message": "Property Tax 2013-14", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_TX_TRANSFER_PROPERTY_FEES", - "message": "Transfer Property Fees", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_TX_TS1_COPY_REGISTER_FOR_OLD_SURVEY", - "message": "TS1 copy register for old survey", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_WF", - "message": "Work Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_WF_CONTRACTOR_ENLISTMENT", - "message": "Contractor Enlistment", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_WF_OFC_PERMISSION_FEES", - "message": "OFC Permission fees", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_WF_TENDER_FORM_FEE", - "message": "Tender Form Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_WS", - "message": "Water", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE_WS_ONE_TIME_FEE", - "message": "WATER", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MODULE__1", - "message": "Negative Test Property", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MOVABLE___HDV", - "message": "Movable / Hand Driven Vehicle", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MOVABLE___MDV", - "message": "Movable / Motor Driven Vehicle", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MP_BHOPAL", - "message": "Bhopal", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MP_Indore", - "message": "Indore", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MSEVA_EVENTCATEGORIES_CULTURAL", - "message": "Cultural", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MSEVA_EVENTCATEGORIES_PUBLICHEALTH", - "message": "Public Health", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MSEVA_EVENTCATEGORIES_WARDCOMMITTEEMEETING", - "message": "Ward Committee Meeting", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MUKTA", - "message": "MUKTA", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MULTIPLE", - "message": "Multiple", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MULTIPLE_ANSWER_TYPE", - "message": "Multiple choice", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MUSTER_ROLL_PERIOD", - "message": "Muster Roll Period", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MUSTOR_APPROVAL_CHECKBOX", - "message": "Muster roll has been verified against Measurement Book. Once approved Payment Advice will be generated and send to JIT-FS for payment processing. ", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MYCITY_CODE_LABEL", - "message": "City", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MYCITY_DISTRICTCODE_LABEL", - "message": "District", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MYCITY_FEMALEPOPULATION_LABEL", - "message": "Female Population", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MYCITY_LANGUAGESSPOKEN_LABEL", - "message": "Languages spoken", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MYCITY_LITERACYRATE_LABEL", - "message": "Literacy Rate(%)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MYCITY_MALEPOPULATION_LABEL", - "message": "Male Population", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MYCITY_PB_LABEL", - "message": "Odissa", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MYCITY_POPULATION_LABEL", - "message": "Population", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MYCITY_STATEA_LABEL", - "message": "State A", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MYCITY_STATECODE_LABEL", - "message": "State", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MYCITY_WORKINGPOPULATION_LABEL", - "message": "Working Population(%)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "MY_WORKS", - "message": "My Works", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NAME_IS_REQUIRED", - "message": "Name is required", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NAME_OF_WAGE_SEEKER", - "message": "Name of the wage seeker", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NAME_REQUIRED", - "message": "Name Required", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NATIONAL_DSS_OVERVIEW_CITIZEN_FEEDBACK_SCORE", - "message": "Citizen Feedback Score", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NATIONAL_DSS_OVERVIEW_PENDANCY", - "message": "Pendancy", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NATIONAL_DSS_PROPERTY_TAX_DASHBOARD", - "message": "Property Tax Dashboard", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NATIONAL_DSS_PT_CITIZEN_FEEDBACK_SCORE", - "message": "Citizen Feedback Score", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NATIONAL_DSS_PT_CITIZEN_SERVICE_DELIVERY_INDEX", - "message": "Citizen Delivery Index", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NATIONAL_DSS_PT_PENDANCY", - "message": "Pendancy", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NATIONAL_DSS_PT_SLA_ACHIEVED", - "message": "Aggregated SLA", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NAWANSHAHR ULBGRADE_MC_CLASS I", - "message": "NAWANSHAHR MUNICIPAL COUNCIL ", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NEW", - "message": "New", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NEWTL-APPLIED", - "message": "New TL-Applied", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NEWTL-APPROVED", - "message": "New TL-Approved", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NEWTL-CANCELLED", - "message": "New TL-Cancelled", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NEWTL-CITIZENACTIONREQUIRED", - "message": "New TL-Citizen Action Required", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NEWTL-EXPIRED", - "message": "New TL-Expired", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NEWTL-FIELDINSPECTION", - "message": "New TL-Pending For Field Inspection", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NEWTL-INITIATED", - "message": "New TL-Intiated", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NEWTL-MANUALEXPIRED", - "message": "New TL-Manual Expired", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NEWTL-PENDINGAPPROVAL", - "message": "New TL-Pending For Approval", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NEWTL-PENDINGPAYMENT", - "message": "New TL-Pending For Payment", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NEWTL-REJECTED", - "message": "New TL-Rejected", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NEW_CHALLAN_BUTTON", - "message": "New Challan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NEW_CONSTRUCTION", - "message": "New Construction", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NEW_DOCUMENT", - "message": "Document", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NEW_DOCUMENT_TEXT", - "message": "Add new document", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NEW_FSM_SMS_ASSING_DSO_PAY", - "message": "Dear Applicant, Amount of Rs.{#var#}/- is received towards the payment of cleaning septic tank /pit with reference no. {#var#}. You will be notified when an operator is assigned to a request. Please click this link {#var#}{#var#} to download the receipt.EGOVS", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NEW_FSM_SMS_CANCELED_CANCEL", - "message": "Dear Applicant, Your request for cleaning the septic tank/pit is cancelled with the reason {#var#}{#var#} . Please use this link {#var#}{#var#} to create a new request if needed.EGOVS", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NEW_FSM_SMS_CITIZEN_FEEDBACK_PENDING_COMPLETED", - "message": "Dear Applicant, Your request for cleaning septic tank/pit is completed. Please take some time to rate us using the link {#var#}{#var#}.EGOVS", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NEW_FSM_SMS_CREATED_CREATE", - "message": "Dear Applicant,Your application for cleaning septic tank/pit is created with application reference no.{#var#}.You will be notified to make an application fee shortly.Request is expected to be completed within {#var#}hrs of making the payment.EGOVS", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NEW_FSM_SMS_PENDING_APPL_FEE_PAYMENT_APPLY", - "message": "Dear Applicant, Your application for cleaning septic tank /pit is created with application number {#var#}.Please click this link {#var#}{#var#} to pay the application fee for processing the application.Request is expected to be completed within {#var#}hrs of making the payment.EGOVS", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NEW_FSM_SMS_PENDING_APPL_FEE_PAYMENT_SUBMIT", - "message": "Dear Applicant, Please pay the application fee Rs.{#var#}/- for cleaning the septic tank/pit with request number {#var#}.Click this link {#var#}{#var#} to make the payment.Request is expected to be completed within {#var#}hrs of making the payment.EGOVS", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NEW_FSM_SMS_REJECTED_REJECT", - "message": "Dear Applicant, Your request for cleaning the septic tank/pit is rejected with the reason {#var#}{#var#} . Please use this link {#var#}{#var#} to create a new request if needed.EGOVS", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NEW_PUBLIC_MESSAGE_BUTTON_LABEL", - "message": "New Public Message", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NEW_SEWERAGE_CONNECTION", - "message": "sewerage", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NEW_SURVEY", - "message": "New Survey", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NEW_TEST", - "message": "new-test", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NEW_WATER_CONNECTION", - "message": "Water Connection", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC.AIRPORT.CERTIFICATE", - "message": "Airport Noc Certificate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC.FIRE.CERTIFICATE", - "message": "Fire No Objection Certificate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_AGRICULTURE_LANDUSE", - "message": "Agriculture Landuse", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_AGRICULTURE_WATERBODY_FTL", - "message": "Agriculture Water body FTL", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_AIRPORT", - "message": "Airport", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_AIRPORT_CERTIFICATE", - "message": "Airport Certificate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_APPLICANT_CORRESPONDENCE_ADDRESS_LABEL", - "message": "Correspondence Address", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_APPLICANT_DETAILS_HEADER", - "message": "Owner Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_APPLICANT_DOB_LABEL", - "message": "Date Of Birth", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_APPLICANT_EMAIL_LABEL", - "message": "Email", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_APPLICANT_MOBILE_NO_LABEL", - "message": "Mobile No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_APPLICANT_NAME_LABEL", - "message": "Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_APPLICANT_PAN_LABEL", - "message": "PAN No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_APPLICANT_RELATIONSHIP_FATHER_RADIOBUTTON", - "message": "Father", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_APPLICANT_RELATIONSHIP_HUSBAND_RADIOBUTTON", - "message": "Husband", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_APPLICANT_RELATIONSHIP_LABEL", - "message": "Relationship", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_APPLICATION_BUTTON_DOWN_CONF", - "message": "DOWNLOAD CONFIRMATION FORM", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_APPLICATION_BUTTON_PRINT_CONF", - "message": "PRINT CONFIRMATION FORM", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_APPLICATION_SUCCESS_MESSAGE_MAIN", - "message": "Application Submitted Successfully", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_APPLICATION_SUCCESS_MESSAGE_SUB", - "message": "A notification regarding Application Submission has been sent to building owner at registered Mobile No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_COMMON_BUTTON_HOME", - "message": "GO TO HOME", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_COMMON_BUTTON_PREV_STEP", - "message": "Previous Step", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_COMMON_BUTTON_PRINT", - "message": "Print", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_COMMON_BUTTON_SUBMIT", - "message": "SUBMIT", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_COMMON_PROPERTY_LOCATION_SUMMARY", - "message": "Property Location Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_COMMON_TABLE_COL_APP_DATE_LABEL", - "message": "Application Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_COMMON_TABLE_COL_APP_NO", - "message": "Application No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_COMMON_TABLE_COL_NOC_NO_LABEL", - "message": "NOC No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_COMMON_TABLE_COL_OWN_NAME_LABEL", - "message": "Applicant Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_COMMON_TABLE_COL_STATUS_LABEL", - "message": "Status", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_DOCUMENT_DETAILS_BUTTON_UPLOAD_FILE", - "message": "UPLOAD FILE", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_DOCUMENT_DETAILS_HEADER", - "message": "Required Documents", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_DOCUMENT_DETAILS_SUBTEXT", - "message": "Only one file can be uploaded for one document. If multiple files need to be uploaded then please combine all files in a pdf and then upload", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_ENTER_APPLICANT_CORRESPONDENCE_ADDRESS_PLACEHOLDER", - "message": "Enter Correspondence Address", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_ENTER_APPLICANT_DOB_PLACEHOLDER", - "message": "DD/MM/YYYY", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_ENTER_APPLICANT_EMAIL_PLACEHOLDER", - "message": "Enter Email", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_ENTER_APPLICANT_MOBILE_NO_PLACEHOLDER", - "message": "Enter Mobile No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_ENTER_APPLICANT_NAME_PLACEHOLDER", - "message": "Enter Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_ENTER_APPLICANT_PAN_PLACEHOLDER", - "message": "Enter Applicant's PAN No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_FEE_ESTIMATE_HEADER", - "message": "Fee Estimate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_FIRE", - "message": "Fire", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_FIRE_CERTIFICATE", - "message": "Fire No Objection Certificate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_FORWARD_SUCCESS_MESSAGE_MAIN", - "message": "Application Forwarded Successfully", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_FROM_DATE_LABEL", - "message": "From Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_FROM_DATE_PLACEHOLDER", - "message": "From Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_HOME_SEARCH_RESET_BUTTON", - "message": "Reset", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_HOME_SEARCH_RESULTS_APP_NO_LABEL", - "message": "Application number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_HOME_SEARCH_RESULTS_APP_NO_PLACEHOLDER", - "message": "Enter Application number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_HOME_SEARCH_RESULTS_BUTTON_SEARCH", - "message": "SEARCH", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_HOME_SEARCH_RESULTS_DESC", - "message": "Provide at least one parameter to search for an application", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_HOME_SEARCH_RESULTS_NEW_APP_BUTTON", - "message": "NEW APPLICATION", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_HOME_SEARCH_RESULTS_OWN_MOB_LABEL", - "message": "Mobile Number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_HOME_SEARCH_RESULTS_OWN_MOB_PLACEHOLDER", - "message": "Enter your mobile No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_HOME_SEARCH_RESULTS_TABLE_HEADING", - "message": "Search Result of Application", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_INPROGRESS", - "message": "INPROGRESS", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_OWNER_INFORMATION", - "message": "Owner Information", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_OWNER_INFO_TITLE", - "message": "Owner Information", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_PAYMENT_BANK_BRANCH_LABEL", - "message": "Bank Branch", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_PAYMENT_BANK_BRANCH_PLACEHOLDER", - "message": "Enter bank branch", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_PAYMENT_BANK_NAME_LABEL", - "message": "Bank Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_PAYMENT_BANK_NAME_PLACEHOLDER", - "message": "Enter bank name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_PAYMENT_CAP_PMT", - "message": "Capture Payment", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_PAYMENT_CARD_LAST_DIGITS_LABEL", - "message": "Last 4 digits", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_PAYMENT_CARD_LAST_DIGITS_LABEL_PLACEHOLDER", - "message": "Enter Last 4 digits of the card", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_PAYMENT_CHEQUE_DATE_LABEL", - "message": "Cheque Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_PAYMENT_CHEQUE_DATE_PLACEHOLDER", - "message": "dd/mm/yy", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_PAYMENT_CHQ_NO_LABEL", - "message": "Cheque No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_PAYMENT_CHQ_NO_PLACEHOLDER", - "message": "Enter Cheque no.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_PAYMENT_COLLECTION_SUCCESS_MESSAGE_MAIN", - "message": "Payment has been collected successfully!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_PAYMENT_COLLECTION_SUCCESS_MESSAGE_MAINB", - "message": "A notification regarding Application Submission has been sent to building owner at registered Mobile No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_PAYMENT_DD_DATE_LABEL", - "message": "DD Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_PAYMENT_DD_DATE_PLACEHOLDER", - "message": "dd/mm/yy", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_PAYMENT_DD_NO_LABEL", - "message": "DD No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_PAYMENT_DD_NO_PLACEHOLDER", - "message": "Enter DD no.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_PAYMENT_FAILURE_MESSAGE_MAIN", - "message": "Payment has failed!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_PAYMENT_FAILURE_MESSAGE_SUB", - "message": "A notification regarding payment failure has been sent to the building owner and applicant.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_PAYMENT_HEAD", - "message": "Payment Collection Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_PAYMENT_IFSC_CODE_LABEL", - "message": "IFSC", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_PAYMENT_IFSC_CODE_PLACEHOLDER", - "message": "Enter bank IFSC", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_PAYMENT_PAID_BY_LABEL", - "message": "Paid By", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_PAYMENT_PAID_BY_PLACEHOLDER", - "message": "Paid By", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_PAYMENT_PAYER_MOB_LABEL", - "message": "Payer Mobile No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_PAYMENT_PAYER_MOB_PLACEHOLDER", - "message": "Enter Payer Mobile No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_PAYMENT_PAYER_NAME_LABEL", - "message": "Payer Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_PAYMENT_PAYER_NAME_PLACEHOLDER", - "message": "Enter Payer Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_PAYMENT_PENALTY_REASON", - "message": "Adhoc Penalty Reason", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_PAYMENT_PENALTY_REASON_SELECT", - "message": "Adhoc Penalty Reason", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_PAYMENT_RCPT_DETAILS", - "message": "GEN/G8 Receipt Details (Optional)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_PAYMENT_RCPT_NO_LABEL", - "message": "GEN/G8 Receipt No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_PAYMENT_RCPT_NO_PLACEHOLDER", - "message": "Enter GEN/G8 Receipt No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_PAYMENT_REBATE_REASON", - "message": "Adhoc Rebate Amount", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_PAYMENT_REBATE_REASON_SELECT", - "message": "Adhoc Rebate Reason", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_PAYMENT_RECEIPT_ISSUE_DATE_LABEL", - "message": "GEN/G8 Receipt Issue Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_PAYMENT_RECEIPT_ISSUE_DATE_PLACEHOLDER", - "message": "dd/mm/yy", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_PAYMENT_RENTR_TRANS_LABEL", - "message": "Re-Enter Transaction No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_PAYMENT_RETRY", - "message": "RETRY", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_PAYMENT_SUCCESS_MESSAGE_MAIN", - "message": "Thank you for making Payment", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_PAYMENT_SUCCESS_MESSAGE_SUB", - "message": "A notification regarding Payment Collection has been sent to building owner at registered Mobile No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_PAYMENT_TRANS_NO_LABEL", - "message": "Transaction No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_PAYMENT_TRANS_NO_PLACEHOLDER", - "message": "Enter transaction no.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_PDF_APPLICATION_DATE", - "message": "Application Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_PDF_APPLICATION_NO", - "message": "Application No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_PROCEED_PAYMENT", - "message": "Proceed to payment", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_PROPERTY_LOCATION_DETAILS_HEADER", - "message": "Property Location Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_SEARCH_SELECT_AT_LEAST_ONE_TOAST_MESSAGE", - "message": "Please fill at least one field to start search", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_SUMMARY_EDIT", - "message": "Edit", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_SUMMARY_FEE_EST", - "message": "Fee Estimate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_TASK_DETAILS_HEADER", - "message": "Application details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_TO_DATE_LABEL", - "message": "To Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_TO_DATE_PLACEHOLDER", - "message": "To Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_TYPE_LABEL", - "message": "NOC Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOC_VERIFICATION_INPROGRESS", - "message": "NOC Verification Is InProgress", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NONE", - "message": "None of the above", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NONRESIDENTIAL.COMMERCIAL", - "message": "Commercial", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOTIF_TEST_RESULT_NOT_AS_PER_BENCHMARK", - "message": "Lab results submitted for plant {Plant Name} for {Output} of {Stage} stage submitted on {Test Submitted Date} is not as per benchmark values.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOTIF_TEST_RESULT_NOT_SUBMITTED", - "message": "Lab results for plant {Plant Name} for {Output} of {Stage} stage scheduled on {Test Scheduled Date} has not yet been submitted.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NOT_SUPPORTED_FILE_TYPE", - "message": "File type not supported", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NO_FILE_UPLOADED", - "message": "No file was uploaded", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NO_TERMS_AND_CONDITIONS", - "message": "No Terms and Conditions", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NSS_ACTUAL_NOC_ISSUED_USAGETYPE", - "message": "New Fire NOCs by Usage Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NSS_WS_DASHBOARD", - "message": "Water & Sewerage Dashboard", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NURT_COMPLAINS", - "message": "Citizen Complaint Resolution System", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NURT_DASHBOARD", - "message": "National Urban Real-Time Dashboard", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NURT_FIRENOC", - "message": "Fire No Objection Certificate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NURT_MCOLLECT", - "message": "Miscellaneous Collection", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NURT_OVERVIEW", - "message": "Overview", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NURT_PROPERTY_TAX", - "message": "Property tax", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NURT_TRADE_LICENCE", - "message": "Trade licence", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NURT_WATER_SEWERAGE", - "message": "Water & Sewerage", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "Nawanshahr", - "message": "Nawanshahr", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "New TL", - "message": "New", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "NewTL", - "message": "New TL", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "OBPS", - "message": "Online Building Plan Approval System", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "OBPSAPPLICATIONSTATUSREPORT", - "message": "OBPS Application Status Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "OBPSDAILYCOLLECTIONREPORT", - "message": "OBPS Daily Collection Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "OBPS_DOCS_FILE_SIZE", - "message": "Maximum file size allowed is 5MB.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "OBPS_FAQ_S", - "message": "FAQs", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "OF_BILL_GEN_TO_AVOID_LATE_FEE", - "message": "of bill generation to avoid late fee.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ONE_OF_THESE_DOC_NEEDED", - "message": "One of these documents is needed to apply for this Service", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ONLINE", - "message": "Online", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ORG_CLASS_OR_RANK", - "message": "Class / Rank", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ORG_CONTACT_DETAILS", - "message": "Contact Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ORG_CONTACT_PERSON_NAME", - "message": "Contact person name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ORG_FUNC_CAT", - "message": "Functional Category", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ORG_FUNC_DETAILS", - "message": "Functional Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ORG_PROFILE", - "message": "Org Profile", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ORG_SUB_TYPE", - "message": "Organisation Sub Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ORG_TYPE", - "message": "Organisation Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ORG_VALIDATION_ERROR_DEPT", - "message": "Invalid Department Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ORG_VALID_FROM", - "message": "Valid from", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ORG_VALID_TO", - "message": "Valid To", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "OTHERS", - "message": "Others", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "OTHERS.BORING_MISTRY", - "message": "Boring - Mistry", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "OTHERS.HELPER_WELL_SINKER", - "message": "Helper to Well Sinker", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "OTHERS.WINCH_OPERATOR", - "message": "Winch - Operator", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "OTHERS_BORING_MISTRY", - "message": "Boring - Mistry", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "OTHERS_HELPER_WELL_SINKER", - "message": "Helper to Well Sinker", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "OTHERS_WINCH_OPERATOR", - "message": "Winch - Operator", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "OTP_VERIFICATION", - "message": "OTP Verification", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "OWNER.ADDRESSPROOF.ELECTRICITYBILL", - "message": "Address Proof Electricity Bill", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "OWNER.ADDRESSPROOF.GASBILL", - "message": "Gas Bill", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "OWNER.ADDRESSPROOF.WATERBILL", - "message": "Water Bill", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "OWNER.AUTHORIZATION.AFFIDAVIT", - "message": "Affidavit", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "OWNER.IDENTITYPROOF", - "message": "Identity Proof", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "OWNER.IDENTITYPROOF.AADHAAR", - "message": "Adhar card", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "OWNER.IDENTITYPROOF.DRIVINGLICENSE", - "message": "Driving License", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "OWNER.IDENTITYPROOF.PASSPORT", - "message": "Passport", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "OWNER.IDENTITYPROOF.VOTERID", - "message": "Voter ID", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "OWNER.REGISTRATIONPROOF.GIFTDEED", - "message": "Gift deed", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "OWNER.SPECIALCATEGORYPROOF.DEATHCERTIFICATE", - "message": "Death Certificate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "OWNER.USAGEPROOF.TRADELICENCE", - "message": "Trade License", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "OWNER_ADDRESSPROOF", - "message": "Address Proof", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "OWNER_ADDRESSPROOF_AADHAAR", - "message": "Adhaar Card", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "OWNER_ADDRESSPROOF_DL", - "message": "Driving License", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "OWNER_ADDRESSPROOF_ELECTRICITYBILL", - "message": "Electricity Bill", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "OWNER_ADDRESSPROOF_GASBILL", - "message": "Gas Bill", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "OWNER_ADDRESSPROOF_PAN", - "message": "PAN Card", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "OWNER_ADDRESSPROOF_PASSPORT", - "message": "Passport", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "OWNER_ADDRESSPROOF_VOTERID", - "message": "Voter Id", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "OWNER_ADDRESSPROOF_WATERBILL", - "message": "Water Bill", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "OWNER_AUTHORIZATION", - "message": "Owner Authorization", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "OWNER_AUTHORIZATION_AFFIDAVIT", - "message": "Affidavit", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "OWNER_IDENTITYPROOF", - "message": "Identity Proof", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "OWNER_IDENTITYPROOF_AADHAAR", - "message": "Aadhaar Card", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "OWNER_IDENTITYPROOF_DRIVING", - "message": "Driving License", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "OWNER_IDENTITYPROOF_DRIVINGLICENSE", - "message": "Driving License", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "OWNER_IDENTITYPROOF_PAN", - "message": "PAN Card", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "OWNER_IDENTITYPROOF_PASSPORT", - "message": "Passport", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "OWNER_IDENTITYPROOF_VOTERID", - "message": "Voter ID", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "OWNER_NAME", - "message": "Owner Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "OWNER_NAME_SAME", - "message": "Transferor and Transferee names are same", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "OWNER_NOC", - "message": "Owner NOC", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "Original Estimate", - "message": "O", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PAID", - "message": "Paid", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PAID_IN_LAST_12_MONTHS_TOWARDS_WS_CHARGES", - "message": "paid in last 12 months towards water charges.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PAINTER", - "message": "Painter", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PATTERN_MOBILENUMBER_FAILED", - "message": "Invalid Mobile Number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PAYMENT_BANK_BRANCH_LABEL", - "message": "Bank Branch", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PAYMENT_BANK_NAME_LABEL", - "message": "Bank Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PAYMENT_BILL_NO", - "message": "BILL NO.:", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PAYMENT_BND_CONSUMER_CODE", - "message": "Consumer Code", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PAYMENT_CARD_HEAD", - "message": "Card Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PAYMENT_CHEQUE_DATE_LABEL", - "message": "Cheque Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PAYMENT_CHEQUE_HEAD", - "message": "Cheque Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PAYMENT_CHQ_NO_LABEL", - "message": "Cheque No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PAYMENT_COLLECT", - "message": "Generate Receipt", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PAYMENT_COLLECT_LABEL", - "message": "Collect Payment", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PAYMENT_COMMON_APPLICATION_CODE", - "message": "Application No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PAYMENT_COMMON_CHALLAN_CODE", - "message": "Challan No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PAYMENT_COMMON_CHALLAN_CODE ", - "message": "Challan No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PAYMENT_COMMON_CHALLAN_CODE ", - "message": "Challan No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PAYMENT_COMMON_CONSUMER_CODE", - "message": "Consumer Code", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PAYMENT_CS_BUTTON_LABEL", - "message": "Pay", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PAYMENT_CS_HEADER", - "message": "Payment", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PAYMENT_CS_SELECT_METHOD", - "message": "Select Payment Method", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PAYMENT_CS_TOTAL_AMOUNT_DUE", - "message": "Total Amount Due", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PAYMENT_FAIL", - "message": "Payment Failed", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PAYMENT_FAILURE_MESSAGE", - "message": "Payment has failed!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PAYMENT_FAILURE_MESSAGE_DETAIL", - "message": "A notification regarding payment failure has been sent to property owner at registered Mobile No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PAYMENT_HEADER_CITIZEN", - "message": "Payment Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PAYMENT_HEADER_EMPLOYEE", - "message": "Collection Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PAYMENT_IFSC_CODE_LABEL", - "message": "IFSC Code", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PAYMENT_IPO_NO_LABEL", - "message": "IPO No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PAYMENT_IPO_NO_PLACEHOLDER", - "message": "Enter IPO No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PAYMENT_LOCALIZATION_RECIEPT_NO", - "message": "Reciept No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PAYMENT_LOCALIZATION_RESPONSE", - "message": "Response", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PAYMENT_MESSAGE_CITIZEN", - "message": "Payment has been made successfully!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PAYMENT_MESSAGE_DETAIL_CITIZEN", - "message": "A notification regarding Payment has been sent to owner at registered Mobile No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PAYMENT_MESSAGE_DETAIL_EMPLOYEE", - "message": "A notification regarding Payment Collection has been sent to owner at registered Mobile No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PAYMENT_MESSAGE_EMPLOYEE", - "message": "Payment has been collected successfully!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PAYMENT_MODE_HEAD", - "message": "Payment Mode", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PAYMENT_MODE_LABEL", - "message": "Payment mode", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PAYMENT_PAID_BY_HEAD", - "message": "Payer Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PAYMENT_PAID_BY_LABEL", - "message": "Paid By", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PAYMENT_PAID_BY_LABEL ", - "message": "Paid by:", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PAYMENT_PAYER_MOB_LABEL", - "message": "Payer Mobile No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PAYMENT_PAYER_MOB_LABEL ", - "message": "Payer Mobile Number:", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PAYMENT_PAYER_NAME_LABEL", - "message": "Payer Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PAYMENT_PAYER_NAME_LABEL ", - "message": "Payer Name:", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PAYMENT_RECEIPT_NO", - "message": "Payment Receipt No:", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PAYMENT_STATUS_INITIATED", - "message": "NA", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PAYMENT_SUCCESS", - "message": "Payment Success", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PAYMENT_TXN_DATE_LABEL", - "message": "Transaction Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PAYMENT_TXN_DATE_PLACEHOLDER", - "message": "dd/mm/yy", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PAYMENT_TXN_NO_LABEL", - "message": "Transaction No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PAYMENT_TXN_NO_PLACEHOLDER", - "message": "Enter Transaction no.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PAYMENT_TX_ERROR_MESSAGE", - "message": "Please enter a valid transaction date!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PAYMENT_UC_CONSUMER_CODE", - "message": "Consumer Code", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PAY_AMOUNT_TO_BE_PAID", - "message": "Amount to be Paid", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PAY_CUSTOM_AMOUNT", - "message": "Custom Amount", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PAY_FULL_AMOUNT", - "message": "Full Amount", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PAY_PARTIAL_AMOUNT", - "message": "Partial Amount", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PAY_PAYER_DETAILS", - "message": "Payer Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PAY_TOTAL_AMOUNT", - "message": "Total Amount", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PAY_VIA_WHATSAPP", - "message": "Pay Via WhatsApp", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PAY_WATER_CHARGES_BY", - "message": "Pay Water charges by", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PB_AMRITSAR_BAHADAUR_LABEL", - "message": "Bahadur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PB_AMRITSAR_BARNALA_LABEL", - "message": "Barnala", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PB_AMRITSAR_REVENUE_SU166", - "message": "Mohalla Majoran - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PB_AMRITSAR_REVENUE_SUN04", - "message": "Ajit Nagar - Area1:", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PB_AMRITSAR_REVENUE_SUN11", - "message": "Back Side 33 KVA Grid Patiala Road - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PB_JALANDHAR_BARNALA_LABEL", - "message": "Barnala", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PB_NAWANSHAHR_DHANAULA_LABEL", - "message": "Dhanaula", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LA BEL_CONSOLIDA TED_RECEIPT_C HALLAN_NO", - "message": "Challan No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABELWS_CONSOLIDATED_ACKNOWELDGMENT_TOTAL", - "message": "Total", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_APPLICATION_NUMBER_LABEL", - "message": "Application Number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_APPROVAL_DATE_LABEL", - "message": "Approval Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_BILL_AMENDMENT_ADJUSTMENT_AMOUNT_DETAILS", - "message": "Adjustment amount details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_BILL_AMENDMENT_APPLICATION", - "message": "Bill Amendment Application", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_BILL_AMENDMENT_APPLICATION_NUMBER", - "message": "Application Number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_BILL_AMENDMENT_ARREARS", - "message": "Arrears", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_BILL_AMENDMENT_COURT_ORDER", - "message": "Court Order", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_BILL_AMENDMENT_COURT_ORDER_NO", - "message": "Court Order No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_BILL_AMENDMENT_CREDIT_NOTE", - "message": "Debit Note", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_BILL_AMENDMENT_DEBIT_NOTE", - "message": "Credit Note", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_BILL_AMENDMENT_DEM_REV_BASIS", - "message": "Demand revision basis", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_BILL_AMENDMENT_DEM_REV_BAS_DET", - "message": "Demand revision basis details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_BILL_AMENDMENT_INTEREST", - "message": "Interest", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_BILL_AMENDMENT_NOTE_ADJUSTMENT_AMOUNT_DETAILS", - "message": "Adjustment Amount Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_BILL_AMENDMENT_NOTE_AGAINST", - "message": "Against:", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_BILL_AMENDMENT_NOTE_BOX_NOTE", - "message": "Note: The Approved Note amount will be automatically applied in the upcoming bill", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_BILL_AMENDMENT_NOTE_BOX_VALIDITY", - "message": "Note: Validity of the receipts generated for period in consideration for bill amendment will be considered as null and void", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_BILL_AMENDMENT_NOTE_DATE", - "message": "Date : ", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_BILL_AMENDMENT_NOTE_ID", - "message": "Note ID :", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_BILL_AMENDMENT_NOTE_RS", - "message": "RS", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_BILL_AMENDMENT_NOTE_TOTAL_AMOUNT", - "message": "Total Amount", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_BILL_AMENDMENT_PAST_BILLS", - "message": "Past Bills", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_BILL_AMENDMENT_PENALTY", - "message": "Penalty", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_BILL_AMENDMENT_REDUCED_AMOUNT", - "message": "Amount", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_BILL_AMENDMENT_SELF_DECLARATION", - "message": "Self Declaration", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_BILL_AMENDMENT_SEWERAGE_CHARGE", - "message": "Sewerage Charge", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_BILL_AMENDMENT_TAX_HEADS", - "message": "Tax Heads", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_BILL_AMENDMENT_TOTAL_AMOUNT", - "message": "Total Amount", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_BILL_AMENDMENT_WATER_CESS", - "message": "Water Cess", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_BILL_AMENDMENT_WATER_TAX", - "message": "Water Tax", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_BILL_AMENDMENT_WITH_EFFECT_FROM", - "message": "With effect from", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_ACKNOWELDGMENT_APPLICATION_NO", - "message": "Application No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_ACKNOWELDGMENT_DATE_LABEL", - "message": "Dt.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL", - "message": "Bill", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_ACKNOWLEDGEMENT", - "message": "Acknowledgement( For Official use only)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_ADHOC_PENALTY", - "message": "Adhoc Penalty", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_ADHOC_REBATE", - "message": "Adhoc Rebate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_ADJUSTMENT", - "message": "Adjustments/Paid", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_ADVANCEADJUSTED", - "message": "Advance Adjusted", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_ADVANCEAVAILABLE", - "message": "Advance Available", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_APP", - "message": "App", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_APPLICATION_NO", - "message": "Application Number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_ARREARS", - "message": "Arrears", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_ASSESSSMENT_PAYMENT", - "message": "4. A simple interest @ 2% per month will be charged in case of failure to pay property tax by due dates as above.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_BANK_UPI", - "message": "Use any Bank/UPI", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_BILLING_SUMMARY", - "message": "Billing Summary -", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_BILL_DUE_DATE", - "message": "Bill Due Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_BILL_NO", - "message": "Bill No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_BILL_PERIOD", - "message": "Bill Period", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_CANCER_CESS", - "message": "Cancer Cess", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_CHARGE", - "message": "Charge", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_CONSUMER_ID", - "message": "Consumer ID", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_CONSUMER_ID_PT", - "message": "Property Unique ID", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_CONSUMER_ID_TL", - "message": "Application Number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_CONSUMER_NO", - "message": "Consumer No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_CONSUMER_NUMBER", - "message": "Consumer Number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_DATE", - "message": "Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_DECIMAL_ADVANCE_CARRYFORWARD", - "message": "Advance CarryForward", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_DECIMAL_ADVANCE_ROUNDOFF", - "message": "RoundOff", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_DECIMAL_ARREARS", - "message": "Arrears", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_DECIMAL_CEILING_CREDIT", - "message": "Ceiling Credit", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_DECIMAL_CEILING_DEBIT", - "message": "Ceiling Debit", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_FIRE_CESS", - "message": "Fire Cess", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_IF_THE_TAX", - "message": "6. If the tax payers fail to pay the property tax within 15 days from the date of receipt of this Demand Bill 1955 (formerly GHMC Act 1955)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_IMPORTANT_MESSAGE", - "message": "Important Message", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_ISSUE_DATE", - "message": "Bill Issue Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_LOGO_HEADER", - "message": "Amritsar Muncipal Corporation", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_MOBILE_NO", - "message": "Mobile No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_NAME_ADDRESS", - "message": "Name & Address", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_OTHERS", - "message": "Others", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_OWNER_EXEMPTION", - "message": "Owner Exemption", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_PAYER_ADDRESS", - "message": "Payer Address", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_PAYER_NAME", - "message": "Payer Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_PAYMENT_RECEIVED", - "message": "1. 5% rebate will be given if tax is paid for both half years at a time before 30th April of current financial year.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_PENALTY", - "message": "Penalty", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_PLEASE_DEPOSIT", - "message": "5. Please bring this bill while paying at Office counter or eSeva or Mee Seva centers.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_PROPERTY_ID", - "message": "Property ID", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_REBATE", - "message": "Rebate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_RECEIVERS_SIGNATURE", - "message": "Receiver's Signature & Mobile No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_SCAN_PAY", - "message": "Scan Code to pay", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_THIS_DOCUMENT", - "message": "2. Property tax can be paid through: Cash or Cheque at eSeva, Mee Seva centres or Municipal Office or Online through Credit Card/Debitcard/Net Banking.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_THIS_IS", - "message": "3. Due dates for payment of property tax without interest for current financial year: First half year 30th June, Second half year: 31st December.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_TIME_INTEREST", - "message": "Time Interest", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_TL_APPLICATION_NO", - "message": "Application Number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_TOTAL", - "message": "Total", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_TOTAL_AMOUNT_DUE", - "message": "Total Amount due", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_TOTAL_PAYMENT", - "message": "Total Payment", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_BILL_UNIT_USAGE_EXEMPTION", - "message": "Unit Usage Exemption", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_PASS_CERTIFICATE", - "message": "Lockdown e-Pass", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_PASS_CITY_POLICE_LABLE", - "message": "Bengaluru City Police", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_PASS_CITY_POLICE_LABLE_MP", - "message": "Government of MP", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_PASS_LICENSE_VALIDITY_FROM", - "message": "Validity From", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_PASS_LICENSE_VALIDITY_TO", - "message": "Validity To", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_PASS_NO", - "message": "e-Pass Number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_PASS_PURPOSE_DETAIL_LABEL", - "message": "Purpose Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_PASS_PURPOSE_LABEL", - "message": "Purpose", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_PASS_PURPOSE_SUB_DETAIL_LABEL", - "message": "Purpose Sub Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_PASS_TRADE_OWNER_NAME", - "message": "Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_PASS_TRADE_SUB_TYPE", - "message": "Pass Sub-Category", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_PASS_TRADE_TYPE", - "message": "e-Pass Category", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_PASS_VEHICLE_COMPANY_LABLE", - "message": "Vehicle Company", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_PASS_VEHICLE_MODEL_LABLE", - "message": "Vehicle Model", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_PASS_VEHICLE_NUMBER_LABLE", - "message": "Vehicle Number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_ADVANCE_AMOUNT", - "message": "Advance Available", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_ADVANCE_AMOUNT_PAID", - "message": "Advance Amount Paid", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_AMOUNT_PER_TRIP", - "message": "Amount Per Trip", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_APPLICATION_NO", - "message": "Application no", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_BALANCE_AMOUNT_PAID", - "message": "Balance Amount Paid", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_BILLING_PERIOD", - "message": "Billing Period", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_BILL_AMOUNT", - "message": "Bill Amount", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_CHALLAN", - "message": "Challan Receipt", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_CHALLAN / PDF_STATIC_LABEL_CONSOLIDATED_BILL", - "message": "Challan /Bill", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_CHALLAN_DATE", - "message": "Challan Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_CHALLAN_FORM_NO", - "message": "Form GI No 16", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_CHALLAN_NO", - "message": "Challan No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_CHALLAN_RULE_NO", - "message": "Rule No 10", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_COMMISSIONER_EO", - "message": "Commissioner/EO", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_CONSUMER_ID", - "message": "Consumer ID", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_CONSUMER_ID_PT", - "message": "Property ID", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_CONSUMER_ID_PT_MUTATION", - "message": "Application No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_CONSUMER_ID_TL", - "message": "Application Number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_CONSUMER_NAME", - "message": "Consumer Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_CONSUMER_NO", - "message": "Consumer No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_DISCLAIMER", - "message": "DISCLAIMER", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_DISCLAIMER_1", - "message": "1. Payment received by cheque/demand draft shall be subject to realization.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_DISCLAIMER_2", - "message": "2. This document is not a proof of Property Ownership and regularization of unauthorized construction.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_DISCLAIMER_3", - "message": "3. This is a computer generated document", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_DISCLAIMER_4", - "message": "4. Excess amount paid will be adjusted against demand generated in next billing cycle.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_DISCLAIMER_5", - "message": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_DISCLAIMER_5", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_DISCLAIMER_FIFTH_LINE", - "message": "5. Please deposit property tax dues for earlier years also. Ignore", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_DISCLAIMER_FIRST_LINE", - "message": "1. Payment received by cheque/demand draft shall be subject to realization.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_DISCLAIMER_FIRST_LINE_UC", - "message": "1. Payment received by cheque/demand draft shall be subject to realization.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_DISCLAIMER_FOURTH_LINE", - "message": "4. Assessment & Payment is subject to verification/Scrutiny by competitive authority.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_DISCLAIMER_SECOND_LINE", - "message": "2. This document is not a proof of Property Ownership and regularization of unauthorized construction.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_DISCLAIMER_SIXTH_LINE", - "message": "6. Excess amount paid will be adjusted against demand generated in next billing cycle.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_DISCLAIMER_THIRD_LINE", - "message": "3. This is a computer generated document", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_EXCESS_AMOUNT_PAID", - "message": "Excess Amount", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_G8_RECEIPT_DATE", - "message": "G8 Receipt Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_G8_RECEIPT_NO", - "message": "G8 Receipt No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_GENERATED_BY", - "message": "Generated By", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_LETTER_FORM_NO", - "message": "Form GI No 16", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_LETTER_HEAD", - "message": "Reciept", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_LETTER_RULENO", - "message": "Rule No 10", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_LETTER_SECTION_NO", - "message": "Section No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_LOGO_HEADER", - "message": "Amritsar Muncipal Corporation", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_NOC_1", - "message": "1. Above Details cannot be used as ownership proof.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_NOC_2", - "message": "2. This is digitally created cerificate, no signature is needed.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_NOC_3", - "message": "3. Payment is subject to verification/Scrutiny by the competitive authority.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_NO_OF_TRIP", - "message": "No. Of Trips", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_NO_SIGNATURE", - "message": "This is Computer generated receipt, Signature is not required", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_PAID_AMOUNT", - "message": "Paid Amount", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_PAYER_CONTACT", - "message": "Payer Contact", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_PAYER_NAME", - "message": "Payer Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_PAYMENT_DATE", - "message": "Payment Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_PAYMENT_MODE", - "message": "Payment Mode", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_PAYMENT_RECEIPT", - "message": "Payment Receipt", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_PAYMENT_STATUS", - "message": "Payment Status", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_PENDING_AMOUNT", - "message": "Pending Amount", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_RECEIPT_NO", - "message": "Receipt No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_SERVICE_TYPE", - "message": "Service Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_TO", - "message": "to", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_TOTAL_AMOUNT", - "message": "Total Amount", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_TOTAL_AMOUNT_DUE", - "message": "Total Amount Due", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_TOTAL_BILL_AMOUNT", - "message": "Total Bill Amount", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_RECEIPT_TRANSACTION_ID", - "message": "Transaction ID", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_SERVICE_CATEGORY", - "message": "Service Category", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_SLA_DATE", - "message": "days to our office.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_ACCESORY_COUNT", - "message": "Accesory Count", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_ACCESORY_TYPE", - "message": "Accesory Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_APPLICATION_NO", - "message": "Application No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_APPLICATION_TYPE", - "message": "Application Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_BUILDING_COLONY_NAME", - "message": "Building/Colony Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_CITY", - "message": "City", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_CORRESPONDANCE_ADDRESS", - "message": "Correspondence Address", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_DATE_OF_BIRTH", - "message": "Date of Birth", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_DOCUMENTS", - "message": "Documents", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_DOOR_HOUSE_NO", - "message": "Door/House No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_ELECTRICITY_CONNECTION_NO", - "message": "Electricity Connection No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_EMAIL", - "message": "Email", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_FATHER_HUSBAND", - "message": "Father/Husband's Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_GENDER", - "message": "Gender", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_LICENSE_TYPE", - "message": "License Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_LOGO_HEADER", - "message": "Trade License Application", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_MOBILE_NO", - "message": "Mobile No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_MOHALLA", - "message": "Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_NAME", - "message": "Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_NO_OF_EMPLOYEES", - "message": "No. Of Employees", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_OLD_APPLICATION_NUMBER", - "message": "Old Application Number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_OPERATIONAL_AREA", - "message": "Operational Area (Sq Ft)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_OWNERSHIP_PHOTO", - "message": "Owner's Photo", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_OWNERSHIP_PROOF", - "message": "Ownership Proof", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_OWNERS_ID", - "message": "Owner's ID Proof", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_OWNER_DETAILS", - "message": "Owner Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_PAN_NO", - "message": "PAN No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_PENALTY", - "message": "Penalty", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_PINCODE", - "message": "Pincode", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_PROPERTY_ASSESSMENT_ID", - "message": "Property Assessment ID", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_REBATE", - "message": "Rebate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_RELATIONSHIP", - "message": "Relationship", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_RUPEE", - "message": "₹", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_SPECIAL_OWNER", - "message": "Special Owner Category", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_STREET_NAME", - "message": "Street Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_STRUCTURE_SUB_TYPE", - "message": "Structure Sub Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_STRUCTURE_TYPE", - "message": "Structure Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_SUB_OWNERSHIP", - "message": "Type of sub-ownership", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_TOTAL_AMOUNT", - "message": "Total Amount", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_TRADE_CATEGORY", - "message": "Trade Category", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_TRADE_COMMENCEMENT", - "message": "Trade Commencement Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_TRADE_DETAILS", - "message": "Trade Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_TRADE_GST", - "message": "Trade GST No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_TRADE_LICENSE", - "message": "Trade License Tax", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_TRADE_NAME", - "message": "Trade Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_TRADE_SUB_TYPE", - "message": "Trade Sub-Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_TRADE_TYPE", - "message": "Trade Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_TYPE_OF_OWNERSHIP", - "message": "Type of ownership", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_UOM", - "message": "UOM", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_UOM_MEASUREMENT", - "message": "UOM (Unit Of Measurement)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLAPP_UOM_VALUE", - "message": "UOM value", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLCERTIFICATE_ACCESSORIES_LABEL", - "message": "Accessories", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLCERTIFICATE_APPLICATION_NO", - "message": "Application No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLCERTIFICATE_APPROVED_BY", - "message": "Approved by", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLCERTIFICATE_COMMISSIONER", - "message": "Commissioner/EO", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLCERTIFICATE_FINANCIAL_YEAR", - "message": "Financial Year", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLCERTIFICATE_LICENSE_CERTIFICATE", - "message": "Trade License Certificate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLCERTIFICATE_LICENSE_CORPORATION_CONTACT", - "message": "Contact", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLCERTIFICATE_LICENSE_CORPORATION_EMAIL", - "message": "Email", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLCERTIFICATE_LICENSE_CORPORATION_WEBSITE", - "message": "Website", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLCERTIFICATE_LICENSE_DISCLAIMER_BODY", - "message": "Please carry valid ID proof along with the Curfew e-Pass.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLCERTIFICATE_LICENSE_DISCLAIMER_BODY_FIFTH", - "message": "5. All Pass holders to observe all COVID19 social distancing and hygiene protocols instructions as issued by the government from time to time mandatorily .", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLCERTIFICATE_LICENSE_DISCLAIMER_BODY_FIRST", - "message": "1. Lockdown e-Pass is only valid upon showing any of the ID proofs which include Aadhar Card Driving License and Voter ID Card.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLCERTIFICATE_LICENSE_DISCLAIMER_BODY_FOURTH", - "message": "4. Only travel if you are healthy and fit to travel.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLCERTIFICATE_LICENSE_DISCLAIMER_BODY_SECOND", - "message": "2. Lockdown e-Pass is only valid till 2 days from the date of issue.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLCERTIFICATE_LICENSE_DISCLAIMER_BODY_SEVENTH", - "message": "7. This e-Pass Certificate can be validated using in any QR code scanner", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLCERTIFICATE_LICENSE_DISCLAIMER_BODY_SIXTH", - "message": "6. All Pass holders should report to the local health department / District administration on reaching their destination and give information of their travel. If necessary, to comply with sample giving / test formalities as necessitated by local authority.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLCERTIFICATE_LICENSE_DISCLAIMER_BODY_THIRD", - "message": "3. This e-Pass is only valid for a one time use", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLCERTIFICATE_LICENSE_DISCLAIMER_HEADING", - "message": "Guideline", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLCERTIFICATE_LICENSE_ISSUE_DATE", - "message": "License Issue Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLCERTIFICATE_LICENSE_NO", - "message": "Trade License No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLCERTIFICATE_LICENSE_VALIDITY", - "message": "License Validity", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLCERTIFICATE_LICENSE_VALIDITY_DATE", - "message": "e-Pass Valid Till", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLCERTIFICATE_MUNICIPAL_CORPORATION", - "message": "Municipal Corporation", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLCERTIFICATE_RECIEPT_NO", - "message": "Reciept No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLCERTIFICATE_RENEWAL_APPLICATION_NO", - "message": "Renewal Application No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLCERTIFICATE_TRADE_ADDRESS", - "message": "Trade Address", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLCERTIFICATE_TRADE_LICENSE_FEE", - "message": "Trade License Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLCERTIFICATE_TRADE_NAME", - "message": "Trade Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLCERTIFICATE_TRADE_OWNER_CONTACT", - "message": "Trade Owner Contact", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLCERTIFICATE_TRADE_OWNER_NAME", - "message": "Trade Owner Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSOLIDATED_TLCERTIFICATE_TRADE_TYPE", - "message": "Trade Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_CONSUMER_NUMBER_LABEL", - "message": "Consumer Number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_ESTIMATE_WARD", - "message": "Ward", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_FSM_RECEIPT_COMMISSIONER_EO", - "message": "Commissioner/EO", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_FSM_RECEIPT_CONSUMER_ID", - "message": "Application No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_FSM_RECEIPT_DISCLAIMER_FIRST_LINE", - "message": "Payment received by cheque/demand draft shall be subject to realization.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_FSM_RECEIPT_DISCLAIMER_SECOND_LINE", - "message": "This document is not a proof of Property Ownership", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_FSM_RECEIPT_DUE_AMOUNT", - "message": "Total Amount Rs", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_FSM_RECEIPT_PAID_AMOUNT", - "message": "Amount Paid Rs.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_FSM_RECEIPT_PAYER_NAME", - "message": "Paid By", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_FSM_RECEIPT_PAYMENT_DATE", - "message": "Paid On", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_FSM_RECEIPT_PAYMENT_MODE", - "message": "Mode of Payment", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_MDMS_MUNICIPAL_CORPORATION", - "message": "Municipal Corporation", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_MUATATION_APPROVAL_CERTIFICATE", - "message": "Mutation Approval Certificate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_MUATATION_NUMBER_LABEL", - "message": "Mutation Number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_MUATATION_PROPERTY_ID_LABEL", - "message": "Property ID", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_MUTATION_DECLARATION_LABEL", - "message": "In exercise of the power vested with the Municipal Commissioner under Section 207 and 208 of Municipal Corporations Act 1955) on the request made by applicant and based on the strength of documentary evidence produced the transfer of the title is hereby effected on the building premises within the Corporation limits as follows:-", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_MUTATION_DECLARATION_LABEL_PB_AMRITSAR", - "message": "In exercise of the power vested with the Municipal Commissioner under Section 207 and 208 of Municipal Corporations Act 1955) on the request made by applicant and based on the strength of documentary evidence produced the transfer of the title is hereby effected on the building premises within the Corporation limits as follows:-", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_MUTATION_DECLARATION_LABEL_PB_NAWANSHAR", - "message": "In exercise of the power vested with the Municipal Commissioner under Section 207 and 208 of Municipal Corporations Act 1955) on the request made by applicant and based on the strength of documentary evidence produced the transfer of the title is hereby effected on the building premises within the Corporation limits as follows:-", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_MUTATION_DECLARATION_LABEL_STATEA_CITYA", - "message": "In exercise of the power vested with the Municipal Commissioner under Section 207 and 208 of Municipal Corporations Act,1994(formerly MCA ACT,1955) on the request made by applicant and based on the strength of documentary evidence produced, the transfer of the title is hereby effected on the building premises within the Corporation limits as follows:-", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_MUTATION_EMAIL", - "message": "Email", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_MUTATION_FAX", - "message": "Fax", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_MUTATION_TO_LABEL", - "message": "To", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_MUTATION_WEBSITE", - "message": "Website", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_ORDER_LABEL", - "message": "Order", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_PASS_APPROVER", - "message": "Caralyn Khongwar Deshmukh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_PASS_APPROVER_CONTACT", - "message": "0755-2475603", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_PASS_APPROVER_POSITION", - "message": "OSD & Commissioner", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_PASS_FROM_DISTRICT", - "message": "From District", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_PASS_FROM_STATE", - "message": "From State", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_PASS_TO_DISTRICT", - "message": "To District", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_PASS_TO_STATE", - "message": "To State", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_RECEIPT_NUMBER_LABEL", - "message": "Reciept Number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_SHRI_SMT_LABEL", - "message": "Shri/Smt", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_SW_CONSOLIDATED_ACKNOWELDGMENT_LOGO_SUB_HEADER", - "message": "Sewerage Connection Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_TRANSFERREE_LABEL", - "message": "Transferree Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_TRANSFERRER_LABEL", - "message": "Transferrer Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS _CONSOLIDATED_ACKNOWELDGMENT_TOTAL", - "message": "Total", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_ADDITIONAL_COMMENTS", - "message": "Additional Comments", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_APPLICATION_OF_LABEL", - "message": "Application of", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_BILL_ASSESSSMENT_PAYMENT", - "message": "4. Payment mode available: Cash/Cheque at office counter,Online: Credit/Debit Card.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONNECTION_HOLDER_DETAILS", - "message": "Connection Holder Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONNECTION_LABEL", - "message": "connection", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_ACTIVATION_DETAILS_HEADER", - "message": "Activation Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_ADDITIONAL_COMMENTS_VALUES", - "message": "connection will be sanctioned after the full payment of estimation fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_ADDITIONAL_CONNECTION_HEADER", - "message": "Additional Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_ADDRESS", - "message": "Address", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_AMOUNT", - "message": "Amount", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_APPLICATION_FEE", - "message": "Application Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_APPLICATION_NO", - "message": "Application No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_APPLICATION_NUMBER", - "message": "Application Number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_APPLY_CATEGORY", - "message": "Apply For", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_APPROVED_BY", - "message": "Approved By Designated Officer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_APP_DATE", - "message": "Application Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_AREA_LABEL", - "message": "Area (in sq ft)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_BUILDING", - "message": "Building / Colony Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_BUILDING_PLAN", - "message": "Building Plan / Completion Certificate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_CITY", - "message": "City", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_COMMISSIONER_LABEL", - "message": "Commissioner / EO", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_CONNECTION_CAT", - "message": "Connection Category", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_CONNECTION_DETAILS_HEADER", - "message": "Connection Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_CONNECTION_EXECUTION_DATE", - "message": "Connection Execution Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_CONNECTION_HEADER", - "message": "Connection", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_CONNECTION_HOLDER_DETAILS_HEA\nDER", - "message": "Connection Holder Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_CONNECTION_HOLDER_DETAILS_HEADER", - "message": "Connection Holder Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_CONNECTION_TYPE", - "message": "Connection Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_CONSUMER_NO", - "message": "Consumer No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_COPY_MESSAGE1", - "message": "Copy to Asst Engineer Water Supply with a direction to issue tap connection to the above premises and initiate the date of connection.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_COPY_MESSAGE2", - "message": "Copy to Asst Engineer Water Supply with a direction to get the road cutting portion repaired within a week and report compliance.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_COPY_MESSAGE_SUB1", - "message": "connection to the above premises and initiate the date of connection.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_CORRESPONDENCE_ADDRESS", - "message": "Correspondence Address", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_CORRESPONDING_ADDRESS", - "message": "Correspondence Address", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_CORR_ADDRESS", - "message": "Correspondence Address", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_DATED_LABEL", - "message": "Dated", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_DEN_TYPE", - "message": "Rs.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_DISCONNECTION_PROPOSED_DATE", - "message": "Disconnection proposed date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_DISCONNECTION_REASON", - "message": "Reason for Disconnection", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_DISCONNECTION_TYPE", - "message": "Disconnection Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_DOB", - "message": "Date of Birth", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_DONATION", - "message": "Donation", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_DOOR_HOUSE_NO", - "message": "Door / House No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_DOOR_NO_LABEL", - "message": "Door No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_ELECTRICITY_BILL", - "message": "Electricity Bill", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_EMAIL", - "message": "Email", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_ESTIMATION_HEADER", - "message": "Estimate For", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_ESTIMATION_NOTICE_HEADER", - "message": "Estimation Notice", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_FEES_ESTIMATE_HEADER", - "message": "Fee Estimate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_FOOTER", - "message": "This is a computer generated document, Hence requires no signature.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_FORM_FEE", - "message": "Form Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_FOR_COMMISSIONER_LABEL", - "message": "For Commissioner", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_GENDER", - "message": "Gender", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_GRAND_TOTAL", - "message": "Grand Total", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_GUARDIAN", - "message": "Guardian", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_GUARDIAN_NAME", - "message": "Father / Husband's Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_HOLDER_NAME", - "message": "Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_INITIAL_METER_READING", - "message": "Initial meter reading (KL)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_IN_REF_LABEL", - "message": "n the reference 1st cited,Sri/Smt", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_LOCALITY", - "message": "Locality / Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_LOCALITY_LABEL", - "message": "Locality", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_LOCATION_DETAILS_HEADER", - "message": "Property Location Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_LOCATION_ON_MAP", - "message": "Location on Map", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_LOGO_HEADER", - "message": "Amritsar Muncipal Corporation", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_LOGO_SUB_HEADER", - "message": "Municipal Corporation Amritsar, Town Hall, Amritsar, Punjab. 0183-2545155 | www.amritsarcorp.com | cmcasr@gmail.com", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_METER_ID", - "message": "Meter ID", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_METER_INSTALLATION", - "message": "Meter Installation Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_METER_INSTALLATION_DATE", - "message": "Meter installation Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_MOBILE_NO", - "message": "Mobile Number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_MODIFY_EFFECTIVE_DATE_HEADER", - "message": "Modification Effective From", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_NO_OF_FLOOR", - "message": "No. of Floors", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_NO_OF_TAPS", - "message": "Number of Taps", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_NO_OF_TOILETS", - "message": "No. of Toilets", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_NO_OF_TOILETSS", - "message": "No. of Toilets", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_NO_OF_WATER_CLOSETS", - "message": "No. of Water Closets", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_NO_OF_WATER_CLOSETS_PROPOSED", - "message": "No. of water closets proposed", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_NO_OF_WATER_TOILETS_PROPOSED", - "message": "No. of water toilets proposed", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_ONE_TIME_FEE", - "message": "One Time Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_ORDER_DATA2", - "message": "Therefore sanction is hereby accorded for execution of 1/2,3/4 new", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_ORDER_DATA3", - "message": "connection on tap rate /Meter rate to the above premises with", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_ORDER_ISSUED", - "message": "Orders issued.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_ORDER_LABEL", - "message": "Order:", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_ORDER_MESSAGE1", - "message": "has submitted an application seeking", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_ORDER_MESSAGE2", - "message": "to the house bearing D.No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_ORDER_MESSAGE3", - "message": "and paid the following amounts towards donation and other changes.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_OTHER_CHARGE", - "message": "Other Charge", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_OWNERSHIP_PROOF", - "message": "Address Proof", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_OWNERS_ID_PROOF", - "message": "Owner's ID Proof", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_OWNER_CATEGORY", - "message": "Owner Category", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_OWNER_DETAILS_HEADER", - "message": "Property Owner Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_OWNER_MOB_NUM", - "message": "Owner Mobile Number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_OWNER_NAME", - "message": "Owner Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_PENALTY", - "message": "Penalty", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_PENALTY_COMMENTS", - "message": "Comments", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_PINCODE", - "message": "Pincode", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_PIPE_SIZE", - "message": "Pipe Size", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_PIPE_SIZE_PROPOSED", - "message": "Pipe Size proposed (in inches)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_PLOT", - "message": "Plot / House / Survey No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_PLOT_SIZE", - "message": "Plot Size (in sq meters)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_PLUMBER_DETAILS_HEADER", - "message": "Plumber Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_PLUMBER_LICENSE_NO", - "message": "Plumber Licence No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_PLUMBER_MOBILE_NO", - "message": "Plumber Mobile No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_PLUMBER_NAME", - "message": "Plumber Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_PLUMBER_PROVIDED_BY", - "message": "Plumber Provided By", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_PLUMBER_REPORT", - "message": "Plumber Report / Drawing", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_PRESENTED_BY", - "message": "Present:", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_PROPERTY_ADDRESS", - "message": "Property Address", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_PROPERTY_DETAILS_HEADER", - "message": "Property Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_PROPERTY_ID", - "message": "Property ID", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_PROPERTY_LOCATION_HEADER", - "message": "Property Location Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_PROPERTY_TAX_RECEIPT", - "message": "Property Tax Reciept", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_PROPERTY_TYPE", - "message": "Property Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_PROPERTY_USAGE_SUB_TYPE", - "message": "Property Sub Usage Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_PROPERTY_USAGE_TYPE", - "message": "Property Usage Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_RAINWATER_HARVESTING_FACILITY", - "message": "Rainwater harvesting Facility", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_RAIN_HARV_FAC", - "message": "Rainwater Harvesting Facility", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_REBATE", - "message": "Rebate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_REF_LEBEL", - "message": "Ref:", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_REF_MESSAGE1", - "message": "Application of Sri/Smt", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_REF_MESSAGE2", - "message": "Remarks of the Municipal Engineer, Dated", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_RELATIONSHIP", - "message": "Relationship", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_ROAD_CHARGE", - "message": "Road Cutting Charge", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_ROAD_CHARGES_HEADER", - "message": "Road Cutting Charges", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_ROAD_TYPE", - "message": "Road Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_ROUNDOFF", - "message": "Round Off", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_SCRUTINY_FEE", - "message": "Scrutiny Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_SECURITY_CHARGE", - "message": "Security Charge", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_SECURITY_DEPOSIT_LABEL", - "message": "Security Deposit", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_SERIAL_NO", - "message": "Sl No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_SERVICE", - "message": "Service", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_SERVICE_DETAILS_HEADER", - "message": "SERVICE DETAILS", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_SERVICE_FEE", - "message": "Service Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_SEWERAGE", - "message": "Sewerage", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_SEWERAGE_APPLICATION", - "message": "Sewerage Application", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_SPECIAL_APPLICANT_CATEGORY", - "message": "Special Applicant Category", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_SRI_SMT_LABEL", - "message": "Sri/Smt", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_STATUS", - "message": "Status", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_STREET", - "message": "Street Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_STREETNAME", - "message": "Street Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_SUB_DATA1", - "message": "Connection - Sanction of", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_SUB_DATA2", - "message": "connection to the house bearing Door No-", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_SUB_LEBEL", - "message": "Sub:", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_SUPERVISION_CHARGE_LABEL", - "message": "15% Supervision Charges", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_TAPS", - "message": "No. of taps", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_TAPS_PROPOSED", - "message": "No. Of taps proposed", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_TAX_LABEL", - "message": "Tax", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_THE_LABEL", - "message": "The", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_TOTAL_AMOUNT", - "message": "Total Amount", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_TO_LABEL", - "message": "To,", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_UAT", - "message": "UAT", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_UNIT_OF_MEASUREMENT", - "message": "Unit of Measurement", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_USAGE_TYPE", - "message": "Usage Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_USER_NAME", - "message": "Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_WATER", - "message": "Water", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_WATER_APPLICATION", - "message": "Water Application", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_WATER_CLOSETS", - "message": "Water Closets", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_WATER_CONNECTIONDETAIL", - "message": "Water Connection Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_WATER_SOURCE", - "message": "Water Source", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ACKNOWELDGMENT_WATER_SUB_SOURCE", - "message": "Water Sub Source", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_APPROVAL_EXECUTIVE_OFFICER", - "message": "Approved By Executive Officer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_BILLING_CYCLE", - "message": ". Bill will be generated from the next billing cycle.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_COMPUTER_GENERATED_DOCUMENT", - "message": "This is a computer generated document, Hence requires no signature.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_CONCERNED_PLUMBER_ALLOTED", - "message": "Concerned plumber allotted to you is", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_CONCERNED_PLUMBER_CONTACT", - "message": ", Contact No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_CONCERNED_PLUMBER_LICENCE", - "message": ", Licence No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_CONNECTION_CONSUMER_LABEL", - "message": "connection, consumer no.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_CONNECTION_HOLDER_DETAIL_HEADER", - "message": "Connection Holder Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_CONNECTION_SANCTIONED", - "message": "connection now being sanctioned is allotted with an identification bearing Application No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_CURRENT_METER_READING_LABEL", - "message": "Current Meter Reading", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_DATED_IN_LOWER_CASE", - "message": "dated", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_DATE_LABEL", - "message": "Date :", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_DISCONNECTION_BILLINGDETAILS_LABEL", - "message": "Billing Details (As on approval of application)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_DISCONNECTION_BILLINGPERIOD_LABEL", - "message": "Billing Period", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_DISCONNECTION_BILLING_AMOUNT_LABEL", - "message": "Billing Amount", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_DISCONNECTION_BILLING_DATE_LABEL", - "message": "Billing Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_DISCONNECTION_BILLING_NUMBER_LABEL", - "message": "BIll Number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_DISCONNECTION_DETAIL_HEADER", - "message": "Disconnection Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_DISCONNECTION_DUE_DATE_LABEL", - "message": "Due date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_DISCONNECTION_IN_REF_LABEL", - "message": "In the reference read above, you have submitted an application, application no", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_DISCONNECTION_LOWERCASE_TO_LABEL", - "message": "to", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_DISCONNECTION_NOTE_LABEL", - "message": "Note:", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_DISCONNECTION_NOTE_MESSAGE", - "message": "On failure of payment of dues before the due date bill for the subsequent billing period will be generated.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_DISCONNECTION_NOTICE", - "message": "Disconnection Notice", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_DISCONNECTION_ORDER_MESSAGE", - "message": "Therefore, the application of disconnection has been approved and the final bill for the charges has been generated and detail is mentioned below. Clear the dues if any before the due date in order to proceed with execution of disconnection and stop the billing.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_DOCUMENTS_DETAILS_HEADER", - "message": "Documents", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_DOCUMENT_DETAILS_HEADER", - "message": "Documents", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_DOCUMENT_DETAIL_HEADER", - "message": "Documents", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ESTIMATION_NOTICE_NO", - "message": "Estimate Notice generated for application no-", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_FURTHER", - "message": "Further, the", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ORDER", - "message": "Order :", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_ORDER_DESCRIPTION", - "message": "In the reference 1st read above, you have submitted an application with application number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_PLUMBER_INFO", - "message": ". Please get the connection executed from the concerned plumber and intimate about the connection execution date within", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_PREPARATION_NOTICE", - "message": "was prepared and served to you via notice, reference 2nd read above. Therefore,", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_REFERENCE", - "message": "Reference :", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_RUPEE", - "message": "₹", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_SAID_PREMISES", - "message": "in the above said premises.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_SANCTION_LETTER", - "message": "Sanction Letter", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_SEEKING", - "message": "seeking", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_SEEKING_DICONNECTION_LABEL", - "message": "seeking disconnection of", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_SEEKING_ESTIMATE_AMOUNT", - "message": ". As per your request an estimate of Rs.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_SERVICE_PAYMENT", - "message": "Connection is hereby sanctioned after the full payment of estimation fees of Rs.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_SUBJECT", - "message": "Subject :", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_SUNAM_DEV_MUNICIPAL_COUNCIL", - "message": "Sunam-DEV Municipal Council", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_TAX_CESS", - "message": "Tax and Cess", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSOLIDATED_WATER_TAP_CONNECTION", - "message": "connection in the premises bearing", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_CONSUMER_NO_LABEL", - "message": "consumer no", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_DISCONNECTION_OF_LABEL", - "message": "Disconnection of", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_MDMS_MUNICIPAL_CORPORATION_LOGO_HEADER", - "message": "Municipal Corporation", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABEL_WS_MUNCIPAL_COMMISIONER_LABEL", - "message": "Municipal Commissioner/Executive Officer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABE_CONSOLIDATED_RE CEIPT_BILL_AMOUNT", - "message": "Bill Amount", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_STATIC_LABE_CONSOLIDATED_RECEIPT_BILL_AMOUNT", - "message": "Bill Amount", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PDF_SYSTEM_GENERATED_ACKNOWLEDGEMENT", - "message": "- Note: This is a system generated acknowledgement and does not need any signature", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PENDINGAPPROVAL", - "message": "Pending approval", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PENDINGDOCVERIFICATION", - "message": "Pending for Document Verification", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PENDINGPAYMENT", - "message": "Pending payment", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PENDING_APPL_FEE", - "message": "Pending Application Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PENDING_APPL_FEE_PAYMENT", - "message": "Pending for Payment", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PENDING_DSO_APPROVAL", - "message": "Pending for DSO Approval", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PENDING_FEE", - "message": "Pending For Payment", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PENDING_SANC_FEE_PAYMENT", - "message": "Pending Sanction Fee Payment", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PERMIT REVOCATION", - "message": "PERMIT REVOCATION", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PERMITS_ISSUED_IN_LAST_12_MONTHS", - "message": "permits issued in the last 12 months.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PERMIT_REVOCATION", - "message": "Permit Revocation", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG.CITYA_ADMIN_B1", - "message": "Ward One", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG.CITYA_ADMIN_B2", - "message": "Ward two", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG.CITYA_ADMIN_B3", - "message": "Ward three", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG.CITYA_ADMIN_B4", - "message": "Ward four", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG.CITYA_ADMIN_SUN01", - "message": "Rajan Wala (both sides) - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG.CITYA_ADMIN_SUN02", - "message": "Gugga Maadi Road (east side) - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG.CITYA_ADMIN_SUN03", - "message": "Singhkiyan (Nothern Side) - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG.CITYA_ADMIN_SUN10", - "message": "Ajit Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG.CITYA_ADMIN_SUN11", - "message": "Bakhtaur Nagar - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG.CITYA_ADMIN_SUN12", - "message": "Gurudwara Niai Sahib Street 1 - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG.CITYA_ADMIN_SUN20", - "message": "Cinema Road - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG.CITYA_ADMIN_SUN21", - "message": "Chandar Colony Biggarwal Road - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG.CITYA_ADMIN_SUN22", - "message": "Bigharwal Chowk to Railway Station - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG.CITYA_ADMIN_SUN30", - "message": "Babu Labh Singh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG.CITYA_ADMIN_SUN31", - "message": "Dera Preet Nagar Jhuggia", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG.CITYA_ADMIN_SUN32", - "message": "Jawala Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG.CITYA_ADMIN_SUN33", - "message": "Nagra Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PGR", - "message": "Citizen Complaint Resolution System", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PGR_CREATE_ANOTHER_COMPLAIN", - "message": "Create Another Complaint", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PGR_INBOX", - "message": "Inbox", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PGR_SEARCH_RESULTS_HEADING", - "message": "Search Citizen Complaint", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_ADDISABABA_ADMIN_ADD01", - "message": "Sabiyan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_ADDISABABA_ADMIN_ADD02", - "message": "Melka Jebdu", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_AMHARA_ADMIN_AMR01", - "message": "Adama", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_AMHARA_ADMIN_AMR02", - "message": "Piasa", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_REVENUE_VIL1", - "message": "Sahadevkhunta, Chandmaripadia", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_REVENUE_VIL10", - "message": "Srikanthapur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_REVENUE_VIL11", - "message": "Gopalgaon", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_REVENUE_VIL12", - "message": "Bagbrundaban", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_REVENUE_VIL13", - "message": "Mallikashpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_REVENUE_VIL14", - "message": "Kadarabad", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_REVENUE_VIL15", - "message": "Mansinghabazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_REVENUE_VIL16", - "message": "Nalamganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_REVENUE_VIL17", - "message": "Bateswar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_REVENUE_VIL18", - "message": "Suelpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_REVENUE_VIL19", - "message": "Manikhamb", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_REVENUE_VIL2", - "message": "Sovarampur, Gudipada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_REVENUE_VIL20", - "message": "Barabati", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_REVENUE_VIL21", - "message": "Damdorpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_REVENUE_VIL22", - "message": "Noorpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_REVENUE_VIL23", - "message": "Akatpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_REVENUE_VIL24", - "message": "Kasaba", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_REVENUE_VIL25", - "message": "Mahammodpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_REVENUE_VIL26", - "message": "Sunhat", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_REVENUE_VIL27", - "message": "Purunabalasore, Farsidinga", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_REVENUE_VIL28", - "message": "Patrapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_REVENUE_VIL29", - "message": "Bagbrundaban(P), Old stadium area, Hospital Area, Convent school Area & permit Field Area", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_REVENUE_VIL3", - "message": "Angargadia, Bikash Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_REVENUE_VIL30", - "message": "Bagbrundaban(P), Manikhamb(p), Mirzapokhari Area, Daftari Sahi Area", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_REVENUE_VIL31", - "message": "Barabati, Manikhamb(P), Damodarpur(P) & Barabati Girls High School area, Balighat Area", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_REVENUE_VIL32", - "message": "Manikhamb(P), RN Dey Street, Dingamardinga Area", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_REVENUE_VIL33", - "message": "Gopalgaon, Srikanthapur(P) Sabitri School Area, Chunabhati Area", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_REVENUE_VIL34", - "message": "Srikanthapur(P), Jadpur(P), Vetenary Hospital Area & Darjo Pokhari Area", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_REVENUE_VIL35", - "message": "Jadpur(P) Arad Bazar Area, Golapolo Area", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_REVENUE_VIL4", - "message": "Isan Nagar, Rameswar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_REVENUE_VIL5", - "message": "Padhunpada, Azimabad", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_REVENUE_VIL6", - "message": "Chandragadia, Azimabad", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_REVENUE_VIL7", - "message": "Bhaskarganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_REVENUE_VIL8", - "message": "Jadpur, Arad Bazar, Darji Pokhori, Golapolo", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_REVENUE_VIL9", - "message": "Aktiarpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL10_SL001", - "message": "Mahammadpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL10_SL002", - "message": "Kanhu Behera Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL10_SL003", - "message": "Munipada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL10_SL004", - "message": "Malik Sahi-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL10_SL005", - "message": "Malik Sahi-2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL10_SL006", - "message": "Uchhapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL10_SL007", - "message": "Mansing Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL10_SL008", - "message": "Khaparapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL10_SL009", - "message": "Angaragadia Cold Store", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL10_SL010", - "message": "Angaragadia Rameswar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL10_SL011", - "message": "Angargadia DIC Office", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL10_SL012", - "message": "Angargadia Rameswar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL10_SL013", - "message": "Bateswar Sweeper Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL10_SL014", - "message": "Nua Bazar Adi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL10_SL015", - "message": "Arad bazar-3", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL10_SL016", - "message": "Nua Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL10_SL017", - "message": "Aradbazar 2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL10_SL018", - "message": "Arad Bazar-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL10_SL019", - "message": "Bhaskarganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL10_SL020", - "message": "Tail basa", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL10_SL021", - "message": "Chudakutasahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL10_SL022", - "message": "Telenga Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL10_SL023", - "message": "Gudipada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL10_SL024", - "message": "Sweeper Colony Bhaskarganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL10_SL025", - "message": "Godhibasa", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL10_SL026", - "message": "Ananda Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL10_SL027", - "message": "Railway Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL10_SL028", - "message": "Bhalia dang", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL10_SL029", - "message": "Chhachina Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL10_SL030", - "message": "Gosalapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL10_SL031", - "message": "Balighat", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL10_SL032", - "message": "Sweeper Colony Olondaz Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL10_SL033", - "message": "Adibasi Sahi Town Hall", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL10_SL034", - "message": "Congress gali baula pokhari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL10_SL035", - "message": "Gopalgaon Tala Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL10_SL036", - "message": "Mirzapokhari Sweeper Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL10_SL037", - "message": "Darzi Pokhari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL10_SL038", - "message": "Mahila College Back side Adibasi Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL10_SL039", - "message": "Jadav Pur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL10_SL040", - "message": "Lepracy Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL10_SL041", - "message": "Golapolo", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL11_SL001", - "message": "Mahammadpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL11_SL002", - "message": "Kanhu Behera Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL11_SL003", - "message": "Munipada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL11_SL004", - "message": "Malik Sahi-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL11_SL005", - "message": "Malik Sahi-2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL11_SL006", - "message": "Uchhapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL11_SL007", - "message": "Mansing Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL11_SL008", - "message": "Khaparapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL11_SL009", - "message": "Angaragadia Cold Store", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL11_SL010", - "message": "Angaragadia Rameswar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL11_SL011", - "message": "Angargadia DIC Office", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL11_SL012", - "message": "Angargadia Rameswar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL11_SL013", - "message": "Bateswar Sweeper Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL11_SL014", - "message": "Nua Bazar Adi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL11_SL015", - "message": "Arad bazar-3", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL11_SL016", - "message": "Nua Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL11_SL017", - "message": "Aradbazar 2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL11_SL018", - "message": "Arad Bazar-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL11_SL019", - "message": "Bhaskarganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL11_SL020", - "message": "Tail basa", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL11_SL021", - "message": "Chudakutasahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL11_SL022", - "message": "Telenga Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL11_SL023", - "message": "Gudipada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL11_SL024", - "message": "Sweeper Colony Bhaskarganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL11_SL025", - "message": "Godhibasa", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL11_SL026", - "message": "Ananda Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL11_SL027", - "message": "Railway Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL11_SL028", - "message": "Bhalia dang", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL11_SL029", - "message": "Chhachina Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL11_SL030", - "message": "Gosalapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL11_SL031", - "message": "Balighat", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL11_SL032", - "message": "Sweeper Colony Olondaz Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL11_SL033", - "message": "Adibasi Sahi Town Hall", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL11_SL034", - "message": "Congress gali baula pokhari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL11_SL035", - "message": "Gopalgaon Tala Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL11_SL036", - "message": "Mirzapokhari Sweeper Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL11_SL037", - "message": "Darzi Pokhari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL11_SL038", - "message": "Mahila College Back side Adibasi Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL11_SL039", - "message": "Jadav Pur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL11_SL040", - "message": "Lepracy Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL11_SL041", - "message": "Golapolo", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL12_SL001", - "message": "Mahammadpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL12_SL002", - "message": "Kanhu Behera Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL12_SL003", - "message": "Munipada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL12_SL004", - "message": "Malik Sahi-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL12_SL005", - "message": "Malik Sahi-2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL12_SL006", - "message": "Uchhapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL12_SL007", - "message": "Mansing Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL12_SL008", - "message": "Khaparapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL12_SL009", - "message": "Angaragadia Cold Store", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL12_SL010", - "message": "Angaragadia Rameswar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL12_SL011", - "message": "Angargadia DIC Office", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL12_SL012", - "message": "Angargadia Rameswar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL12_SL013", - "message": "Bateswar Sweeper Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL12_SL014", - "message": "Nua Bazar Adi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL12_SL015", - "message": "Arad bazar-3", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL12_SL016", - "message": "Nua Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL12_SL017", - "message": "Aradbazar 2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL12_SL018", - "message": "Arad Bazar-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL12_SL019", - "message": "Bhaskarganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL12_SL020", - "message": "Tail basa", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL12_SL021", - "message": "Chudakutasahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL12_SL022", - "message": "Telenga Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL12_SL023", - "message": "Gudipada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL12_SL024", - "message": "Sweeper Colony Bhaskarganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL12_SL025", - "message": "Godhibasa", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL12_SL026", - "message": "Ananda Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL12_SL027", - "message": "Railway Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL12_SL028", - "message": "Bhalia dang", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL12_SL029", - "message": "Chhachina Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL12_SL030", - "message": "Gosalapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL12_SL031", - "message": "Balighat", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL12_SL032", - "message": "Sweeper Colony Olondaz Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL12_SL033", - "message": "Adibasi Sahi Town Hall", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL12_SL034", - "message": "Congress gali baula pokhari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL12_SL035", - "message": "Gopalgaon Tala Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL12_SL036", - "message": "Mirzapokhari Sweeper Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL12_SL037", - "message": "Darzi Pokhari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL12_SL038", - "message": "Mahila College Back side Adibasi Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL12_SL039", - "message": "Jadav Pur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL12_SL040", - "message": "Lepracy Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL12_SL041", - "message": "Golapolo", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL13_SL001", - "message": "Mahammadpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL13_SL002", - "message": "Kanhu Behera Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL13_SL003", - "message": "Munipada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL13_SL004", - "message": "Malik Sahi-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL13_SL005", - "message": "Malik Sahi-2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL13_SL006", - "message": "Uchhapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL13_SL007", - "message": "Mansing Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL13_SL008", - "message": "Khaparapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL13_SL009", - "message": "Angaragadia Cold Store", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL13_SL010", - "message": "Angaragadia Rameswar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL13_SL011", - "message": "Angargadia DIC Office", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL13_SL012", - "message": "Angargadia Rameswar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL13_SL013", - "message": "Bateswar Sweeper Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL13_SL014", - "message": "Nua Bazar Adi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL13_SL015", - "message": "Arad bazar-3", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL13_SL016", - "message": "Nua Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL13_SL017", - "message": "Aradbazar 2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL13_SL018", - "message": "Arad Bazar-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL13_SL019", - "message": "Bhaskarganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL13_SL020", - "message": "Tail basa", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL13_SL021", - "message": "Chudakutasahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL13_SL022", - "message": "Telenga Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL13_SL023", - "message": "Gudipada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL13_SL024", - "message": "Sweeper Colony Bhaskarganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL13_SL025", - "message": "Godhibasa", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL13_SL026", - "message": "Ananda Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL13_SL027", - "message": "Railway Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL13_SL028", - "message": "Bhalia dang", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL13_SL029", - "message": "Chhachina Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL13_SL030", - "message": "Gosalapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL13_SL031", - "message": "Balighat", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL13_SL032", - "message": "Sweeper Colony Olondaz Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL13_SL033", - "message": "Adibasi Sahi Town Hall", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL13_SL034", - "message": "Congress gali baula pokhari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL13_SL035", - "message": "Gopalgaon Tala Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL13_SL036", - "message": "Mirzapokhari Sweeper Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL13_SL037", - "message": "Darzi Pokhari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL13_SL038", - "message": "Mahila College Back side Adibasi Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL13_SL039", - "message": "Jadav Pur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL13_SL040", - "message": "Lepracy Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL13_SL041", - "message": "Golapolo", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL14_SL001", - "message": "Mahammadpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL14_SL002", - "message": "Kanhu Behera Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL14_SL003", - "message": "Munipada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL14_SL004", - "message": "Malik Sahi-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL14_SL005", - "message": "Malik Sahi-2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL14_SL006", - "message": "Uchhapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL14_SL007", - "message": "Mansing Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL14_SL008", - "message": "Khaparapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL14_SL009", - "message": "Angaragadia Cold Store", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL14_SL010", - "message": "Angaragadia Rameswar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL14_SL011", - "message": "Angargadia DIC Office", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL14_SL012", - "message": "Angargadia Rameswar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL14_SL013", - "message": "Bateswar Sweeper Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL14_SL014", - "message": "Nua Bazar Adi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL14_SL015", - "message": "Arad bazar-3", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL14_SL016", - "message": "Nua Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL14_SL017", - "message": "Aradbazar 2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL14_SL018", - "message": "Arad Bazar-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL14_SL019", - "message": "Bhaskarganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL14_SL020", - "message": "Tail basa", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL14_SL021", - "message": "Chudakutasahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL14_SL022", - "message": "Telenga Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL14_SL023", - "message": "Gudipada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL14_SL024", - "message": "Sweeper Colony Bhaskarganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL14_SL025", - "message": "Godhibasa", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL14_SL026", - "message": "Ananda Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL14_SL027", - "message": "Railway Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL14_SL028", - "message": "Bhalia dang", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL14_SL029", - "message": "Chhachina Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL14_SL030", - "message": "Gosalapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL14_SL031", - "message": "Balighat", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL14_SL032", - "message": "Sweeper Colony Olondaz Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL14_SL033", - "message": "Adibasi Sahi Town Hall", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL14_SL034", - "message": "Congress gali baula pokhari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL14_SL035", - "message": "Gopalgaon Tala Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL14_SL036", - "message": "Mirzapokhari Sweeper Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL14_SL037", - "message": "Darzi Pokhari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL14_SL038", - "message": "Mahila College Back side Adibasi Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL14_SL039", - "message": "Jadav Pur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL14_SL040", - "message": "Lepracy Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL14_SL041", - "message": "Golapolo", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL15_SL001", - "message": "Mahammadpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL15_SL002", - "message": "Kanhu Behera Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL15_SL003", - "message": "Munipada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL15_SL004", - "message": "Malik Sahi-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL15_SL005", - "message": "Malik Sahi-2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL15_SL006", - "message": "Uchhapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL15_SL007", - "message": "Mansing Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL15_SL008", - "message": "Khaparapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL15_SL009", - "message": "Angaragadia Cold Store", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL15_SL010", - "message": "Angaragadia Rameswar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL15_SL011", - "message": "Angargadia DIC Office", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL15_SL012", - "message": "Angargadia Rameswar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL15_SL013", - "message": "Bateswar Sweeper Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL15_SL014", - "message": "Nua Bazar Adi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL15_SL015", - "message": "Arad bazar-3", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL15_SL016", - "message": "Nua Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL15_SL017", - "message": "Aradbazar 2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL15_SL018", - "message": "Arad Bazar-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL15_SL019", - "message": "Bhaskarganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL15_SL020", - "message": "Tail basa", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL15_SL021", - "message": "Chudakutasahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL15_SL022", - "message": "Telenga Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL15_SL023", - "message": "Gudipada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL15_SL024", - "message": "Sweeper Colony Bhaskarganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL15_SL025", - "message": "Godhibasa", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL15_SL026", - "message": "Ananda Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL15_SL027", - "message": "Railway Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL15_SL028", - "message": "Bhalia dang", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL15_SL029", - "message": "Chhachina Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL15_SL030", - "message": "Gosalapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL15_SL031", - "message": "Balighat", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL15_SL032", - "message": "Sweeper Colony Olondaz Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL15_SL033", - "message": "Adibasi Sahi Town Hall", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL15_SL034", - "message": "Congress gali baula pokhari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL15_SL035", - "message": "Gopalgaon Tala Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL15_SL036", - "message": "Mirzapokhari Sweeper Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL15_SL037", - "message": "Darzi Pokhari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL15_SL038", - "message": "Mahila College Back side Adibasi Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL15_SL039", - "message": "Jadav Pur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL15_SL040", - "message": "Lepracy Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL15_SL041", - "message": "Golapolo", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL16_SL001", - "message": "Mahammadpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL16_SL002", - "message": "Kanhu Behera Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL16_SL003", - "message": "Munipada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL16_SL004", - "message": "Malik Sahi-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL16_SL005", - "message": "Malik Sahi-2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL16_SL006", - "message": "Uchhapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL16_SL007", - "message": "Mansing Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL16_SL008", - "message": "Khaparapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL16_SL009", - "message": "Angaragadia Cold Store", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL16_SL010", - "message": "Angaragadia Rameswar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL16_SL011", - "message": "Angargadia DIC Office", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL16_SL012", - "message": "Angargadia Rameswar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL16_SL013", - "message": "Bateswar Sweeper Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL16_SL014", - "message": "Nua Bazar Adi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL16_SL015", - "message": "Arad bazar-3", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL16_SL016", - "message": "Nua Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL16_SL017", - "message": "Aradbazar 2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL16_SL018", - "message": "Arad Bazar-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL16_SL019", - "message": "Bhaskarganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL16_SL020", - "message": "Tail basa", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL16_SL021", - "message": "Chudakutasahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL16_SL022", - "message": "Telenga Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL16_SL023", - "message": "Gudipada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL16_SL024", - "message": "Sweeper Colony Bhaskarganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL16_SL025", - "message": "Godhibasa", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL16_SL026", - "message": "Ananda Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL16_SL027", - "message": "Railway Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL16_SL028", - "message": "Bhalia dang", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL16_SL029", - "message": "Chhachina Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL16_SL030", - "message": "Gosalapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL16_SL031", - "message": "Balighat", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL16_SL032", - "message": "Sweeper Colony Olondaz Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL16_SL033", - "message": "Adibasi Sahi Town Hall", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL16_SL034", - "message": "Congress gali baula pokhari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL16_SL035", - "message": "Gopalgaon Tala Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL16_SL036", - "message": "Mirzapokhari Sweeper Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL16_SL037", - "message": "Darzi Pokhari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL16_SL038", - "message": "Mahila College Back side Adibasi Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL16_SL039", - "message": "Jadav Pur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL16_SL040", - "message": "Lepracy Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL16_SL041", - "message": "Golapolo", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL17_SL001", - "message": "Mahammadpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL17_SL002", - "message": "Kanhu Behera Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL17_SL003", - "message": "Munipada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL17_SL004", - "message": "Malik Sahi-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL17_SL005", - "message": "Malik Sahi-2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL17_SL006", - "message": "Uchhapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL17_SL007", - "message": "Mansing Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL17_SL008", - "message": "Khaparapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL17_SL009", - "message": "Angaragadia Cold Store", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL17_SL010", - "message": "Angaragadia Rameswar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL17_SL011", - "message": "Angargadia DIC Office", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL17_SL012", - "message": "Angargadia Rameswar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL17_SL013", - "message": "Bateswar Sweeper Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL17_SL014", - "message": "Nua Bazar Adi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL17_SL015", - "message": "Arad bazar-3", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL17_SL016", - "message": "Nua Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL17_SL017", - "message": "Aradbazar 2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL17_SL018", - "message": "Arad Bazar-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL17_SL019", - "message": "Bhaskarganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL17_SL020", - "message": "Tail basa", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL17_SL021", - "message": "Chudakutasahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL17_SL022", - "message": "Telenga Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL17_SL023", - "message": "Gudipada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL17_SL024", - "message": "Sweeper Colony Bhaskarganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL17_SL025", - "message": "Godhibasa", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL17_SL026", - "message": "Ananda Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL17_SL027", - "message": "Railway Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL17_SL028", - "message": "Bhalia dang", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL17_SL029", - "message": "Chhachina Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL17_SL030", - "message": "Gosalapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL17_SL031", - "message": "Balighat", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL17_SL032", - "message": "Sweeper Colony Olondaz Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL17_SL033", - "message": "Adibasi Sahi Town Hall", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL17_SL034", - "message": "Congress gali baula pokhari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL17_SL035", - "message": "Gopalgaon Tala Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL17_SL036", - "message": "Mirzapokhari Sweeper Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL17_SL037", - "message": "Darzi Pokhari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL17_SL038", - "message": "Mahila College Back side Adibasi Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL17_SL039", - "message": "Jadav Pur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL17_SL040", - "message": "Lepracy Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL17_SL041", - "message": "Golapolo", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL18_SL001", - "message": "Mahammadpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL18_SL002", - "message": "Kanhu Behera Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL18_SL003", - "message": "Munipada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL18_SL004", - "message": "Malik Sahi-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL18_SL005", - "message": "Malik Sahi-2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL18_SL006", - "message": "Uchhapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL18_SL007", - "message": "Mansing Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL18_SL008", - "message": "Khaparapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL18_SL009", - "message": "Angaragadia Cold Store", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL18_SL010", - "message": "Angaragadia Rameswar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL18_SL011", - "message": "Angargadia DIC Office", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL18_SL012", - "message": "Angargadia Rameswar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL18_SL013", - "message": "Bateswar Sweeper Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL18_SL014", - "message": "Nua Bazar Adi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL18_SL015", - "message": "Arad bazar-3", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL18_SL016", - "message": "Nua Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL18_SL017", - "message": "Aradbazar 2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL18_SL018", - "message": "Arad Bazar-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL18_SL019", - "message": "Bhaskarganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL18_SL020", - "message": "Tail basa", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL18_SL021", - "message": "Chudakutasahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL18_SL022", - "message": "Telenga Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL18_SL023", - "message": "Gudipada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL18_SL024", - "message": "Sweeper Colony Bhaskarganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL18_SL025", - "message": "Godhibasa", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL18_SL026", - "message": "Ananda Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL18_SL027", - "message": "Railway Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL18_SL028", - "message": "Bhalia dang", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL18_SL029", - "message": "Chhachina Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL18_SL030", - "message": "Gosalapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL18_SL031", - "message": "Balighat", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL18_SL032", - "message": "Sweeper Colony Olondaz Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL18_SL033", - "message": "Adibasi Sahi Town Hall", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL18_SL034", - "message": "Congress gali baula pokhari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL18_SL035", - "message": "Gopalgaon Tala Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL18_SL036", - "message": "Mirzapokhari Sweeper Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL18_SL037", - "message": "Darzi Pokhari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL18_SL038", - "message": "Mahila College Back side Adibasi Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL18_SL039", - "message": "Jadav Pur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL18_SL040", - "message": "Lepracy Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL18_SL041", - "message": "Golapolo", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL19_SL001", - "message": "Mahammadpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL19_SL002", - "message": "Kanhu Behera Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL19_SL003", - "message": "Munipada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL19_SL004", - "message": "Malik Sahi-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL19_SL005", - "message": "Malik Sahi-2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL19_SL006", - "message": "Uchhapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL19_SL007", - "message": "Mansing Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL19_SL008", - "message": "Khaparapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL19_SL009", - "message": "Angaragadia Cold Store", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL19_SL010", - "message": "Angaragadia Rameswar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL19_SL011", - "message": "Angargadia DIC Office", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL19_SL012", - "message": "Angargadia Rameswar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL19_SL013", - "message": "Bateswar Sweeper Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL19_SL014", - "message": "Nua Bazar Adi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL19_SL015", - "message": "Arad bazar-3", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL19_SL016", - "message": "Nua Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL19_SL017", - "message": "Aradbazar 2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL19_SL018", - "message": "Arad Bazar-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL19_SL019", - "message": "Bhaskarganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL19_SL020", - "message": "Tail basa", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL19_SL021", - "message": "Chudakutasahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL19_SL022", - "message": "Telenga Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL19_SL023", - "message": "Gudipada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL19_SL024", - "message": "Sweeper Colony Bhaskarganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL19_SL025", - "message": "Godhibasa", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL19_SL026", - "message": "Ananda Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL19_SL027", - "message": "Railway Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL19_SL028", - "message": "Bhalia dang", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL19_SL029", - "message": "Chhachina Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL19_SL030", - "message": "Gosalapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL19_SL031", - "message": "Balighat", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL19_SL032", - "message": "Sweeper Colony Olondaz Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL19_SL033", - "message": "Adibasi Sahi Town Hall", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL19_SL034", - "message": "Congress gali baula pokhari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL19_SL035", - "message": "Gopalgaon Tala Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL19_SL036", - "message": "Mirzapokhari Sweeper Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL19_SL037", - "message": "Darzi Pokhari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL19_SL038", - "message": "Mahila College Back side Adibasi Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL19_SL039", - "message": "Jadav Pur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL19_SL040", - "message": "Lepracy Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL19_SL041", - "message": "Golapolo", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL1_SL001", - "message": "Mahammadpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL1_SL002", - "message": "Kanhu Behera Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL1_SL003", - "message": "Munipada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL1_SL004", - "message": "Malik Sahi-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL1_SL005", - "message": "Malik Sahi-2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL1_SL006", - "message": "Uchhapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL1_SL007", - "message": "Mansing Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL1_SL008", - "message": "Khaparapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL1_SL009", - "message": "Angaragadia Cold Store", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL1_SL010", - "message": "Angaragadia Rameswar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL1_SL011", - "message": "Angargadia DIC Office", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL1_SL012", - "message": "Angargadia Rameswar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL1_SL013", - "message": "Bateswar Sweeper Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL1_SL014", - "message": "Nua Bazar Adi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL1_SL015", - "message": "Arad bazar-3", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL1_SL016", - "message": "Nua Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL1_SL017", - "message": "Aradbazar 2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL1_SL018", - "message": "Arad Bazar-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL1_SL019", - "message": "Bhaskarganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL1_SL020", - "message": "Tail basa", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL1_SL021", - "message": "Chudakutasahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL1_SL022", - "message": "Telenga Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL1_SL023", - "message": "Gudipada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL1_SL024", - "message": "Sweeper Colony Bhaskarganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL1_SL025", - "message": "Godhibasa", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL1_SL026", - "message": "Ananda Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL1_SL027", - "message": "Railway Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL1_SL028", - "message": "Bhalia dang", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL1_SL029", - "message": "Chhachina Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL1_SL030", - "message": "Gosalapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL1_SL031", - "message": "Balighat", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL1_SL032", - "message": "Sweeper Colony Olondaz Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL1_SL033", - "message": "Adibasi Sahi Town Hall", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL1_SL034", - "message": "Congress gali baula pokhari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL1_SL035", - "message": "Gopalgaon Tala Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL1_SL036", - "message": "Mirzapokhari Sweeper Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL1_SL037", - "message": "Darzi Pokhari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL1_SL038", - "message": "Mahila College Back side Adibasi Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL1_SL039", - "message": "Jadav Pur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL1_SL040", - "message": "Lepracy Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL1_SL041", - "message": "Golapolo", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL20_SL001", - "message": "Mahammadpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL20_SL002", - "message": "Kanhu Behera Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL20_SL003", - "message": "Munipada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL20_SL004", - "message": "Malik Sahi-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL20_SL005", - "message": "Malik Sahi-2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL20_SL006", - "message": "Uchhapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL20_SL007", - "message": "Mansing Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL20_SL008", - "message": "Khaparapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL20_SL009", - "message": "Angaragadia Cold Store", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL20_SL010", - "message": "Angaragadia Rameswar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL20_SL011", - "message": "Angargadia DIC Office", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL20_SL012", - "message": "Angargadia Rameswar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL20_SL013", - "message": "Bateswar Sweeper Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL20_SL014", - "message": "Nua Bazar Adi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL20_SL015", - "message": "Arad bazar-3", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL20_SL016", - "message": "Nua Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL20_SL017", - "message": "Aradbazar 2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL20_SL018", - "message": "Arad Bazar-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL20_SL019", - "message": "Bhaskarganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL20_SL020", - "message": "Tail basa", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL20_SL021", - "message": "Chudakutasahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL20_SL022", - "message": "Telenga Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL20_SL023", - "message": "Gudipada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL20_SL024", - "message": "Sweeper Colony Bhaskarganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL20_SL025", - "message": "Godhibasa", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL20_SL026", - "message": "Ananda Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL20_SL027", - "message": "Railway Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL20_SL028", - "message": "Bhalia dang", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL20_SL029", - "message": "Chhachina Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL20_SL030", - "message": "Gosalapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL20_SL031", - "message": "Balighat", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL20_SL032", - "message": "Sweeper Colony Olondaz Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL20_SL033", - "message": "Adibasi Sahi Town Hall", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL20_SL034", - "message": "Congress gali baula pokhari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL20_SL035", - "message": "Gopalgaon Tala Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL20_SL036", - "message": "Mirzapokhari Sweeper Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL20_SL037", - "message": "Darzi Pokhari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL20_SL038", - "message": "Mahila College Back side Adibasi Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL20_SL039", - "message": "Jadav Pur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL20_SL040", - "message": "Lepracy Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL20_SL041", - "message": "Golapolo", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL21_SL001", - "message": "Mahammadpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL21_SL002", - "message": "Kanhu Behera Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL21_SL003", - "message": "Munipada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL21_SL004", - "message": "Malik Sahi-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL21_SL005", - "message": "Malik Sahi-2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL21_SL006", - "message": "Uchhapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL21_SL007", - "message": "Mansing Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL21_SL008", - "message": "Khaparapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL21_SL009", - "message": "Angaragadia Cold Store", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL21_SL010", - "message": "Angaragadia Rameswar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL21_SL011", - "message": "Angargadia DIC Office", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL21_SL012", - "message": "Angargadia Rameswar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL21_SL013", - "message": "Bateswar Sweeper Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL21_SL014", - "message": "Nua Bazar Adi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL21_SL015", - "message": "Arad bazar-3", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL21_SL016", - "message": "Nua Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL21_SL017", - "message": "Aradbazar 2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL21_SL018", - "message": "Arad Bazar-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL21_SL019", - "message": "Bhaskarganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL21_SL020", - "message": "Tail basa", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL21_SL021", - "message": "Chudakutasahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL21_SL022", - "message": "Telenga Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL21_SL023", - "message": "Gudipada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL21_SL024", - "message": "Sweeper Colony Bhaskarganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL21_SL025", - "message": "Godhibasa", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL21_SL026", - "message": "Ananda Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL21_SL027", - "message": "Railway Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL21_SL028", - "message": "Bhalia dang", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL21_SL029", - "message": "Chhachina Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL21_SL030", - "message": "Gosalapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL21_SL031", - "message": "Balighat", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL21_SL032", - "message": "Sweeper Colony Olondaz Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL21_SL033", - "message": "Adibasi Sahi Town Hall", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL21_SL034", - "message": "Congress gali baula pokhari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL21_SL035", - "message": "Gopalgaon Tala Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL21_SL036", - "message": "Mirzapokhari Sweeper Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL21_SL037", - "message": "Darzi Pokhari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL21_SL038", - "message": "Mahila College Back side Adibasi Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL21_SL039", - "message": "Jadav Pur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL21_SL040", - "message": "Lepracy Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL21_SL041", - "message": "Golapolo", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL22_SL001", - "message": "Mahammadpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL22_SL002", - "message": "Kanhu Behera Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL22_SL003", - "message": "Munipada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL22_SL004", - "message": "Malik Sahi-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL22_SL005", - "message": "Malik Sahi-2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL22_SL006", - "message": "Uchhapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL22_SL007", - "message": "Mansing Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL22_SL008", - "message": "Khaparapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL22_SL009", - "message": "Angaragadia Cold Store", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL22_SL010", - "message": "Angaragadia Rameswar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL22_SL011", - "message": "Angargadia DIC Office", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL22_SL012", - "message": "Angargadia Rameswar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL22_SL013", - "message": "Bateswar Sweeper Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL22_SL014", - "message": "Nua Bazar Adi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL22_SL015", - "message": "Arad bazar-3", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL22_SL016", - "message": "Nua Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL22_SL017", - "message": "Aradbazar 2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL22_SL018", - "message": "Arad Bazar-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL22_SL019", - "message": "Bhaskarganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL22_SL020", - "message": "Tail basa", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL22_SL021", - "message": "Chudakutasahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL22_SL022", - "message": "Telenga Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL22_SL023", - "message": "Gudipada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL22_SL024", - "message": "Sweeper Colony Bhaskarganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL22_SL025", - "message": "Godhibasa", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL22_SL026", - "message": "Ananda Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL22_SL027", - "message": "Railway Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL22_SL028", - "message": "Bhalia dang", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL22_SL029", - "message": "Chhachina Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL22_SL030", - "message": "Gosalapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL22_SL031", - "message": "Balighat", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL22_SL032", - "message": "Sweeper Colony Olondaz Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL22_SL033", - "message": "Adibasi Sahi Town Hall", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL22_SL034", - "message": "Congress gali baula pokhari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL22_SL035", - "message": "Gopalgaon Tala Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL22_SL036", - "message": "Mirzapokhari Sweeper Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL22_SL037", - "message": "Darzi Pokhari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL22_SL038", - "message": "Mahila College Back side Adibasi Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL22_SL039", - "message": "Jadav Pur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL22_SL040", - "message": "Lepracy Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL22_SL041", - "message": "Golapolo", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL23_SL001", - "message": "Mahammadpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL23_SL002", - "message": "Kanhu Behera Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL23_SL003", - "message": "Munipada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL23_SL004", - "message": "Malik Sahi-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL23_SL005", - "message": "Malik Sahi-2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL23_SL006", - "message": "Uchhapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL23_SL007", - "message": "Mansing Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL23_SL008", - "message": "Khaparapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL23_SL009", - "message": "Angaragadia Cold Store", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL23_SL010", - "message": "Angaragadia Rameswar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL23_SL011", - "message": "Angargadia DIC Office", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL23_SL012", - "message": "Angargadia Rameswar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL23_SL013", - "message": "Bateswar Sweeper Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL23_SL014", - "message": "Nua Bazar Adi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL23_SL015", - "message": "Arad bazar-3", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL23_SL016", - "message": "Nua Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL23_SL017", - "message": "Aradbazar 2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL23_SL018", - "message": "Arad Bazar-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL23_SL019", - "message": "Bhaskarganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL23_SL020", - "message": "Tail basa", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL23_SL021", - "message": "Chudakutasahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL23_SL022", - "message": "Telenga Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL23_SL023", - "message": "Gudipada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL23_SL024", - "message": "Sweeper Colony Bhaskarganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL23_SL025", - "message": "Godhibasa", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL23_SL026", - "message": "Ananda Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL23_SL027", - "message": "Railway Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL23_SL028", - "message": "Bhalia dang", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL23_SL029", - "message": "Chhachina Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL23_SL030", - "message": "Gosalapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL23_SL031", - "message": "Balighat", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL23_SL032", - "message": "Sweeper Colony Olondaz Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL23_SL033", - "message": "Adibasi Sahi Town Hall", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL23_SL034", - "message": "Congress gali baula pokhari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL23_SL035", - "message": "Gopalgaon Tala Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL23_SL036", - "message": "Mirzapokhari Sweeper Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL23_SL037", - "message": "Darzi Pokhari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL23_SL038", - "message": "Mahila College Back side Adibasi Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL23_SL039", - "message": "Jadav Pur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL23_SL040", - "message": "Lepracy Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL23_SL041", - "message": "Golapolo", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL24_SL001", - "message": "Mahammadpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL24_SL002", - "message": "Kanhu Behera Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL24_SL003", - "message": "Munipada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL24_SL004", - "message": "Malik Sahi-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL24_SL005", - "message": "Malik Sahi-2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL24_SL006", - "message": "Uchhapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL24_SL007", - "message": "Mansing Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL24_SL008", - "message": "Khaparapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL24_SL009", - "message": "Angaragadia Cold Store", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL24_SL010", - "message": "Angaragadia Rameswar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL24_SL011", - "message": "Angargadia DIC Office", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL24_SL012", - "message": "Angargadia Rameswar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL24_SL013", - "message": "Bateswar Sweeper Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL24_SL014", - "message": "Nua Bazar Adi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL24_SL015", - "message": "Arad bazar-3", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL24_SL016", - "message": "Nua Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL24_SL017", - "message": "Aradbazar 2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL24_SL018", - "message": "Arad Bazar-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL24_SL019", - "message": "Bhaskarganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL24_SL020", - "message": "Tail basa", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL24_SL021", - "message": "Chudakutasahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL24_SL022", - "message": "Telenga Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL24_SL023", - "message": "Gudipada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL24_SL024", - "message": "Sweeper Colony Bhaskarganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL24_SL025", - "message": "Godhibasa", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL24_SL026", - "message": "Ananda Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL24_SL027", - "message": "Railway Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL24_SL028", - "message": "Bhalia dang", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL24_SL029", - "message": "Chhachina Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL24_SL030", - "message": "Gosalapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL24_SL031", - "message": "Balighat", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL24_SL032", - "message": "Sweeper Colony Olondaz Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL24_SL033", - "message": "Adibasi Sahi Town Hall", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL24_SL034", - "message": "Congress gali baula pokhari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL24_SL035", - "message": "Gopalgaon Tala Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL24_SL036", - "message": "Mirzapokhari Sweeper Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL24_SL037", - "message": "Darzi Pokhari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL24_SL038", - "message": "Mahila College Back side Adibasi Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL24_SL039", - "message": "Jadav Pur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL24_SL040", - "message": "Lepracy Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL24_SL041", - "message": "Golapolo", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL25_SL001", - "message": "Mahammadpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL25_SL002", - "message": "Kanhu Behera Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL25_SL003", - "message": "Munipada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL25_SL004", - "message": "Malik Sahi-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL25_SL005", - "message": "Malik Sahi-2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL25_SL006", - "message": "Uchhapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL25_SL007", - "message": "Mansing Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL25_SL008", - "message": "Khaparapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL25_SL009", - "message": "Angaragadia Cold Store", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL25_SL010", - "message": "Angaragadia Rameswar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL25_SL011", - "message": "Angargadia DIC Office", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL25_SL012", - "message": "Angargadia Rameswar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL25_SL013", - "message": "Bateswar Sweeper Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL25_SL014", - "message": "Nua Bazar Adi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL25_SL015", - "message": "Arad bazar-3", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL25_SL016", - "message": "Nua Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL25_SL017", - "message": "Aradbazar 2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL25_SL018", - "message": "Arad Bazar-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL25_SL019", - "message": "Bhaskarganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL25_SL020", - "message": "Tail basa", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL25_SL021", - "message": "Chudakutasahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL25_SL022", - "message": "Telenga Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL25_SL023", - "message": "Gudipada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL25_SL024", - "message": "Sweeper Colony Bhaskarganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL25_SL025", - "message": "Godhibasa", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL25_SL026", - "message": "Ananda Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL25_SL027", - "message": "Railway Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL25_SL028", - "message": "Bhalia dang", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL25_SL029", - "message": "Chhachina Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL25_SL030", - "message": "Gosalapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL25_SL031", - "message": "Balighat", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL25_SL032", - "message": "Sweeper Colony Olondaz Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL25_SL033", - "message": "Adibasi Sahi Town Hall", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL25_SL034", - "message": "Congress gali baula pokhari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL25_SL035", - "message": "Gopalgaon Tala Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL25_SL036", - "message": "Mirzapokhari Sweeper Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL25_SL037", - "message": "Darzi Pokhari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL25_SL038", - "message": "Mahila College Back side Adibasi Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL25_SL039", - "message": "Jadav Pur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL25_SL040", - "message": "Lepracy Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL25_SL041", - "message": "Golapolo", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL26_SL001", - "message": "Mahammadpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL26_SL002", - "message": "Kanhu Behera Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL26_SL003", - "message": "Munipada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL26_SL004", - "message": "Malik Sahi-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL26_SL005", - "message": "Malik Sahi-2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL26_SL006", - "message": "Uchhapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL26_SL007", - "message": "Mansing Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL26_SL008", - "message": "Khaparapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL26_SL009", - "message": "Angaragadia Cold Store", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL26_SL010", - "message": "Angaragadia Rameswar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL26_SL011", - "message": "Angargadia DIC Office", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL26_SL012", - "message": "Angargadia Rameswar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL26_SL013", - "message": "Bateswar Sweeper Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL26_SL014", - "message": "Nua Bazar Adi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL26_SL015", - "message": "Arad bazar-3", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL26_SL016", - "message": "Nua Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL26_SL017", - "message": "Aradbazar 2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL26_SL018", - "message": "Arad Bazar-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL26_SL019", - "message": "Bhaskarganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL26_SL020", - "message": "Tail basa", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL26_SL021", - "message": "Chudakutasahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL26_SL022", - "message": "Telenga Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL26_SL023", - "message": "Gudipada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL26_SL024", - "message": "Sweeper Colony Bhaskarganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL26_SL025", - "message": "Godhibasa", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL26_SL026", - "message": "Ananda Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL26_SL027", - "message": "Railway Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL26_SL028", - "message": "Bhalia dang", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL26_SL029", - "message": "Chhachina Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL26_SL030", - "message": "Gosalapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL26_SL031", - "message": "Balighat", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL26_SL032", - "message": "Sweeper Colony Olondaz Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL26_SL033", - "message": "Adibasi Sahi Town Hall", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL26_SL034", - "message": "Congress gali baula pokhari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL26_SL035", - "message": "Gopalgaon Tala Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL26_SL036", - "message": "Mirzapokhari Sweeper Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL26_SL037", - "message": "Darzi Pokhari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL26_SL038", - "message": "Mahila College Back side Adibasi Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL26_SL039", - "message": "Jadav Pur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL26_SL040", - "message": "Lepracy Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL26_SL041", - "message": "Golapolo", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL27_SL001", - "message": "Mahammadpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL27_SL002", - "message": "Kanhu Behera Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL27_SL003", - "message": "Munipada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL27_SL004", - "message": "Malik Sahi-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL27_SL005", - "message": "Malik Sahi-2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL27_SL006", - "message": "Uchhapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL27_SL007", - "message": "Mansing Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL27_SL008", - "message": "Khaparapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL27_SL009", - "message": "Angaragadia Cold Store", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL27_SL010", - "message": "Angaragadia Rameswar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL27_SL011", - "message": "Angargadia DIC Office", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL27_SL012", - "message": "Angargadia Rameswar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL27_SL013", - "message": "Bateswar Sweeper Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL27_SL014", - "message": "Nua Bazar Adi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL27_SL015", - "message": "Arad bazar-3", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL27_SL016", - "message": "Nua Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL27_SL017", - "message": "Aradbazar 2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL27_SL018", - "message": "Arad Bazar-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL27_SL019", - "message": "Bhaskarganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL27_SL020", - "message": "Tail basa", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL27_SL021", - "message": "Chudakutasahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL27_SL022", - "message": "Telenga Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL27_SL023", - "message": "Gudipada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL27_SL024", - "message": "Sweeper Colony Bhaskarganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL27_SL025", - "message": "Godhibasa", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL27_SL026", - "message": "Ananda Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL27_SL027", - "message": "Railway Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL27_SL028", - "message": "Bhalia dang", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL27_SL029", - "message": "Chhachina Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL27_SL030", - "message": "Gosalapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL27_SL031", - "message": "Balighat", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL27_SL032", - "message": "Sweeper Colony Olondaz Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL27_SL033", - "message": "Adibasi Sahi Town Hall", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL27_SL034", - "message": "Congress gali baula pokhari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL27_SL035", - "message": "Gopalgaon Tala Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL27_SL036", - "message": "Mirzapokhari Sweeper Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL27_SL037", - "message": "Darzi Pokhari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL27_SL038", - "message": "Mahila College Back side Adibasi Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL27_SL039", - "message": "Jadav Pur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL27_SL040", - "message": "Lepracy Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL27_SL041", - "message": "Golapolo", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL28_SL001", - "message": "Mahammadpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL28_SL002", - "message": "Kanhu Behera Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL28_SL003", - "message": "Munipada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL28_SL004", - "message": "Malik Sahi-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL28_SL005", - "message": "Malik Sahi-2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL28_SL006", - "message": "Uchhapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL28_SL007", - "message": "Mansing Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL28_SL008", - "message": "Khaparapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL28_SL009", - "message": "Angaragadia Cold Store", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL28_SL010", - "message": "Angaragadia Rameswar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL28_SL011", - "message": "Angargadia DIC Office", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL28_SL012", - "message": "Angargadia Rameswar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL28_SL013", - "message": "Bateswar Sweeper Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL28_SL014", - "message": "Nua Bazar Adi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL28_SL015", - "message": "Arad bazar-3", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL28_SL016", - "message": "Nua Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL28_SL017", - "message": "Aradbazar 2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL28_SL018", - "message": "Arad Bazar-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL28_SL019", - "message": "Bhaskarganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL28_SL020", - "message": "Tail basa", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL28_SL021", - "message": "Chudakutasahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL28_SL022", - "message": "Telenga Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL28_SL023", - "message": "Gudipada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL28_SL024", - "message": "Sweeper Colony Bhaskarganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL28_SL025", - "message": "Godhibasa", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL28_SL026", - "message": "Ananda Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL28_SL027", - "message": "Railway Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL28_SL028", - "message": "Bhalia dang", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL28_SL029", - "message": "Chhachina Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL28_SL030", - "message": "Gosalapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL28_SL031", - "message": "Balighat", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL28_SL032", - "message": "Sweeper Colony Olondaz Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL28_SL033", - "message": "Adibasi Sahi Town Hall", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL28_SL034", - "message": "Congress gali baula pokhari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL28_SL035", - "message": "Gopalgaon Tala Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL28_SL036", - "message": "Mirzapokhari Sweeper Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL28_SL037", - "message": "Darzi Pokhari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL28_SL038", - "message": "Mahila College Back side Adibasi Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL28_SL039", - "message": "Jadav Pur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL28_SL040", - "message": "Lepracy Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL28_SL041", - "message": "Golapolo", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL2_SL001", - "message": "Mahammadpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL2_SL002", - "message": "Kanhu Behera Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL2_SL003", - "message": "Munipada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL2_SL004", - "message": "Malik Sahi-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL2_SL005", - "message": "Malik Sahi-2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL2_SL006", - "message": "Uchhapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL2_SL007", - "message": "Mansing Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL2_SL008", - "message": "Khaparapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL2_SL009", - "message": "Angaragadia Cold Store", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL2_SL010", - "message": "Angaragadia Rameswar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL2_SL011", - "message": "Angargadia DIC Office", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL2_SL012", - "message": "Angargadia Rameswar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL2_SL013", - "message": "Bateswar Sweeper Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL2_SL014", - "message": "Nua Bazar Adi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL2_SL015", - "message": "Arad bazar-3", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL2_SL016", - "message": "Nua Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL2_SL017", - "message": "Aradbazar 2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL2_SL018", - "message": "Arad Bazar-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL2_SL019", - "message": "Bhaskarganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL2_SL020", - "message": "Tail basa", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL2_SL021", - "message": "Chudakutasahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL2_SL022", - "message": "Telenga Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL2_SL023", - "message": "Gudipada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL2_SL024", - "message": "Sweeper Colony Bhaskarganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL2_SL025", - "message": "Godhibasa", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL2_SL026", - "message": "Ananda Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL2_SL027", - "message": "Railway Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL2_SL028", - "message": "Bhalia dang", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL2_SL029", - "message": "Chhachina Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL2_SL030", - "message": "Gosalapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL2_SL031", - "message": "Balighat", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL2_SL032", - "message": "Sweeper Colony Olondaz Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL2_SL033", - "message": "Adibasi Sahi Town Hall", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL2_SL034", - "message": "Congress gali baula pokhari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL2_SL035", - "message": "Gopalgaon Tala Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL2_SL036", - "message": "Mirzapokhari Sweeper Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL2_SL037", - "message": "Darzi Pokhari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL2_SL038", - "message": "Mahila College Back side Adibasi Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL2_SL039", - "message": "Jadav Pur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL2_SL040", - "message": "Lepracy Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL2_SL041", - "message": "Golapolo", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL3_SL001", - "message": "Mahammadpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL3_SL002", - "message": "Kanhu Behera Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL3_SL003", - "message": "Munipada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL3_SL004", - "message": "Malik Sahi-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL3_SL005", - "message": "Malik Sahi-2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL3_SL006", - "message": "Uchhapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL3_SL007", - "message": "Mansing Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL3_SL008", - "message": "Khaparapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL3_SL009", - "message": "Angaragadia Cold Store", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL3_SL010", - "message": "Angaragadia Rameswar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL3_SL011", - "message": "Angargadia DIC Office", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL3_SL012", - "message": "Angargadia Rameswar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL3_SL013", - "message": "Bateswar Sweeper Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL3_SL014", - "message": "Nua Bazar Adi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL3_SL015", - "message": "Arad bazar-3", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL3_SL016", - "message": "Nua Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL3_SL017", - "message": "Aradbazar 2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL3_SL018", - "message": "Arad Bazar-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL3_SL019", - "message": "Bhaskarganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL3_SL020", - "message": "Tail basa", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL3_SL021", - "message": "Chudakutasahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL3_SL022", - "message": "Telenga Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL3_SL023", - "message": "Gudipada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL3_SL024", - "message": "Sweeper Colony Bhaskarganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL3_SL025", - "message": "Godhibasa", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL3_SL026", - "message": "Ananda Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL3_SL027", - "message": "Railway Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL3_SL028", - "message": "Bhalia dang", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL3_SL029", - "message": "Chhachina Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL3_SL030", - "message": "Gosalapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL3_SL031", - "message": "Balighat", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL3_SL032", - "message": "Sweeper Colony Olondaz Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL3_SL033", - "message": "Adibasi Sahi Town Hall", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL3_SL034", - "message": "Congress gali baula pokhari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL3_SL035", - "message": "Gopalgaon Tala Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL3_SL036", - "message": "Mirzapokhari Sweeper Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL3_SL037", - "message": "Darzi Pokhari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL3_SL038", - "message": "Mahila College Back side Adibasi Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL3_SL039", - "message": "Jadav Pur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL3_SL040", - "message": "Lepracy Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL3_SL041", - "message": "Golapolo", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL4_SL001", - "message": "Mahammadpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL4_SL002", - "message": "Kanhu Behera Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL4_SL003", - "message": "Munipada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL4_SL004", - "message": "Malik Sahi-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL4_SL005", - "message": "Malik Sahi-2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL4_SL006", - "message": "Uchhapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL4_SL007", - "message": "Mansing Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL4_SL008", - "message": "Khaparapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL4_SL009", - "message": "Angaragadia Cold Store", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL4_SL010", - "message": "Angaragadia Rameswar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL4_SL011", - "message": "Angargadia DIC Office", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL4_SL012", - "message": "Angargadia Rameswar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL4_SL013", - "message": "Bateswar Sweeper Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL4_SL014", - "message": "Nua Bazar Adi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL4_SL015", - "message": "Arad bazar-3", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL4_SL016", - "message": "Nua Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL4_SL017", - "message": "Aradbazar 2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL4_SL018", - "message": "Arad Bazar-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL4_SL019", - "message": "Bhaskarganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL4_SL020", - "message": "Tail basa", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL4_SL021", - "message": "Chudakutasahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL4_SL022", - "message": "Telenga Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL4_SL023", - "message": "Gudipada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL4_SL024", - "message": "Sweeper Colony Bhaskarganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL4_SL025", - "message": "Godhibasa", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL4_SL026", - "message": "Ananda Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL4_SL027", - "message": "Railway Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL4_SL028", - "message": "Bhalia dang", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL4_SL029", - "message": "Chhachina Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL4_SL030", - "message": "Gosalapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL4_SL031", - "message": "Balighat", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL4_SL032", - "message": "Sweeper Colony Olondaz Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL4_SL033", - "message": "Adibasi Sahi Town Hall", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL4_SL034", - "message": "Congress gali baula pokhari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL4_SL035", - "message": "Gopalgaon Tala Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL4_SL036", - "message": "Mirzapokhari Sweeper Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL4_SL037", - "message": "Darzi Pokhari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL4_SL038", - "message": "Mahila College Back side Adibasi Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL4_SL039", - "message": "Jadav Pur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL4_SL040", - "message": "Lepracy Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL4_SL041", - "message": "Golapolo", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL5_SL001", - "message": "Mahammadpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL5_SL002", - "message": "Kanhu Behera Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL5_SL003", - "message": "Munipada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL5_SL004", - "message": "Malik Sahi-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL5_SL005", - "message": "Malik Sahi-2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL5_SL006", - "message": "Uchhapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL5_SL007", - "message": "Mansing Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL5_SL008", - "message": "Khaparapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL5_SL009", - "message": "Angaragadia Cold Store", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL5_SL010", - "message": "Angaragadia Rameswar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL5_SL011", - "message": "Angargadia DIC Office", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL5_SL012", - "message": "Angargadia Rameswar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL5_SL013", - "message": "Bateswar Sweeper Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL5_SL014", - "message": "Nua Bazar Adi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL5_SL015", - "message": "Arad bazar-3", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL5_SL016", - "message": "Nua Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL5_SL017", - "message": "Aradbazar 2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL5_SL018", - "message": "Arad Bazar-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL5_SL019", - "message": "Bhaskarganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL5_SL020", - "message": "Tail basa", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL5_SL021", - "message": "Chudakutasahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL5_SL022", - "message": "Telenga Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL5_SL023", - "message": "Gudipada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL5_SL024", - "message": "Sweeper Colony Bhaskarganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL5_SL025", - "message": "Godhibasa", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL5_SL026", - "message": "Ananda Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL5_SL027", - "message": "Railway Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL5_SL028", - "message": "Bhalia dang", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL5_SL029", - "message": "Chhachina Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL5_SL030", - "message": "Gosalapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL5_SL031", - "message": "Balighat", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL5_SL032", - "message": "Sweeper Colony Olondaz Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL5_SL033", - "message": "Adibasi Sahi Town Hall", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL5_SL034", - "message": "Congress gali baula pokhari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL5_SL035", - "message": "Gopalgaon Tala Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL5_SL036", - "message": "Mirzapokhari Sweeper Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL5_SL037", - "message": "Darzi Pokhari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL5_SL038", - "message": "Mahila College Back side Adibasi Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL5_SL039", - "message": "Jadav Pur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL5_SL040", - "message": "Lepracy Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL5_SL041", - "message": "Golapolo", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL6_SL001", - "message": "Mahammadpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL6_SL002", - "message": "Kanhu Behera Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL6_SL003", - "message": "Munipada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL6_SL004", - "message": "Malik Sahi-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL6_SL005", - "message": "Malik Sahi-2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL6_SL006", - "message": "Uchhapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL6_SL007", - "message": "Mansing Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL6_SL008", - "message": "Khaparapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL6_SL009", - "message": "Angaragadia Cold Store", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL6_SL010", - "message": "Angaragadia Rameswar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL6_SL011", - "message": "Angargadia DIC Office", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL6_SL012", - "message": "Angargadia Rameswar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL6_SL013", - "message": "Bateswar Sweeper Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL6_SL014", - "message": "Nua Bazar Adi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL6_SL015", - "message": "Arad bazar-3", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL6_SL016", - "message": "Nua Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL6_SL017", - "message": "Aradbazar 2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL6_SL018", - "message": "Arad Bazar-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL6_SL019", - "message": "Bhaskarganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL6_SL020", - "message": "Tail basa", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL6_SL021", - "message": "Chudakutasahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL6_SL022", - "message": "Telenga Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL6_SL023", - "message": "Gudipada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL6_SL024", - "message": "Sweeper Colony Bhaskarganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL6_SL025", - "message": "Godhibasa", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL6_SL026", - "message": "Ananda Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL6_SL027", - "message": "Railway Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL6_SL028", - "message": "Bhalia dang", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL6_SL029", - "message": "Chhachina Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL6_SL030", - "message": "Gosalapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL6_SL031", - "message": "Balighat", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL6_SL032", - "message": "Sweeper Colony Olondaz Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL6_SL033", - "message": "Adibasi Sahi Town Hall", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL6_SL034", - "message": "Congress gali baula pokhari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL6_SL035", - "message": "Gopalgaon Tala Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL6_SL036", - "message": "Mirzapokhari Sweeper Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL6_SL037", - "message": "Darzi Pokhari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL6_SL038", - "message": "Mahila College Back side Adibasi Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL6_SL039", - "message": "Jadav Pur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL6_SL040", - "message": "Lepracy Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL6_SL041", - "message": "Golapolo", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL7_SL001", - "message": "Mahammadpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL7_SL002", - "message": "Kanhu Behera Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL7_SL003", - "message": "Munipada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL7_SL004", - "message": "Malik Sahi-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL7_SL005", - "message": "Malik Sahi-2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL7_SL006", - "message": "Uchhapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL7_SL007", - "message": "Mansing Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL7_SL008", - "message": "Khaparapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL7_SL009", - "message": "Angaragadia Cold Store", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL7_SL010", - "message": "Angaragadia Rameswar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL7_SL011", - "message": "Angargadia DIC Office", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL7_SL012", - "message": "Angargadia Rameswar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL7_SL013", - "message": "Bateswar Sweeper Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL7_SL014", - "message": "Nua Bazar Adi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL7_SL015", - "message": "Arad bazar-3", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL7_SL016", - "message": "Nua Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL7_SL017", - "message": "Aradbazar 2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL7_SL018", - "message": "Arad Bazar-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL7_SL019", - "message": "Bhaskarganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL7_SL020", - "message": "Tail basa", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL7_SL021", - "message": "Chudakutasahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL7_SL022", - "message": "Telenga Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL7_SL023", - "message": "Gudipada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL7_SL024", - "message": "Sweeper Colony Bhaskarganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL7_SL025", - "message": "Godhibasa", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL7_SL026", - "message": "Ananda Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL7_SL027", - "message": "Railway Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL7_SL028", - "message": "Bhalia dang", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL7_SL029", - "message": "Chhachina Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL7_SL030", - "message": "Gosalapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL7_SL031", - "message": "Balighat", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL7_SL032", - "message": "Sweeper Colony Olondaz Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL7_SL033", - "message": "Adibasi Sahi Town Hall", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL7_SL034", - "message": "Congress gali baula pokhari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL7_SL035", - "message": "Gopalgaon Tala Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL7_SL036", - "message": "Mirzapokhari Sweeper Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL7_SL037", - "message": "Darzi Pokhari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL7_SL038", - "message": "Mahila College Back side Adibasi Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL7_SL039", - "message": "Jadav Pur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL7_SL040", - "message": "Lepracy Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL7_SL041", - "message": "Golapolo", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL8_SL001", - "message": "Mahammadpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL8_SL002", - "message": "Kanhu Behera Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL8_SL003", - "message": "Munipada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL8_SL004", - "message": "Malik Sahi-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL8_SL005", - "message": "Malik Sahi-2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL8_SL006", - "message": "Uchhapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL8_SL007", - "message": "Mansing Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL8_SL008", - "message": "Khaparapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL8_SL009", - "message": "Angaragadia Cold Store", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL8_SL010", - "message": "Angaragadia Rameswar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL8_SL011", - "message": "Angargadia DIC Office", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL8_SL012", - "message": "Angargadia Rameswar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL8_SL013", - "message": "Bateswar Sweeper Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL8_SL014", - "message": "Nua Bazar Adi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL8_SL015", - "message": "Arad bazar-3", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL8_SL016", - "message": "Nua Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL8_SL017", - "message": "Aradbazar 2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL8_SL018", - "message": "Arad Bazar-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL8_SL019", - "message": "Bhaskarganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL8_SL020", - "message": "Tail basa", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL8_SL021", - "message": "Chudakutasahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL8_SL022", - "message": "Telenga Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL8_SL023", - "message": "Gudipada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL8_SL024", - "message": "Sweeper Colony Bhaskarganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL8_SL025", - "message": "Godhibasa", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL8_SL026", - "message": "Ananda Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL8_SL027", - "message": "Railway Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL8_SL028", - "message": "Bhalia dang", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL8_SL029", - "message": "Chhachina Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL8_SL030", - "message": "Gosalapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL8_SL031", - "message": "Balighat", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL8_SL032", - "message": "Sweeper Colony Olondaz Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL8_SL033", - "message": "Adibasi Sahi Town Hall", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL8_SL034", - "message": "Congress gali baula pokhari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL8_SL035", - "message": "Gopalgaon Tala Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL8_SL036", - "message": "Mirzapokhari Sweeper Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL8_SL037", - "message": "Darzi Pokhari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL8_SL038", - "message": "Mahila College Back side Adibasi Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL8_SL039", - "message": "Jadav Pur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL8_SL040", - "message": "Lepracy Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL8_SL041", - "message": "Golapolo", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL9_SL001", - "message": "Mahammadpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL9_SL002", - "message": "Kanhu Behera Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL9_SL003", - "message": "Munipada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL9_SL004", - "message": "Malik Sahi-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL9_SL005", - "message": "Malik Sahi-2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL9_SL006", - "message": "Uchhapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL9_SL007", - "message": "Mansing Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL9_SL008", - "message": "Khaparapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL9_SL009", - "message": "Angaragadia Cold Store", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL9_SL010", - "message": "Angaragadia Rameswar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL9_SL011", - "message": "Angargadia DIC Office", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL9_SL012", - "message": "Angargadia Rameswar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL9_SL013", - "message": "Bateswar Sweeper Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL9_SL014", - "message": "Nua Bazar Adi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL9_SL015", - "message": "Arad bazar-3", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL9_SL016", - "message": "Nua Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL9_SL017", - "message": "Aradbazar 2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL9_SL018", - "message": "Arad Bazar-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL9_SL019", - "message": "Bhaskarganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL9_SL020", - "message": "Tail basa", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL9_SL021", - "message": "Chudakutasahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL9_SL022", - "message": "Telenga Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL9_SL023", - "message": "Gudipada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL9_SL024", - "message": "Sweeper Colony Bhaskarganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL9_SL025", - "message": "Godhibasa", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL9_SL026", - "message": "Ananda Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL9_SL027", - "message": "Railway Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL9_SL028", - "message": "Bhalia dang", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL9_SL029", - "message": "Chhachina Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL9_SL030", - "message": "Gosalapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL9_SL031", - "message": "Balighat", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL9_SL032", - "message": "Sweeper Colony Olondaz Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL9_SL033", - "message": "Adibasi Sahi Town Hall", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL9_SL034", - "message": "Congress gali baula pokhari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL9_SL035", - "message": "Gopalgaon Tala Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL9_SL036", - "message": "Mirzapokhari Sweeper Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL9_SL037", - "message": "Darzi Pokhari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL9_SL038", - "message": "Mahila College Back side Adibasi Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL9_SL039", - "message": "Jadav Pur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL9_SL040", - "message": "Lepracy Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BALASORE_VIL9_SL041", - "message": "Golapolo", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_REVENUE_VIL37", - "message": "Gola Raghunathpur. R. Raghunathpur, Matiya Raghunath pur, Acharya Street. Kakali Bada Street, Harida Khandi. Tota Sahi, Dhoba Sahi, Bauri sahi, Harijana Sahi. Dharmanagar. Shantinagar, Kailash Nagar, Bodo Sahi. Goudo Sahi.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_REVENUE_VIL38", - "message": "Ananda Nagar. Canal Street, Sramika Nagar, Duduman Colony, Kasi Nagar, Mhurikalua Street, Panigrahi Nagar, Gayatri Nagar, digapahani Road. 1St GateBurma Colone, Kathamentu road, Aska Road Near 1St Gate. Ambica nagar, Laxminarasing Street, Haridakhandi road.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_REVENUE_VIL39", - "message": "Raghupati Nagar, aska road, Dhobandha Huda, Gurumurtipeta, Narayan Nagar, Cement Road Street, Chaitany Nagar, Ganapati Nagar, Khandiakumuti Sahi, Aska Road, Kansari Street, New Kalupatra Street.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_REVENUE_VIL40", - "message": "Forest Colony, New Raja Street, Sri Ramanagar (all area), Ratha Street, Adarsh Marg, Dashagharia Street, Pandara Bada Street, Brajaraj Nagar, Anandanagar, Nelia Bandha, Harsh Vihar.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_REVENUE_VIL41", - "message": "Samanath Nagar All area, Aska road Main Road in front of Chatrubhuja Petrol Pump, Niladri Vihar (all area), Trinath Nagar, Tulasi Nagar (all area). Suraj Vihar, Subham Bihar, Bishnu Nagar, Aska Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_REVENUE_VIL42", - "message": "Rampa Street, Padma Nagar, Brudabati Nagar, Gate Bazar, Bank Colony, Bhabani Nagar, Burma Nagar, Banka Bihari Nagar, Radhakrushna Billa Street, Mukteswar Billa Street", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_REVENUE_VIL43", - "message": "Baria Billo Street, Padma nagar, Sarojini Peta, Balaki Peta, Govardhana Peta, dera Street, Sandha Mahanti Street, Aska Road, (South Side) Gramadevati Street, Police Colony, Taluka Police Colony, Kalupatra Sahi, Adua Street, Kedarswar Peta, Trimurty Jaganath Temple Street, Sankarpur Street, Sitaram Street, Jena Street, Pandara Street, Panigrahipentha Street, Aska Road.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_REVENUE_VIL44", - "message": "Raja Street, Bachwari Street, Dase Behera Street, Bada Bazar , Mahuri Raja Street, Kumbhar Street, Nadia Bazar, Chandrama Street, Elubehera Street, Marth petta Sahi, Malubehera St, Jangambadi Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_REVENUE_VIL45", - "message": "Pattara street, Mangalabarmpeta, Jami street, Aga Street, Krishnama Peta, Bada Redika Street, Mediri Street, Sana Redika Street, Jagabandhu Street-1&2, Ganesh Nagar, Gajananapeta, Prahalad Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_REVENUE_VIL46", - "message": "Pandabanagar, Sita Dhimira Street, Tota Street, Ainabandha Street, Radhakant Street, Radha Krushna Street, Pandara Street, Nelia Bandha Road, Talamentu Chaka, Bhima Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_REVENUE_VIL47", - "message": "Bauri Street, Purna Berhampur, Neelanchala Street, Purna Berhamur, Street, Khaspa Street, Jaura Street, PandarabadaStreet, Redika Street, (p), Karibari street, Chandrasekhar Street, Martha Street, Karana Street, Rajama Street, Gaigotha Street, Kharuda Street, Big Bazaar Gouda Street.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_REVENUE_VIL48", - "message": "Prem Nagar-(1to6), Dharamanagar (all) Municipal Colony (back), Purnabasi Colony, Harrijana Basti, Municiality Colony, Prema Nagar-7th line, Prem Nagar (west), Cannal Street, Harishara Nagar, Bimala Naga, Ganesh Nagar.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_REVENUE_VIL49", - "message": "Utkal Cinema Road, Medri Street, ranguni Bandha Street, (all) Sastri Nagar (all) Jamadeipentha, sankari Street, Narasing Deula Street, Panchudeula Street, Rangalaa Tota", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_REVENUE_VIL50", - "message": "Main Road Brit Colony, Housing Bard (all Meenakhi Nagar, Nilakantha nagar, Brit colony, Trinath Nagar, Narasingh Nagar, Sribach Nagar, Kothari Temple Street, Nirakar Nagar, Panchanan Nagar, Arabinda Nagar, Hari Krushna Nagar.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_REVENUE_VIL51", - "message": "Addamji Lane, Kamala Wari Street, Daya Mahanty, Bandha Road, City High school Road, Pauls Lane, Berika Street, Venketswara Temple Street, Kallika Temple Street, Gopal Rao Garuda, Jayanti Petta, Dallusu Wari Street, Metta Street, Sani Baram Petta, Pakala Wari Street, Thakurani Tample Street, Much Street, Nua Gouda Street, Knasari Street, Gadivari Stret, Malasen Petta, Pudipedavari Street.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_REVENUE_VIL52", - "message": "Patro Petta Street, Abdul Bahar Street, Koka Wari Street, Giri Market, Musiaganti Street, Urban Bank Road, Vardawari Street, Gallila Street, Gallila Street, Bhapur Bazar, ankula Street, Telgu Dhoba Street, Telgubhandari Street , kampa Street, K.C. Town High School Road, Park Street, Ramalingaswar Road, S.N.T Road Khalasi Street, (all lines). Corporation Road.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_REVENUE_VIL53", - "message": "Military line (1&2), Bhimarao Petta, Dalua Street, Raula Street, Pandarawadi Street, Raghunath Petta, Madhuriwari Street, Bangali Street, Irrigation Colony, Vetanary Colony, Police lane, Muchi Sahi, Khaja Street, Militaline Main road, Cantonment road, Radha Krushna Canal Street.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_REVENUE_VIL54", - "message": "Sanatrani Street, Gouda Stret, Kapilleswar Petta, Bandha Street, Masjid Lane, Bhuta Street, Lala Street, Rauta Penth Street, Sana Bazar, Phulla Sundari Street, Nua Street, balaji Pentho street, Triveni Nagar, Gula Street, Gunduluvari Street, Hanuman Bazar, Bandhahuda Tameya Tank, Madhb Nagar, Manan Mohan Nagar, Gangadhar Nagar, Hanuman Nagar, Mathura Nagar.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_REVENUE_VIL55", - "message": "Mitra Street, Teli Street, Pallia Street, Mukteswar Temple Street, Bagulli Street, Gundu Malla Street, Dig Murti Street, Fire Station Road, Chaterji Lane, State Bank Road, New Barackes Street, City hospital Road, Babaji Tota Street, Brahamna Street, Chandra Prabha Street 1&2, Ratha Street, Church Road, Telephone Bhawan, Convent school road, Town Hall Road, Chikit Bangala, Panigrahi Street, Pallor Bunglow, Bauri Street, Badhei Street.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_REVENUE_VIL56", - "message": "Raghunath Temple Street, Bada Kehmundi Street, Gollapalli Street, Surya Nagar, Harijan Colony, Cannal Street, Chandramani Petta, Bhagavati Gadi, Manjari Nagar, Bhandari Street.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_REVENUE_VIL57", - "message": "Dasiri Street, Nua Street, Jagili Street, New Canal Street, Lochapada Road, Mochi street, Bada Harizan Street, Sana Harizan Street, dudarshan Colony, Dhoba Sahi.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_REVENUE_VIL58", - "message": "Brahman Nagar (all area), ORT Colony, Laxmi Nagar, Muktipath Street, Baikuntha Nagar (all area).", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_REVENUE_VIL59", - "message": "Gandhi Nagar Canal Street (I,II,III,). Gandhi Nagar 3rd lane, Gandhi Nagar Part, Gandhi Nagar 1&2. Spectrum Coloney, Gandhi Nagar 4-10. Ambika Nagar (all area).", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_REVENUE_VIL60", - "message": "Bijipur kalua Street, Laxmi Street, rather Street, Bada Street, Bada Bauri street, Sano Bauri sahi, Bijipur Naidu Street, Boarding Street, Bijipur Bazar, Apana Patra Street, Bijipur Canal Street, Sunari Jbandha Street, Police Colony, Sundar Nagar.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_REVENUE_VIL61", - "message": "Burma Colony, Nilakanth Nagar (all area), Dhimira Bauri Street, Tota Street Main Road, Chandi Street, Gopinath Nagar, Sastri Nagar (All-area) Gosaninuagaon Tota Street, Balaji Nagar, Sastri Nagar, Sastri Nagar Billo Street, Gupta Drundabarn Street, K.C. High School Road, mandira Street, Dasagharia Street, Harizan Street, Mandiapadar Street, Charidiba Street, Sanyasi Nagar.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_REVENUE_VIL62", - "message": "Damana Street, Baidya Street, Panigrahi Street, Laxminarayan Street, Kalua Street, Salliabanha Street, Patita Paban Gangar, Kadalibada Street, Badrraj Nagar, Sakti Nagar, Nua Street, Rajudhoba Street, Puruna Bauri Street, Gjosani Nuagaon (Ansa), Gosaninuagaon Main Road, Aduva Sahi, Kaituki Nagar, Lingaraj Nagar.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_REVENUE_VIL63", - "message": "Gosani Nuagaon Main Road East, Harihar Nagar, Utareswar Temple Road, Sana Mudia Street, Railway Colony West Side, Gali Road, Chanchada Padia Street (All), RWS Colony, Trinath Street, Gjoods Shed Road, Khajuria road, Somanath Nagar Nehru Nagar 9&10, Burma colony, Central Wire House Lane.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_REVENUE_VIL64", - "message": "Nehru Nagar (1-8), Giri Road (all area), Bijipur Road, PWD Colony, Station Road, Hillpatna (all), Tota Street all area, Santosi Maa Temple Road.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_REVENUE_VIL65", - "message": "Ananda sarani, Aurobindo Nagar (all area). Godabarish Nagar (all area), Invadid Peta, swarnamayee Nagar, Hatibandha Street, Rama Krushna Nagar (all area), New Bus Stand Road.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_REVENUE_VIL66", - "message": "Ramahari Nagar, Tatabejnz Square, Old Chistrian Street, Women’s Hostel Road, Zenana Hospital Road, Saragada Bunglow, Sastri Nagar, Giri Road, Ananta Nagar, PWD Coloney, Irrigation Colony, Laxminursingh Street, Gopabandhu nagar, R.C. Das Lane, Medri Street, U.A. Road, Sri Tower.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_REVENUE_VIL67", - "message": "Copprative Colony (all). Ashok Nagar (all). Kamapalli Main Road, Kamapali street, Khalla Street, Gouilundi Road, Kamapli Nayak Street, Kamapali Bandha Street, Kamapalli P.N.T. Colony.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_REVENUE_VIL68", - "message": "Bidya Nagar, Goilundi Square, temple Street, Sree Nagar, Bhava Nagar, friends Colony, Krushna Nagar, Bagadevi Temple Street, Peon Quarter, Panda Colony Road, Goilundi Chancada Pathar Sahi, Goilundi Gig Street and Main road, Shani Nagar, Ratha Colony, Chandra Sekhar Road Goilundi.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_REVENUE_VIL69", - "message": "Gajapti Nagar (1-14), Medical Campus, sidhartha Nagar (all Street) EWS Colony, DIG Office, OMP Barrack, P&T Colony, Sales Tax Colony, Jaya Prakash Nagar, LIG Colony, Santi Kunja, State Abank Colony, Jyouti Nagar, Bapuji Nagar.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_REVENUE_VIL70", - "message": "Ajodhya Nagar, P.H.D. Colony, Jarada Bunglow, D.I.G. Colony, Forest Colony, Drundavan Nayak Marg, V.I.P Colony, Police line back side Street, Irrigation Colony, IB PED, Komopalli to Goilundi Main Road towards South side, Old Post Office Street, Bidya Nagar, P&T colony, S.E. Railway Colony, Komopalli main Road, South side Ramanagar-1, Rama Nagar-2, Hadi Street, Ganjam Club, Sanadandasi Street, Komopalli Bazar, Rama Nagar Odiya Street north, Dayanidhi Das lane.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_REVENUE_VIL71", - "message": "Krush Nagar-5th South Side and North Side 4th line, Kurhsana Nagar,Budhia Mohanty Street, Krusshna Nagar-2,3,4 to Kalayana Mandap Ramnagar & Municipla Colony, Old Post Office Line, Rama Nagar-3rd, Half Ramanagar, Teli Bhandari Street, Deepa Street, Burmha Street, municipal colony, Rama Nagar, Anand Nagar, New Railway Colony, Station Road (L. Palli).", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_REVENUE_VIL72", - "message": "Central Jail Colony, Bauri Street, Padhi Colony, Sree Krushna Nagar, Kuthari Street, Jail Back Side, Lanjipalli back side to Lanjipalli Bye Pass, to kanjiamma Street and Nua Street, Chankya Nagar, East Adua Street, Radha kanta Temple Street to Golla Redika Street main Road Lanjipalli main Road Street main Road, Lanjipalli Main Road South Street, DEO Colony, Adua Street, Main Road West High School Road.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_REVENUE_VIL73", - "message": "Jaill Back Side Street, Subash Nagar, Chandi Mondir Street, East Side of Lanjipalli High School, Tota Sahi 1&2, Sashibhusan Nagar, Industrial State, Laxmi Nagar, Lingaraj Nagar, Brundaban Nagar, Industrial Road Square, R.D.C. Colony Choudhury House lane, Surjya Nagar, Labour Colony, MI. REO Colony, Indira Nagar, PHED Colony, Bhairabi Nagar, Jail Quarter, Jail Hospital, Panakalapalli.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_REVENUE_VIL74", - "message": "Nigam Nagar, Kasturi Nagar, Nigam Nagar 3to7, Bauri Street, Karji Street, Dandasi Street, Nigam Nagar, Bauri Street, Joleswar Khand, N.H. 5 South Street, Bada Street, Ananda Nagar, Kalinji Street, Nua Street, Laxmi Nurshingh Street, Harishankar Colony, Dhoba Street, Sundhi Street.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_REVENUE_VIL75", - "message": "Panda Colony, De Poul School area. Bidutpuri Colony, Back side Colony, Khodasingi Main Road, Engineering School Colony, ITI Colony, Law College, Engineer School, ITI school, Tota Sahi 1&2 Hanuman Nagar, Khodasiingi Main Road, New Bauri Street, Jayadurga Nagar, Shakti Nagar, Aalekha Nagar, Rajiv Nagar, Kuthari Nagar.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_REVENUE_VIL76", - "message": "Gopalpur Jn, Housing Board, Byue Pass, Basudev Nagar, Jagannath Bihar, Ex-Military Colony, Pokudibandha Chhak Road, Madhav Nagar, Bhima Nagar-1.2.3. & 4. Saradhabali and Roland Firma Area, Ambapua Gaon, Nua Sahi, Sibananda Nagar,Adua Sahi, Khadasinghi, Puruna Bauri Street, Bada Street, Dhoba Street, Banchanidhi Nagar, Kalinga Bihar.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL52_SL003", - "message": "Bank Colony (Nabin Nagar)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL52_SL004", - "message": "Khalasi sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL52_SL005", - "message": "Giri Market", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL52_SL006", - "message": "Patra Peta Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL55_SL007", - "message": "Bhandari Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL55_SL008", - "message": "Badhei Street", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL55_SL009", - "message": "Badakhemundi Bauri Street (Tota Palli Bauri Sahi)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL57_SL010", - "message": "Mukteswar Bandha Street", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL57_SL011", - "message": "Jagili Street", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL58_SL012", - "message": "Bada Harijan Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL59_SL013", - "message": "Keuta Sahi & New Laxmi Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL61_SL014", - "message": "Gandhi Nagar Canal Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL62_SL015", - "message": "Dhimira Bauri Street", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL63_SL016", - "message": "Trinath Mandir Street", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL63_SL017", - "message": "Chanchada Pathar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL63_SL018", - "message": "Somanatha Nagar, Khajuria Rd.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL63_SL019", - "message": "Khajuria Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL63_SL020", - "message": "Santi Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL63_SL021", - "message": "Nehru Nagar 9th & 10th", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL63_SL022", - "message": "Sishu Mandir Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL63_SL023", - "message": "Main Road Dhoba Street", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL66_SL024", - "message": "Harihar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL68_SL025", - "message": "Giri road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL68_SL026", - "message": "Chanchada pathara", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL68_SL027", - "message": "Chandrasekhar Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL6_SL002", - "message": "Somnath/Trinath Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL6_SL010", - "message": "Kalara Gada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL6_SL011", - "message": "Stadium Back side, Durga Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL6_SL012", - "message": "Mali Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL70_SL028", - "message": "Dandasi Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL71_SL029", - "message": "Ram Nagar Odia Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL72_SL030", - "message": "Deepa Harijansahi, Lanji palli", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL72_SL031", - "message": "Dandasi Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL72_SL032", - "message": "Chandi Street", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL72_SL033", - "message": "Harijana sahi, Lanjipalli", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL72_SL034", - "message": "Lanjipalli main road(Bauri Sahi, Adua Sahi & Keuta Sahi)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL72_SL035", - "message": "Goudabandha sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL72_SL036", - "message": "Lanjipalli main road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL73_SL037", - "message": "Bapuji Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL74_SL038", - "message": "BrundabanNagar Hota Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL74_SL039", - "message": "Dhoba sahi(Ankuli)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL74_SL040", - "message": "Kalinji Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL74_SL041", - "message": "Pradhan Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL74_SL042", - "message": "Ananda Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL74_SL043", - "message": "Jaleswarpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL74_SL044", - "message": "Dhobasahi (Ankuli)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL74_SL045", - "message": "Reddy Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL74_SL046", - "message": "Ankuli Sano Bauri Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL74_SL047", - "message": "Ankuli Bada Bauri Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL74_SL048", - "message": "Karji Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL74_SL049", - "message": "Nua Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL74_SL050", - "message": "Ankuli Mali Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL74_SL051", - "message": "Bada Sahi, Hadi Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL75_SL052", - "message": "Main Road Sundhi Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL75_SL053", - "message": "Bauri Sahi (Ambapur)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL75_SL054", - "message": "Old Bauri Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL75_SL055", - "message": "Dhobasahi (Khodasangi)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL75_SL056", - "message": "Dhobasahi(Ambapua)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL7_SL013", - "message": "Danda Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL7_SL014", - "message": "Murdangia Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL8_SL015", - "message": "Mahisapat Dalei Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL8_SL016", - "message": "Bankuala Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL8_SL017", - "message": "Gajamara Juanga Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL8_SL018", - "message": "Rengali Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL8_SL019", - "message": "Mahisapat Harijan Sahi-2 & Mahisapat Khaira Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL9_SL020", - "message": "Kantanali Kandha Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL9_SL021", - "message": "Banamali Prasad Juanga Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL9_SL022", - "message": "Fatha Bandha Harijana Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL9_SL023", - "message": "Kuntunia Juanga Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL9_SL024", - "message": "Fatha Bandha Juanga Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL9_SL025", - "message": "Balaram Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_BRHMAPUR_VIL9_SL026", - "message": "Kuntunia Nua Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1", - "message": "Mohalla Rajan Wala (both sides) - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC10", - "message": "Mohalla Majoran - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC100", - "message": "Mohalla Angaria wala - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1000", - "message": "Maqsudan Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1001", - "message": "Nagra Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1002", - "message": "Jawala Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1003", - "message": "New Jawala Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1004", - "message": "Patel Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1005", - "message": "New Patel Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1006", - "message": "Guru Ravidass Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1007", - "message": "Bhupinder Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1008", - "message": "Ashok Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1009", - "message": "Nagra Pind", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC101", - "message": "Miya Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1010", - "message": "New Nagra", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1011", - "message": "Shital Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1012", - "message": "New Shital Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1013", - "message": "Jugian", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1014", - "message": "Sham Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1015", - "message": "Amar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1016", - "message": "Babu Labh Singh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1017", - "message": "Rattan Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1018", - "message": "New Rattan Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1019", - "message": "Shaheed Babu Labh Singh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC102", - "message": "Shalimar Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1020", - "message": "New Shaheed Babu Labh Singh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1021", - "message": "Madhuban Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1022", - "message": "Gujrati Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1023", - "message": "Jagwali Kathi Near Canal", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1024", - "message": "Ragu Nath Mandir Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1025", - "message": "Kacha Kot", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1026", - "message": "Old Green Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1027", - "message": "Green Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1028", - "message": "Raja Garden", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1029", - "message": "Raja Garden Extension", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC103", - "message": "New Dashmesh Nagar Part", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1030", - "message": "V.I.P Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1031", - "message": "Butti Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1032", - "message": "Gagan Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1033", - "message": "Bhai Gurdass Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1034", - "message": "Baba Bachittar Ji Nagar Mithu Basti", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1035", - "message": "Tara Singh Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1036", - "message": "New Rasila Nagar Basti Danishmandan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1037", - "message": "Dilbagh Nagar Ext.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1038", - "message": "Rasila Nagar Phase 2 Danishmandan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1039", - "message": "Rasila Nagar Basti Danishmandan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC104", - "message": "Kaki Pind", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1040", - "message": "Begampura Colony Danishmandan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1041", - "message": "Baba Budha Ji Nagar Mithu Nagar Basti", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1042", - "message": "Ekta Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1043", - "message": "New Shastri Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1044", - "message": "Satnam Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1045", - "message": "Anoop Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1046", - "message": "Bal bro Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1047", - "message": "Badhri Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1048", - "message": "Badhri Colony Phase (2)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1049", - "message": "Ram Shernam Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC105", - "message": "New Joginder Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1050", - "message": "Peer Das Basti", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1051", - "message": "Kamar Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1052", - "message": "Panu Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1053", - "message": "Paras Estate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1054", - "message": "Paras Estate 2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1055", - "message": "Maharaja Garden", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1056", - "message": "Harbanse Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1057", - "message": "5 Peer Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1058", - "message": "Anoop Nagar (2)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1059", - "message": "Sher Singh Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC106", - "message": "Part of Joginder Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1060", - "message": "Roshan Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1061", - "message": "Qilla Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1062", - "message": "Kathera Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1063", - "message": "Gautam Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1064", - "message": "New Gautam Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1065", - "message": "Kabir Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1066", - "message": "Guru Ram Dass Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1067", - "message": "Mata Sant Kaur Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1068", - "message": "City A Prime", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1069", - "message": "City A Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC107", - "message": "New Beant Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1070", - "message": "City A Kunj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1071", - "message": "Rajan Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1072", - "message": "Kailash Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1073", - "message": "Balmik Mohalla Bawa Khel", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1074", - "message": "Akal Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1075", - "message": "Basti Bawa Khel (main)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1076", - "message": "Raj Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1077", - "message": "New Raj Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1078", - "message": "Kabir Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1079", - "message": "Bank Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC108", - "message": "Part of Beant Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1080", - "message": "Basti Bawa Khel", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1081", - "message": "Katehara Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1082", - "message": "New Rattan Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1083", - "message": "Guru Nanak Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1084", - "message": "New Guru Nanak Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1085", - "message": "Shiv Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1086", - "message": "Baba Kahandass Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1087", - "message": "Village Nagara", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1088", - "message": "Abinandan Park", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1089", - "message": "National Park", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC109", - "message": "Gulmarg Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1090", - "message": "Ashok Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1091", - "message": "Vivek Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1092", - "message": "Green Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1093", - "message": "Shanti Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1094", - "message": "Viveka Nand Park", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1095", - "message": "Subash Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1096", - "message": "Golden Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1097", - "message": "Navyug Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1098", - "message": "New Shiv Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1099", - "message": "Maqsudan Byepass", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC11", - "message": "Indra Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC110", - "message": "Mehtab Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1100", - "message": "Mahasha Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1101", - "message": "Anand Ngr", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1102", - "message": "New Anand Ngr", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1103", - "message": "Janta Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1104", - "message": "Navnirman Janta Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1105", - "message": "Issa Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1106", - "message": "Guru Nanak Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1107", - "message": "Aara Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1108", - "message": "Surat Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1109", - "message": "Master Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC111", - "message": "Professor Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1110", - "message": "Angad Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC1111", - "message": "Amandip Avenue.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC112", - "message": "Mohan Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC113", - "message": "Part of Ladhewali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC114", - "message": "Part of New Dashmesh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC115", - "message": "Dhilwan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC116", - "message": "Dhanowali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC117", - "message": "Sanik Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC118", - "message": "Old Dashmesh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC119", - "message": "Ajeet Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC12", - "message": "Sant Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC120", - "message": "Guru Anged Dev Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC121", - "message": "Sunder Nagar Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC122", - "message": "Kohinoor Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC123", - "message": "Sunny Prime", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC124", - "message": "Arman Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC125", - "message": "Johan Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC126", - "message": "Ganesh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC127", - "message": "New Ganesh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC128", - "message": "Masi Mohalla Dakoha", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC129", - "message": "Tarun Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC13", - "message": "Kalia Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC130", - "message": "Kaki Pind", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC131", - "message": "Arman Nagar 2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC132", - "message": "Birring Pind-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC133", - "message": "Birring Pind-2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC134", - "message": "Mohinder Singh Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC135", - "message": "Mehnga Singh Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC136", - "message": "Dada Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC137", - "message": "Peace Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC138", - "message": "Bunga Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC139", - "message": "Golden Colony (Phase 1)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC14", - "message": "Kalia Colony Ph-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC140", - "message": "Golden Colony (Phase 2)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC141", - "message": "Golden Colony (Phase 3)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC142", - "message": "Model Estate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC143", - "message": "Defence Colony (Phase 1)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC144", - "message": "New Defence Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC145", - "message": "Paragpura ( Old Phagwara Road)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC146", - "message": "Paragpura ( Pind )", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC147", - "message": "Paragpura ( Abadi Near Railway fatak )", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC148", - "message": "Ratti Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC149", - "message": "Thakur Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC15", - "message": "Kalia Colony PH-2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC150", - "message": "Ram Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC151", - "message": "Chotte Ram Bagh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC152", - "message": "Panch Sheel Colony ( Half )", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC153", - "message": "Bhullar Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC154", - "message": "Modern State", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC155", - "message": "Yadav Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC156", - "message": "Baba Budha Ji Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC157", - "message": "Bhuda Ji Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC158", - "message": "Shaheed Gurvinder Singh Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC159", - "message": "National Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC16", - "message": "Kalia Colony PH-3", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC160", - "message": "Ravidass Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC161", - "message": "Guru Nanak Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC162", - "message": "Jagjit Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC163", - "message": "Old Kaki Pind", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC164", - "message": "Village Dakoha", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC165", - "message": "Baba Budha Singh Nagar Street No 1 to 9", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC166", - "message": "Ekta Nagar PH-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC167", - "message": "Ekta Nagar PH-2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC168", - "message": "Joginder Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC169", - "message": "Panch Rattan Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC17", - "message": "Kalia Farm", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC170", - "message": "New Defence Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC171", - "message": "Beant Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC172", - "message": "Old Beant Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC173", - "message": "PSEB Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC174", - "message": "BB Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC175", - "message": "Half Rama Mandi Main Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC176", - "message": "Khateek Market Ramamandi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC177", - "message": "Valmik Mohalla Ramamandi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC178", - "message": "Krishna Sweet Wali Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC179", - "message": "Palwon Wali Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC18", - "message": "Guru Amar Dass Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC180", - "message": "Fouji Wali Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC181", - "message": "Bhatra Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC182", - "message": "Aytar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC183", - "message": "Guru Nanak Pura East", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC184", - "message": "Guru Nanak Pura West", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC185", - "message": "Chugitti", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC186", - "message": "Ekta Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC187", - "message": "P.A.P", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC188", - "message": "Railway Colony-3", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC189", - "message": "Rajinder Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC19", - "message": "Guru Amar Dass Nagar 2- Marla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC190", - "message": "Preet Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC191", - "message": "Sehgal Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC192", - "message": "Kirti Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC193", - "message": "Mohalla Ladowali Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC194", - "message": "Mohyal Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC195", - "message": "Link Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC196", - "message": "Hargobind Pura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC197", - "message": "Ranjit Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC198", - "message": "New Rajinder Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC199", - "message": "Police Line", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC2", - "message": "Bank Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC20", - "message": "New Guru Amar Dass Nagar Ext.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC200", - "message": "Guru Nanak Pura (West) Street No. 1 to 8", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC201", - "message": "New Guru Nanak Pura (West)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC202", - "message": "Bhojowal Patti (Chugittee)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC203", - "message": "Bharat Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC204", - "message": "Satnam Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC205", - "message": "Chugittee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC206", - "message": "Ved Ram Parkash Street", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC207", - "message": "Guru Gobind Singh Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC208", - "message": "Sureya Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC209", - "message": "Komal Vihar Old & New", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC21", - "message": "Guru Amar Dass Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC210", - "message": "Bashirpura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC211", - "message": "Thakur Singh Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC212", - "message": "Royal Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC213", - "message": "Jhansi Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC214", - "message": "Gobind Garh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC215", - "message": "Arjun Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC216", - "message": "40 Quarter", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC217", - "message": "Dashmesh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC218", - "message": "New Dashmesh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC219", - "message": "Sant Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC22", - "message": "Venus Valley", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC220", - "message": "Shanti Pura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC221", - "message": "New Baradari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC222", - "message": "Poultry Form Area", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC223", - "message": "Prem Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC224", - "message": "Mandi Fenton Garg", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC225", - "message": "Partap Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC226", - "message": "Rishi Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC227", - "message": "Brahm Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC228", - "message": "Mandi Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC229", - "message": "Railway Colony No. 1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC23", - "message": "Baba Mohan Dass Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC230", - "message": "Guard Colony No-2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC231", - "message": "Old Jawahar Nagar Single Lane", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC232", - "message": "Central Town", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC233", - "message": "Krishan Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC234", - "message": "Old Jawahar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC235", - "message": "Master Tara Singh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC236", - "message": "P & T Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC237", - "message": "Riaz Pura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC238", - "message": "Ramesh Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC239", - "message": "Shiva Ji Park", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC24", - "message": "Salempur Muslmana", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC240", - "message": "Netaji Park", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC241", - "message": "Civil Lines", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC242", - "message": "Mohalla Makhdumpura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC243", - "message": "Mohalla Shastri Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC244", - "message": "Fauji Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC245", - "message": "Shivalik Apartments", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC246", - "message": "Venus Apartments", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC247", - "message": "B-Block Apartments", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC248", - "message": "Paradise Apartments", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC249", - "message": "Gurkirpa Apartments", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC25", - "message": "Swarn Park-1Swarn Prak- 2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC250", - "message": "Ganga Apartments", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC251", - "message": "Nakodar Road Market", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC252", - "message": "Lajpat Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC253", - "message": "Lajpat Nagar Market", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC254", - "message": "Abadpura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC255", - "message": "Balmiki Colony Link Road Abadpura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC256", - "message": "Major Bahadur Singh Nagar & Marg", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC257", - "message": "New Model Town Mall Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC258", - "message": "New Jawahar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC259", - "message": "Guru Nanak Mission Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC26", - "message": "Sanjay Gandhi Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC260", - "message": "Badridass Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC261", - "message": "Purani Baradari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC262", - "message": "Skylark Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC263", - "message": "Civil Lines", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC264", - "message": "Sehdev Market", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC265", - "message": "Namdev Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC266", - "message": "G.T Road Market", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC267", - "message": "Shastri Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC268", - "message": "Sanjay Gandhi Market", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC269", - "message": "New Courts Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC27", - "message": "Gadaipur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC270", - "message": "Police Line Market", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC271", - "message": "BMC Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC272", - "message": "Market Opposite Bus Stand", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC273", - "message": "Link Road Model Town", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC274", - "message": "Valmiki Colony Major Bahadur Singh Marg", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC275", - "message": "Radio Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC276", - "message": "New Jawahar Nagar (Point)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC277", - "message": "Green Park", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC278", - "message": "Mota Singh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC279", - "message": "Modern Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC28", - "message": "Raja Garden", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC280", - "message": "Gurjaipal Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC281", - "message": "Wariam Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC282", - "message": "Gian Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC283", - "message": "New Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC284", - "message": "Defence Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC285", - "message": "Defence Colony Ext.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC286", - "message": "Chotti Baradari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC287", - "message": "Jaswant Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC288", - "message": "Roop Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC289", - "message": "Atwal Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC29", - "message": "Ram Bagh Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC290", - "message": "Atwal House", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC291", - "message": "New Hardyal Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC292", - "message": "Hardyal Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC293", - "message": "Rubi Hospital", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC294", - "message": "BSF Camp", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC295", - "message": "New Green Park", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC296", - "message": "Railway Quarter ( Cool Road)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC297", - "message": "Garha/Shiv Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC298", - "message": "Dayanand chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC299", - "message": "Rattan Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC3", - "message": "Sarabha Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC30", - "message": "Dada Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC300", - "message": "Sark Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC301", - "message": "Valmiki Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC302", - "message": "Ravi dass Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC303", - "message": "Makhan Ramwali Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC304", - "message": "School wali Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC305", - "message": "Jiwan Singh Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC306", - "message": "Tanki Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC307", - "message": "Phagu Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC308", - "message": "Sarpanch wali Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC309", - "message": "Main Bazar Rama Mandir", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC31", - "message": "Industrial Area", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC310", - "message": "Main Bazar Gurudwara Singh Sabha", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC311", - "message": "Garha Vehanda", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC312", - "message": "Phagu Mohalla Ram Mandir wali Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC313", - "message": "Phagwari Mohalla Near Janj Ghar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC314", - "message": "Phagwari Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC315", - "message": "Dr. Mana Wali Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC316", - "message": "Old Div. 7 Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC317", - "message": "Cantt. Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC318", - "message": "Cantt. Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC319", - "message": "New Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC32", - "message": "Focal Point", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC320", - "message": "Jaswant Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC321", - "message": "Jawant Nagar near Gurudwara", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC322", - "message": "Jaswant Nagar Gali No. 1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC323", - "message": "Jaswant Nagar Gali Thekewali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC324", - "message": "Jaswant Nagar Gali no. 100 3 to 5", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC325", - "message": "Jaswant Nagar Gali 2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC326", - "message": "Golden Aveune-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC327", - "message": "Golden Avenue-2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC328", - "message": "Gurjeet Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC329", - "message": "Dashmesh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC33", - "message": "Transport Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC330", - "message": "Chanchal Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC331", - "message": "Chotti Baradari Part-2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC332", - "message": "Idgah Mohalla Garha", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC333", - "message": "Sarak Mohalla Garha", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC334", - "message": "Guru Diwan Nagar Garha", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC335", - "message": "Tara Chand Colony Garha", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC336", - "message": "Chintpurni Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC337", - "message": "Geeta Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC338", - "message": "Garha", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC339", - "message": "Labour Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC34", - "message": "Udyog Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC340", - "message": "Kunowali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC341", - "message": "Urban Estate Ph-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC342", - "message": "M.I.G", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC343", - "message": "Urban Estate Phase Half", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC344", - "message": "Sabowal Old.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC345", - "message": "Isherpuri Colony (Some Part)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC346", - "message": "Urban Estate 2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC347", - "message": "Sabowal", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC348", - "message": "Lahor Nangal", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC349", - "message": "Isherpuri Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC35", - "message": "Parshuram Pur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC350", - "message": "Ranjit Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC351", - "message": "Kalgidhar Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC352", - "message": "New Kalgidhar Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC353", - "message": "Ravinder Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC354", - "message": "Dashmesh Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC355", - "message": "Karol Bagh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC356", - "message": "Vijay Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC357", - "message": "Guru Ram Dass Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC358", - "message": "Baba Makhan Shah Lubana", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC359", - "message": "Friends Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC36", - "message": "Vadda Saipur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC360", - "message": "Officer Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC361", - "message": "D.C Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC362", - "message": "White Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC363", - "message": "Punjabi Bagh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC364", - "message": "Lahor Nagar Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC365", - "message": "Happy Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC366", - "message": "New Isherpuri", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC367", - "message": "Universal Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC368", - "message": "Singh Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC369", - "message": "Engineer Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC37", - "message": "Reru", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC370", - "message": "Green Garden Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC371", - "message": "Ravinder Nagar Extension", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC372", - "message": "Punjabi Bagh Extension", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC373", - "message": "Model Town", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC374", - "message": "Parkash Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC375", - "message": "Guru Nanak Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC376", - "message": "Guru Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC377", - "message": "Rishi Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC378", - "message": "Jyoti Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC379", - "message": "Shankar Garden", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC38", - "message": "Hargobind Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC380", - "message": "Lal Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC381", - "message": "Satkartar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC382", - "message": "Ravinder Nagar Extension", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC383", - "message": "Cheema Nagar Ext.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC384", - "message": "Vasant Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC385", - "message": "Vasant Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC386", - "message": "Vasant Vihar Ext.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC387", - "message": "Urban Estate Ph-2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC388", - "message": "Model Town", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC389", - "message": "New Jawahar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC39", - "message": "Punjabi Bagh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC390", - "message": "Lajpat Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC391", - "message": "Dada Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC392", - "message": "Green Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC393", - "message": "Green Model Town", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC394", - "message": "Kewal Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC395", - "message": "Indra Park", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC396", - "message": "Cheema Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC397", - "message": "Shiv Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC398", - "message": "Gurmeet Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC399", - "message": "Ramneek Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC4", - "message": "Paschim Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC40", - "message": "Bachint Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC400", - "message": "Bank Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC401", - "message": "Bank Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC402", - "message": "Raja Garden", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC403", - "message": "Keshev Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC404", - "message": "Ekta Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC405", - "message": "New Raja Garden", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC406", - "message": "New Raja Garden Extension", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC407", - "message": "Bhai Samund Singh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC408", - "message": "New Arora Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC409", - "message": "Mithapur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC41", - "message": "Parsuram Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC410", - "message": "King Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC411", - "message": "Green Wood Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC412", - "message": "Ram Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC413", - "message": "Sewerage Board Quarter", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC414", - "message": "75 Garden Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC415", - "message": "Panch Sheel Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC416", - "message": "Mayor Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC417", - "message": "New Light Colony Phase -1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC418", - "message": "Bank Enclave Phase-2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC419", - "message": "Residence Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC42", - "message": "Kahanpur Abadi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC420", - "message": "Sudhama Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC421", - "message": "New Sudhama Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC422", - "message": "Rocky Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC423", - "message": "New Light Colony Phase-2 (Sudhama Vihar)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC424", - "message": "VIP Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC425", - "message": "Sadhu Singh Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC426", - "message": "Red Face Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC427", - "message": "New Garden Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC428", - "message": "Bhai Banno Ji Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC429", - "message": "Gill Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC43", - "message": "Ramneek Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC430", - "message": "Parkash Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC431", - "message": "Khurla Kingra", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC432", - "message": "Tower Town Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC433", - "message": "Silver Residency", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC434", - "message": "Tower Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC435", - "message": "Guru Nanak Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC436", - "message": "Boota Mandi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC437", - "message": "Boota Pind (Back Side Dr.B.R. Ambedkar Park", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC438", - "message": "Swami Lal JI Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC439", - "message": "New Green Park", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC44", - "message": "Baba Deep Singh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC440", - "message": "Khurla Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC441", - "message": "Professor Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC442", - "message": "Army Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC443", - "message": "Mann Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC444", - "message": "Chopra Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC445", - "message": "Khurla Kingra (Back Side Sai Mandir)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC446", - "message": "Door Darshan Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC447", - "message": "Bombay Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC448", - "message": "Friends Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC449", - "message": "SAS Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC45", - "message": "Nurpur Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC450", - "message": "SAS Nagar Extension", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC451", - "message": "New Green Model Town", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC452", - "message": "Palam Rajeet Apartments", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC453", - "message": "Bank Enclave Part 1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC454", - "message": "Kuki Dhab", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC455", - "message": "Green Woods Apartments", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC456", - "message": "Park View Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC457", - "message": "Housing Board Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC458", - "message": "Satnam Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC459", - "message": "Mann Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC46", - "message": "Sunder Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC460", - "message": "Punjabi Bagh Wadala Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC461", - "message": "Silver heights", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC462", - "message": "Partap Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC463", - "message": "Guru Gobind Singh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC464", - "message": "Guru Arjan dev Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC465", - "message": "G.T.B Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC466", - "message": "Garden Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC467", - "message": "G.T.B Nagar extension", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC468", - "message": "GTB Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC469", - "message": "F.C.I Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC47", - "message": "Hargobind Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC470", - "message": "Chanakya Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC471", - "message": "New GTB Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC472", - "message": "Vivek Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC473", - "message": "Green Model Town", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC474", - "message": "Boota Pind", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC475", - "message": "Wadala Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC476", - "message": "Main Road Abadpura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC477", - "message": "Gali No. 2 To Gali No. 6", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC478", - "message": "Preet Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC479", - "message": "Rameshwar Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC48", - "message": "Gulmarg Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC480", - "message": "Sh. Guru Ravidass Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC481", - "message": "Tubewell wali Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC482", - "message": "Labour Court Gali Panj Peer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC483", - "message": "Maharishi Valmiki Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC484", - "message": "Taneja New Abadpura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC485", - "message": "Avtar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC486", - "message": "New Avtar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC487", - "message": "New Suraj Ganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC488", - "message": "Pishori Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC489", - "message": "Naqvi Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC49", - "message": "Bachint Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC490", - "message": "Dairy Kalu Ram-O Band Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC491", - "message": "Bhargo Camp-Add", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC492", - "message": "Pishori Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC493", - "message": "Link Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC494", - "message": "Abadpura Gali No.1 to 2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC495", - "message": "New Suraj Ganj –west", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC496", - "message": "Gali No-10-B-11-B", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC497", - "message": "Bhargo Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC498", - "message": "Bhargo Camp", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC499", - "message": "Ravidass Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC5", - "message": "Amrit Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC50", - "message": "Sarabha Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC500", - "message": "Channan Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC501", - "message": "Boota Mandi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC502", - "message": "Silver Oak Apartments", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC503", - "message": "Nakodar Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC504", - "message": "Chappli Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC505", - "message": "Sant Pura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC506", - "message": "Arya Samaj Mandir", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC507", - "message": "Valmiki Mandir", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC508", - "message": "Chapal Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC509", - "message": "Kabir Mandir", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC51", - "message": "Chack Hussiana", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC510", - "message": "Gain Giri Mandir", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC511", - "message": "Nirankari Bhawan Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC512", - "message": "Ravidass Dham", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC513", - "message": "Kanth Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC514", - "message": "State Bank Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC515", - "message": "Ravidass Mandir", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC516", - "message": "Sharif Pura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC517", - "message": "Tokri Chowk Bhargo Camp", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC518", - "message": "Gali Mirasiya Wali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC519", - "message": "Gali Somnath Aara Wala", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC52", - "message": "Lamba Pind", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC520", - "message": "Prem Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC521", - "message": "Gali Ravi Karyana Store", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC522", - "message": "Gali Sharma Model School", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC523", - "message": "Chune Wali Gali Boota Mandi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC524", - "message": "Gali Pawan Koushal", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC525", - "message": "Bhargo Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC526", - "message": "Nive Passe Bhargo Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC527", - "message": "Azad Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC528", - "message": "New Suraj Ganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC529", - "message": "New Suraj Ganj (West)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC53", - "message": "Chandigarh Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC530", - "message": "Model House Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC531", - "message": "Main Bazar Bhargo", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC532", - "message": "Mohalla Amar Saw Mill", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC533", - "message": "Bhargo Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC534", - "message": "Shamshan Ghat Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC535", - "message": "Mohalla Vari Vatt", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC536", - "message": "Bhargo Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC537", - "message": "Tej Mohan Nagar Gali No-5 to Gali No-11", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC538", - "message": "New Ashok Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC539", - "message": "Narayan Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC54", - "message": "Succhi Pind", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC540", - "message": "Ashok Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC541", - "message": "New Sant Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC542", - "message": "Sant Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC543", - "message": "Nijatam Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC544", - "message": "Chouhan Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC545", - "message": "Ganesh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC546", - "message": "Basti Nau", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC547", - "message": "Bank Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC548", - "message": "Chaar Marla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC549", - "message": "Block-A,B,C.D", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC55", - "message": "Hardial Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC550", - "message": "Bhagat Singh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC551", - "message": "Rajput Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC552", - "message": "Taranwali Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC553", - "message": "Mohalla Kot", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC554", - "message": "Uttam Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC555", - "message": "Mohalla Chaiaam", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC556", - "message": "Tej Mohan Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC557", - "message": "Sant Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC558", - "message": "Siddhartha Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC559", - "message": "New Abadi Jallowal", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC56", - "message": "New Hardial Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC560", - "message": "Kay Pee Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC561", - "message": "New Model House", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC562", - "message": "Model Gram Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC563", - "message": "Gahi Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC564", - "message": "Jaina Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC565", - "message": "New Ghai Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC566", - "message": "Chiragpura Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC567", - "message": "New Deol Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC568", - "message": "New Dashmesh Nagar Block-A", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC569", - "message": "New Dashmesh Nagar Block-C", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC57", - "message": "Hardip Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC570", - "message": "Tilak Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC571", - "message": "Kartar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC572", - "message": "New Kartar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC573", - "message": "Udye Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC574", - "message": "Deol Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC575", - "message": "New Deol Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC576", - "message": "Aman Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC577", - "message": "Major Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC578", - "message": "Pink City Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC579", - "message": "Kot Sadiq Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC58", - "message": "Judge Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC580", - "message": "Khara Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC581", - "message": "Kot Sadiq", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC582", - "message": "Mast Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC583", - "message": "Thind Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC584", - "message": "Sai Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC585", - "message": "BT Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC586", - "message": "Kanshi Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC587", - "message": "Green Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC588", - "message": "Geeta Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC589", - "message": "New Geeta Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC59", - "message": "Prem Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC590", - "message": "Ishwar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC591", - "message": "New Dashmesh Nagar B Block", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC592", - "message": "Dordarshan Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC593", - "message": "Tower Enclave Phase 2nd", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC594", - "message": "Hamilton Tower", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC595", - "message": "Guru Ravidass Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC596", - "message": "New Ravidass Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC597", - "message": "Shiva Ji Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC598", - "message": "New Shiva Ji Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC599", - "message": "Lasuri Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC6", - "message": "Chak Jinda", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC60", - "message": "Gulmohar City", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC600", - "message": "New Lasuri Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC601", - "message": "Begampura Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC602", - "message": "Main Adda Basti Danishmandan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC603", - "message": "Main Bazar Basti Danishmandan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC604", - "message": "Valmiki Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC605", - "message": "Chandigarh Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC606", - "message": "New Chandigarh Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC607", - "message": "Chungi Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC608", - "message": "Chungi No-9", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC609", - "message": "Tagri Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC61", - "message": "Three Star Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC610", - "message": "Guru Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC611", - "message": "Surjit Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC612", - "message": "Basti Sheikh + Danishmandan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC613", - "message": "Kattra Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC614", - "message": "Guru Sant Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC615", - "message": "Guru Nanak Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC616", - "message": "Lasuri Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC617", - "message": "Baldev Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC618", - "message": "Satkartar Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC619", - "message": "Ujala Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC62", - "message": "Soma Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC620", - "message": "Mohindra Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC621", - "message": "Valmiki Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC622", - "message": "Vada Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC623", - "message": "Banian Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC624", - "message": "Satran Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC625", - "message": "Mochian Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC626", - "message": "Tarkhana Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC627", - "message": "Telian Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC628", - "message": "Road Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC629", - "message": "Manjit Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC63", - "message": "Mata Salani Mandir", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC630", - "message": "Chet Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC631", - "message": "Janak Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC632", - "message": "Chaian Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC633", - "message": "Kot Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC634", - "message": "Gulabia Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC635", - "message": "Bara Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC636", - "message": "Hargobind Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC637", - "message": "Gurditta Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC638", - "message": "Borah Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC639", - "message": "Sethia Wali Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC64", - "message": "Baba Gadila Sham colony (Succhi Pind)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC640", - "message": "Dhankian Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC641", - "message": "Jairath Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC642", - "message": "Bagh Ahluwalia", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC643", - "message": "Kamaliya Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC644", - "message": "Gobind Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC645", - "message": "New Gobind Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC646", - "message": "Dilbagh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC647", - "message": "120' Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC648", - "message": "Shastri Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC649", - "message": "Old Shastri Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC65", - "message": "Deep Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC650", - "message": "Old Dusshara Ground", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC651", - "message": "Surya Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC652", - "message": "Basti Gujan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC653", - "message": "Ambedkar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC654", - "message": "Shah Kuli Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC655", - "message": "Virdi Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC656", - "message": "Valmiki Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC657", - "message": "Vada Vehra", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC658", - "message": "Sunyara Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC659", - "message": "Jangra Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC66", - "message": "New Upkar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC660", - "message": "Machi Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC661", - "message": "Harkrishan Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC662", - "message": "Manjit Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC663", - "message": "New Dilbagh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC664", - "message": "Dilbagh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC665", - "message": "Lahoria Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC666", - "message": "Kot Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC667", - "message": "Binda Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC668", - "message": "Doriya Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC669", - "message": "Board Wali Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC67", - "message": "Moh Kot Ram Dass ( Abadi )", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC670", - "message": "Main Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC671", - "message": "Shibu Mandir Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC672", - "message": "New Adarsh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC673", - "message": "J.P.Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC674", - "message": "Adarsh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC675", - "message": "J.P. Nagar Extension", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC676", - "message": "Basti Nau", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC677", - "message": "Krishan Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC678", - "message": "Basti Mithu", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC679", - "message": "Patwar Khana", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC68", - "message": "Karol Bagh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC680", - "message": "Conal Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC681", - "message": "Harbans Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC682", - "message": "New Harbans Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC683", - "message": "New Harbans Nagar Ext.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC684", - "message": "Adarsh Nagar up to Satyam Hospital Street", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC685", - "message": "New Vijay Nagar Left Side", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC686", - "message": "Tagore Nagar Right Side St.NO.7", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC687", - "message": "Dyal Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC688", - "message": "Gujral Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC689", - "message": "Shakti Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC69", - "message": "Rail Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC690", - "message": "Vijay Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC691", - "message": "S.U.S Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC692", - "message": "Ajit Singh Nagar up to Nakodar Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC693", - "message": "Niwan Suraj Gunj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC694", - "message": "Islam Gunj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC695", - "message": "Islamabad", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC696", - "message": "Mission Compound Left Side Batra Hospital", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC697", - "message": "Makhdoom Pura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC698", - "message": "Dhobi Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC699", - "message": "Mohalla Pacca Bagh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC7", - "message": "Toor Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC70", - "message": "Patel Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC700", - "message": "Ram Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC701", - "message": "Saidan Gate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC702", - "message": "Chowk Kade Shah", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC703", - "message": "Batakh Wala Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC704", - "message": "Rainak Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC705", - "message": "Naya Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC706", - "message": "Shaheed Udham Singh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC707", - "message": "Flats", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC708", - "message": "Civil Hospital", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC709", - "message": "E.S.I Hospital", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC71", - "message": "Sangam Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC710", - "message": "E.S.I Hospital Flats", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC711", - "message": "Milap Chowk to G.P.O", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC712", - "message": "G.P.O to Shastri Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC713", - "message": "Shastri to Milap Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC714", - "message": "Milap to Sunrise Hotal", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC715", - "message": "Sunrise Hotal to Partap Bagh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC716", - "message": "Partap Bagh to Phagwara Gate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC717", - "message": "Naya Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC718", - "message": "Saiden Gate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC719", - "message": "Peer Bodla Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC72", - "message": "Preet Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC720", - "message": "Khazuria Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC721", - "message": "Guru Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC722", - "message": "Neehya Band Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC723", - "message": "Jybal Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC724", - "message": "Neem Wali Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC725", - "message": "Tanki Wali Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC726", - "message": "Khodiya Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC727", - "message": "Kotpakshiya", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC728", - "message": "Hotel Raj Mahal back Side Gurudawara and Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC729", - "message": "Pakka Bagh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC73", - "message": "Mann Singh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC730", - "message": "Chohal Bagh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC731", - "message": "Hindsamachar Ground", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC732", - "message": "Mina Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC733", - "message": "Tikki Bagh Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC734", - "message": "Ucha Suraj Gunj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC735", - "message": "Jyoti chowk to preet Hotel", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC736", - "message": "Charanjit Pura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC737", - "message": "Ajit Pura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC738", - "message": "Jatt Pura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC739", - "message": "Valmiki Gate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC74", - "message": "Suchi Pind", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC740", - "message": "Malka Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC741", - "message": "Mohindru Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC742", - "message": "Mitha Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC743", - "message": "Telwali Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC744", - "message": "Chota Ali Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC745", - "message": "Alli Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC746", - "message": "Bansa Wala Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC747", - "message": "Chajju Ram Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC748", - "message": "Kotwali Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC749", - "message": "Malora Muhalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC75", - "message": "Indian Oil Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC750", - "message": "Nauhrian Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC751", - "message": "Kot Bahadur Khan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC752", - "message": "Sheikhan Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC753", - "message": "Sudan Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC754", - "message": "Deen Dayal Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC755", - "message": "Prem Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC756", - "message": "New Prem Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC757", - "message": "Sat Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC758", - "message": "Chandan Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC759", - "message": "Fateh Puri", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC76", - "message": "Green County", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC760", - "message": "Vikrampura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC761", - "message": "Subash Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC762", - "message": "Partap Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC763", - "message": "Purani Kachehri", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC764", - "message": "Piplan Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC765", - "message": "Chadhian Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC766", - "message": "Lawan Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC767", - "message": "Charjian Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC768", - "message": "Mitha Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC769", - "message": "Bhairon Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC77", - "message": "Ladhewali Pind", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC770", - "message": "Quilla Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC771", - "message": "Qazi Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC772", - "message": "Khingran Gate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC773", - "message": "Mughlan Dhiki", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC774", - "message": "Prem Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC775", - "message": "Purian Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC776", - "message": "Sehglan Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC777", - "message": "Modian Tod", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC778", - "message": "Thapra Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC779", - "message": "Mai Hiran Gate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC78", - "message": "Chokan Kalan Pind", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC780", - "message": "Phagwara Gate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC781", - "message": "Rasta Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC782", - "message": "Biliya Mandir", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC783", - "message": "Talhi Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC784", - "message": "Baghia Whra", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC785", - "message": "Quda Shah Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC786", - "message": "Phir Bodhla Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC787", - "message": "Kalo Vani Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC788", - "message": "Atari Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC789", - "message": "Nacha Badh Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC79", - "message": "Nagal Shama Pind", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC790", - "message": "Kanchia Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC791", - "message": "Qazi Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC792", - "message": "Qilla Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC793", - "message": "Shivraz Garh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC794", - "message": "Panj Peer Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC795", - "message": "Bhagat Singh Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC796", - "message": "Railway Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC797", - "message": "Rishi Nagar Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC798", - "message": "Partap Bagh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC799", - "message": "Awa Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC8", - "message": "Navjot Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC80", - "message": "Datar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC800", - "message": "Kot Kishan Chand", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC801", - "message": "Jagat Pura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC802", - "message": "Dhan Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC803", - "message": "Rishi Nagar (5 Gali)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC804", - "message": "Kishanpura (5 Gali)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC805", - "message": "Inderparsth Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC806", - "message": "Arya Samaj Mandir", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC807", - "message": "Bheem Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC808", - "message": "Sansi Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC809", - "message": "Dolatpuri", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC81", - "message": "Khehra Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC810", - "message": "Kapoor Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC811", - "message": "Ajit Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC812", - "message": "Amrik Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC813", - "message": "New Ajit Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC814", - "message": "New Amrik Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC815", - "message": "Baba Math Shah", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC816", - "message": "Santoshi Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC817", - "message": "Madrasi Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC818", - "message": "Qazi Mandi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC819", - "message": "Kishan Pura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC82", - "message": "Kabir Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC820", - "message": "Hoshiarpur Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC821", - "message": "Old Hoshiarpur Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC822", - "message": "Baldev Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC823", - "message": "New Baldev Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC824", - "message": "Baba Balak Nath Market", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC825", - "message": "Madrasi Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC826", - "message": "Ravidass School Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC827", - "message": "Dhonka Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC828", - "message": "Prithvi Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC829", - "message": "New Prithvi Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC83", - "message": "Kabir Avenue Extension", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC830", - "message": "Lambapind Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC831", - "message": "Dutta Street", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC832", - "message": "Raman Shiv Mandir Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC833", - "message": "Ajit Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC834", - "message": "Balmiki Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC835", - "message": "Vivek Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC836", - "message": "New Vivek Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC837", - "message": "Arjun Singh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC838", - "message": "Jaimal Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC839", - "message": "Durga Mandir Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC84", - "message": "Punjab Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC840", - "message": "Vinay Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC841", - "message": "Akash Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC842", - "message": "Arjun Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC843", - "message": "Jaimal Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC844", - "message": "Upkar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC845", - "message": "New Upkar Nargar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC846", - "message": "Ghandi Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC847", - "message": "New Ghandi Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC848", - "message": "Chakk Hussaina", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC849", - "message": "Hoshiarpur Road Lamba Pind(Left Side)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC85", - "message": "Punjab Avenue Extension", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC850", - "message": "Muslim Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC851", - "message": "New Vinay Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC852", - "message": "Hans Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC853", - "message": "New Santokhpura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC854", - "message": "Durga Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC855", - "message": "Sarabha Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC856", - "message": "Guru Ram Dass Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC857", - "message": "Niwi Abadi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC858", - "message": "Lakshmipura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC859", - "message": "New Lakshmipura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC86", - "message": "Dhaliwal Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC860", - "message": "Vij Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC861", - "message": "Sant Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC862", - "message": "Bhagatpura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC863", - "message": "Jeet Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC864", - "message": "Vikaspuri", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC865", - "message": "New Vikaspuri", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC866", - "message": "Ambika Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC867", - "message": "B.D.Steel", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC868", - "message": "Santokhpura Nivi Abadi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC869", - "message": "Basti Bhure Kha", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC87", - "message": "Himachal Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC870", - "message": "Shah Sikandar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC871", - "message": "Ram Gharia School", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC872", - "message": "Preet Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC873", - "message": "Basant Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC874", - "message": "New Basant Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC875", - "message": "Aman Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC876", - "message": "New Aman Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC877", - "message": "New colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC878", - "message": "Kamal Park", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC879", - "message": "Preet Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC88", - "message": "Green Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC880", - "message": "New Preet Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC881", - "message": "Sodal Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC882", - "message": "Sidh Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC883", - "message": "Ashok Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC884", - "message": "Ramco Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC885", - "message": "New Sodal Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC886", - "message": "Mathura Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC887", - "message": "Kot Baba Deep Singh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC888", - "message": "Tobari Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC889", - "message": "Tanda Road Hanuman Mandir Chowk to Tanda Road Railway Crossing", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC89", - "message": "Sunshine Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC890", - "message": "Shah Sikandar Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC891", - "message": "Kailash Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC892", - "message": "New Kailash Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC893", - "message": "New Kailash Nagar Ext.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC894", - "message": "Gobind Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC895", - "message": "New Gobind Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC896", - "message": "J.M.C Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC897", - "message": "Gujja Peer Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC898", - "message": "Amar Garden", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC899", - "message": "Saipur Kalan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC9", - "message": "New Guru Amar Das Extension Paschim", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC90", - "message": "Silver Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC900", - "message": "Sanjay Gandhi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC901", - "message": "Dada Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC902", - "message": "Saini Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC903", - "message": "Chotta Saipur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC904", - "message": "Hari Singh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC905", - "message": "Shashi Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC906", - "message": "Lathi Mar Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC907", - "message": "Sodal Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC908", - "message": "Gujja Peer Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC909", - "message": "Sodal Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC91", - "message": "Randhawa Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC910", - "message": "Laxmi Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC911", - "message": "Kali Mata Mandir Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC912", - "message": "Bhagat Singh Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC913", - "message": "Baba Balak Nath Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC914", - "message": "Shiv Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC915", - "message": "Canal Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC916", - "message": "Industrial Area", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC917", - "message": "Dada Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC918", - "message": "Chota Saipur Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC919", - "message": "Shiv Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC92", - "message": "Lahora Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC920", - "message": "Brij Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC921", - "message": "Gajji Gulla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC922", - "message": "Parbhat Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC923", - "message": "Ram Nagar Railway", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC924", - "message": "Crossing to Gajji Gujja Chowk Left Side", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC925", - "message": "Industrial Area Ext.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC926", - "message": "Canal Industrial Complex", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC927", - "message": "Gandhi Camp", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC928", - "message": "Gurdev Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC929", - "message": "Gopal Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC93", - "message": "Nanak Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC930", - "message": "Satnam Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC931", - "message": "Sawan Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC932", - "message": "Valmiki Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC933", - "message": "New Grain Market", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC934", - "message": "Jain Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC935", - "message": "New Gopal Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC936", - "message": "Neela Mahal", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC937", - "message": "Mohalla Krar Khan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC938", - "message": "Sangra Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC939", - "message": "Teacher Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC94", - "message": "Basant Hill", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC940", - "message": "Krishna Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC941", - "message": "Tobri Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC942", - "message": "Guru Nanak Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC943", - "message": "Harnamdasspura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC944", - "message": "Kot Lakhpat Rai", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC945", - "message": "Banda Bahadur Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC946", - "message": "Kapurthala Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC947", - "message": "Bagh Baharia", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC948", - "message": "Gulab Devi Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC949", - "message": "Bulton Park Cricket Stadium", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC95", - "message": "University Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC950", - "message": "Durga Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC951", - "message": "B.S.F Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC952", - "message": "Gopal Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC953", - "message": "New Colony Gopal Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC954", - "message": "Main Road Old Sabzi Mandi to Burton Park", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC955", - "message": "Sangat Singh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC956", - "message": "Balwant Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC957", - "message": "Bandha Bhadur Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC958", - "message": "Sarswati Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC959", - "message": "PNT Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC96", - "message": "Moti Bagh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC960", - "message": "Bagh Bharia", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC961", - "message": "Bhagwan Dass Pura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC962", - "message": "Dhiman Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC963", - "message": "Adresh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC964", - "message": "Natha Bagechi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC965", - "message": "Misson Compound", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC966", - "message": "Talab Bharia", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC967", - "message": "Jail Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC968", - "message": "Kabir Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC969", - "message": "Kachari Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC97", - "message": "Park Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC970", - "message": "Gandhi Camp 3 Lain", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC971", - "message": "Windsor Park", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC972", - "message": "Rose Park", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC973", - "message": "Jain Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC974", - "message": "Gupta Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC975", - "message": "Hardev Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC976", - "message": "Guru Nanak Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC977", - "message": "Guru Arjun Dev Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC978", - "message": "Sarswati Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC979", - "message": "Surjit Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC98", - "message": "Chopra Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC980", - "message": "Malak Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC981", - "message": "Kalyani Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC982", - "message": "Suriya Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC983", - "message": "Vivekananda Park", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC984", - "message": "Ariya Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC985", - "message": "Pingalwara", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC986", - "message": "Gujrati Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC987", - "message": "Shardha Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC988", - "message": "Sawarn Park", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC989", - "message": "Ram Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC99", - "message": "Dr. Ambedkar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC990", - "message": "Chhota Gandhi Nagar Camp", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC991", - "message": "Friends Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC992", - "message": "Seth Hukam Chand Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC993", - "message": "Greater Kailash", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC994", - "message": "Moti Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC995", - "message": "New Moti Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC996", - "message": "Tagore Park/ Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC997", - "message": "Professor Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC998", - "message": "Maqsudan Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_JLC999", - "message": "Bohar Wala Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_SUN01", - "message": "Locality 01", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_SUN02", - "message": "Locality 02", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_SUN03", - "message": "Locality 03", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_SUN10", - "message": "Locality 10", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_SUN11", - "message": "Locality 11", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_SUN12", - "message": "Locality 12", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_SUN20", - "message": "Locality 20", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_SUN21", - "message": "Locality 21", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_SUN22", - "message": "Locality 22", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_SUN30", - "message": "Locality 30", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_SUN31", - "message": "Locality 31", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_SUN32", - "message": "Locality 32", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_ADMIN_SUN33", - "message": "Locality 33", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_CITYA_LABEL", - "message": "City A", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_JLC476_SL0001", - "message": "Kathagada juanga sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_JLC476_SL0013", - "message": "K.K sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_JLC476_SL0014", - "message": "G.G slum", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_JLC476_SL0015", - "message": "North border sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_JLC477_SL0002", - "message": "Kathagada Parbatia Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_JLC477_SL0016", - "message": "New Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_JLC477_SL0017", - "message": "Old Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_JLC477_SL0018", - "message": "AJS Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_JLC478_SL0003", - "message": "Gangadhar Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_JLC478_SL0019", - "message": "New Giojyothi Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_JLC478_SL0020", - "message": "2nd cross Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_JLC478_SL0021", - "message": "Drose nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_JLC478_SL0022", - "message": "New life sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_JLC479_SL0004", - "message": "Pandab Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_JLC479_SL0023", - "message": "Pandab cross street", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_JLC479_SL0024", - "message": "Gandhi mandap sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_JLC479_SL0025", - "message": "K.K nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_JLC479_SL0026", - "message": "Post office road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_JLC479_SL0027", - "message": "Amritsar bypass road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_JLC480_SL0005", - "message": "Haridakhandi Harijana sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_JLC480_SL0028", - "message": "BPL colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_JLC480_SL0029", - "message": "CMC out gate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_JLC480_SL0030", - "message": "City slum development colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_JLC481_SL0006", - "message": "Haridakhandi Kadalibada Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_JLC482_SL0007", - "message": "Haridakhandi Bada sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_JLC483_SL0008", - "message": "Haridakhandi Redika Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_JLC484_SL0009", - "message": "Golapali Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_JLC485_SL0010", - "message": "Surya Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_JLC486_SL0011", - "message": "Damba Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_JLC487_SL0012", - "message": "Raju Dhoba Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1", - "message": "Ashok Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC10", - "message": "Gurbachan Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC100", - "message": "Dera Preet Nagar Jhuggia", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1000", - "message": "Maqsudan Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1001", - "message": "Nagra Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1002", - "message": "Jawala Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1003", - "message": "New Jawala Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1004", - "message": "Patel Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1005", - "message": "New Patel Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1006", - "message": "Guru Ravidass Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1007", - "message": "Bhupinder Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1008", - "message": "Ashok Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1009", - "message": "Nagra Pind", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC101", - "message": "Miya Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1010", - "message": "New Nagra", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1011", - "message": "Shital Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1012", - "message": "New Shital Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1013", - "message": "Jugian", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1014", - "message": "Sham Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1015", - "message": "Amar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1016", - "message": "Babu Labh Singh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1017", - "message": "Rattan Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1018", - "message": "New Rattan Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1019", - "message": "Shaheed Babu Labh Singh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC102", - "message": "Shalimar Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1020", - "message": "New Shaheed Babu Labh Singh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1021", - "message": "Madhuban Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1022", - "message": "Gujrati Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1023", - "message": "Jagwali Kathi Near Canal", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1024", - "message": "Ragu Nath Mandir Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1025", - "message": "Kacha Kot", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1026", - "message": "Old Green Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1027", - "message": "Green Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1028", - "message": "Raja Garden", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1029", - "message": "Raja Garden Extension", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC103", - "message": "New Dashmesh Nagar Part", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1030", - "message": "V.I.P Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1031", - "message": "Butti Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1032", - "message": "Gagan Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1033", - "message": "Bhai Gurdass Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1034", - "message": "Baba Bachittar Ji Nagar Mithu Basti", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1035", - "message": "Tara Singh Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1036", - "message": "New Rasila Nagar Basti Danishmandan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1037", - "message": "Dilbagh Nagar Ext.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1038", - "message": "Rasila Nagar Phase 2 Danishmandan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1039", - "message": "Rasila Nagar Basti Danishmandan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC104", - "message": "Kaki Pind", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1040", - "message": "Begampura Colony Danishmandan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1041", - "message": "Baba Budha Ji Nagar Mithu Nagar Basti", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1042", - "message": "Ekta Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1043", - "message": "New Shastri Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1044", - "message": "Satnam Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1045", - "message": "Anoop Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1046", - "message": "Bal bro Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1047", - "message": "Badhri Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1048", - "message": "Badhri Colony Phase (2)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1049", - "message": "Ram Shernam Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC105", - "message": "New Joginder Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1050", - "message": "Peer Das Basti", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1051", - "message": "Kamar Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1052", - "message": "Panu Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1053", - "message": "Paras Estate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1054", - "message": "Paras Estate 2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1055", - "message": "Maharaja Garden", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1056", - "message": "Harbanse Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1057", - "message": "5 Peer Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1058", - "message": "Anoop Nagar (2)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1059", - "message": "Sher Singh Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC106", - "message": "Part of Joginder Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1060", - "message": "Roshan Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1061", - "message": "Qilla Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1062", - "message": "Kathera Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1063", - "message": "Gautam Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1064", - "message": "New Gautam Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1065", - "message": "Kabir Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1066", - "message": "Guru Ram Dass Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1067", - "message": "Mata Sant Kaur Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1068", - "message": "City A Prime", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1069", - "message": "City A Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC107", - "message": "New Beant Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1070", - "message": "City A Kunj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1071", - "message": "Rajan Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1072", - "message": "Kailash Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1073", - "message": "Balmik Mohalla Bawa Khel", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1074", - "message": "Akal Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1075", - "message": "Basti Bawa Khel (main)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1076", - "message": "Raj Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1077", - "message": "New Raj Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1078", - "message": "Kabir Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1079", - "message": "Bank Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC108", - "message": "Part of Beant Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1080", - "message": "Basti Bawa Khel", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1081", - "message": "Katehara Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1082", - "message": "New Rattan Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1083", - "message": "Guru Nanak Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1084", - "message": "New Guru Nanak Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1085", - "message": "Shiv Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1086", - "message": "Baba Kahandass Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1087", - "message": "Village Nagara", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1088", - "message": "Abinandan Park", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1089", - "message": "National Park", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC109", - "message": "Gulmarg Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1090", - "message": "Ashok Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1091", - "message": "Vivek Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1092", - "message": "Green Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1093", - "message": "Shanti Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1094", - "message": "Viveka Nand Park", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1095", - "message": "Subash Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1096", - "message": "Golden Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1097", - "message": "Navyug Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1098", - "message": "New Shiv Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1099", - "message": "Maqsudan Byepass", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC11", - "message": "Indra Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC110", - "message": "Mehtab Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1100", - "message": "Mahasha Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1101", - "message": "Anand Ngr", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1102", - "message": "New Anand Ngr", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1103", - "message": "Janta Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1104", - "message": "Navnirman Janta Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1105", - "message": "Issa Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1106", - "message": "Guru Nanak Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1107", - "message": "Aara Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1108", - "message": "Surat Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1109", - "message": "Master Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC111", - "message": "Professor Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1110", - "message": "Angad Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC1111", - "message": "Amandip Avenue.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC112", - "message": "Mohan Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC113", - "message": "Part of Ladhewali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC114", - "message": "Part of New Dashmesh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC115", - "message": "Dhilwan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC116", - "message": "Dhanowali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC117", - "message": "Sanik Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC118", - "message": "Old Dashmesh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC119", - "message": "Ajeet Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC12", - "message": "Sant Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC120", - "message": "Guru Anged Dev Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC121", - "message": "Sunder Nagar Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC122", - "message": "Kohinoor Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC123", - "message": "Sunny Prime", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC124", - "message": "Arman Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC125", - "message": "Johan Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC126", - "message": "Ganesh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC127", - "message": "New Ganesh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC128", - "message": "Masi Mohalla Dakoha", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC129", - "message": "Tarun Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC13", - "message": "Kalia Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC130", - "message": "Kaki Pind", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC131", - "message": "Arman Nagar 2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC132", - "message": "Birring Pind-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC133", - "message": "Birring Pind-2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC134", - "message": "Mohinder Singh Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC135", - "message": "Mehnga Singh Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC136", - "message": "Dada Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC137", - "message": "Peace Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC138", - "message": "Bunga Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC139", - "message": "Golden Colony (Phase 1)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC14", - "message": "Kalia Colony Ph-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC140", - "message": "Golden Colony (Phase 2)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC141", - "message": "Golden Colony (Phase 3)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC142", - "message": "Model Estate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC143", - "message": "Defence Colony (Phase 1)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC144", - "message": "New Defence Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC145", - "message": "Paragpura ( Old Phagwara Road)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC146", - "message": "Paragpura ( Pind )", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC147", - "message": "Paragpura ( Abadi Near Railway fatak )", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC148", - "message": "Ratti Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC149", - "message": "Thakur Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC15", - "message": "Kalia Colony PH-2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC150", - "message": "Ram Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC151", - "message": "Chotte Ram Bagh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC152", - "message": "Panch Sheel Colony ( Half )", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC153", - "message": "Bhullar Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC154", - "message": "Modern State", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC155", - "message": "Yadav Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC156", - "message": "Baba Budha Ji Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC157", - "message": "Bhuda Ji Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC158", - "message": "Shaheed Gurvinder Singh Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC159", - "message": "National Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC16", - "message": "Kalia Colony PH-3", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC160", - "message": "Ravidass Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC161", - "message": "Guru Nanak Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC162", - "message": "Jagjit Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC163", - "message": "Old Kaki Pind", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC164", - "message": "Village Dakoha", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC165", - "message": "Baba Budha Singh Nagar Street No 1 to 9", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC166", - "message": "Ekta Nagar PH-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC167", - "message": "Ekta Nagar PH-2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC168", - "message": "Joginder Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC169", - "message": "Panch Rattan Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC17", - "message": "Kalia Farm", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC170", - "message": "New Defence Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC171", - "message": "Beant Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC172", - "message": "Old Beant Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC173", - "message": "PSEB Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC174", - "message": "BB Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC175", - "message": "Half Rama Mandi Main Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC176", - "message": "Khateek Market Ramamandi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC177", - "message": "Valmik Mohalla Ramamandi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC178", - "message": "Krishna Sweet Wali Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC179", - "message": "Palwon Wali Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC18", - "message": "Guru Amar Dass Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC180", - "message": "Fouji Wali Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC181", - "message": "Bhatra Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC182", - "message": "Aytar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC183", - "message": "Guru Nanak Pura East", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC184", - "message": "Guru Nanak Pura West", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC185", - "message": "Chugitti", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC186", - "message": "Ekta Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC187", - "message": "P.A.P", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC188", - "message": "Railway Colony-3", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC189", - "message": "Rajinder Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC19", - "message": "Guru Amar Dass Nagar 2- Marla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC190", - "message": "Preet Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC191", - "message": "Sehgal Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC192", - "message": "Kirti Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC193", - "message": "Mohalla Ladowali Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC194", - "message": "Mohyal Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC195", - "message": "Link Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC196", - "message": "Hargobind Pura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC197", - "message": "Ranjit Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC198", - "message": "New Rajinder Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC199", - "message": "Police Line", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC2", - "message": "Bank Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC20", - "message": "New Guru Amar Dass Nagar Ext.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC200", - "message": "Guru Nanak Pura (West) Street No. 1 to 8", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC201", - "message": "New Guru Nanak Pura (West)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC202", - "message": "Bhojowal Patti (Chugittee)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC203", - "message": "Bharat Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC204", - "message": "Satnam Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC205", - "message": "Chugittee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC206", - "message": "Ved Ram Parkash Street", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC207", - "message": "Guru Gobind Singh Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC208", - "message": "Sureya Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC209", - "message": "Komal Vihar Old & New", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC21", - "message": "Guru Amar Dass Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC210", - "message": "Bashirpura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC211", - "message": "Thakur Singh Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC212", - "message": "Royal Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC213", - "message": "Jhansi Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC214", - "message": "Gobind Garh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC215", - "message": "Arjun Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC216", - "message": "40 Quarter", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC217", - "message": "Dashmesh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC218", - "message": "New Dashmesh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC219", - "message": "Sant Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC22", - "message": "Venus Valley", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC220", - "message": "Shanti Pura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC221", - "message": "New Baradari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC222", - "message": "Poultry Form Area", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC223", - "message": "Prem Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC224", - "message": "Mandi Fenton Garg", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC225", - "message": "Partap Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC226", - "message": "Rishi Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC227", - "message": "Brahm Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC228", - "message": "Mandi Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC229", - "message": "Railway Colony No. 1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC23", - "message": "Baba Mohan Dass Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC230", - "message": "Guard Colony No-2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC231", - "message": "Old Jawahar Nagar Single Lane", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC232", - "message": "Central Town", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC233", - "message": "Krishan Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC234", - "message": "Old Jawahar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC235", - "message": "Master Tara Singh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC236", - "message": "P & T Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC237", - "message": "Riaz Pura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC238", - "message": "Ramesh Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC239", - "message": "Shiva Ji Park", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC24", - "message": "Salempur Muslmana", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC240", - "message": "Netaji Park", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC241", - "message": "Civil Lines", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC242", - "message": "Mohalla Makhdumpura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC243", - "message": "Mohalla Shastri Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC244", - "message": "Fauji Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC245", - "message": "Shivalik Apartments", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC246", - "message": "Venus Apartments", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC247", - "message": "B-Block Apartments", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC248", - "message": "Paradise Apartments", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC249", - "message": "Gurkirpa Apartments", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC25", - "message": "Swarn Park-1Swarn Prak- 2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC250", - "message": "Ganga Apartments", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC251", - "message": "Nakodar Road Market", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC252", - "message": "Lajpat Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC253", - "message": "Lajpat Nagar Market", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC254", - "message": "Abadpura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC255", - "message": "Balmiki Colony Link Road Abadpura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC256", - "message": "Major Bahadur Singh Nagar & Marg", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC257", - "message": "New Model Town Mall Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC258", - "message": "New Jawahar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC259", - "message": "Guru Nanak Mission Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC26", - "message": "Sanjay Gandhi Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC260", - "message": "Badridass Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC261", - "message": "Purani Baradari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC262", - "message": "Skylark Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC263", - "message": "Civil Lines", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC264", - "message": "Sehdev Market", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC265", - "message": "Namdev Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC266", - "message": "G.T Road Market", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC267", - "message": "Shastri Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC268", - "message": "Sanjay Gandhi Market", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC269", - "message": "New Courts Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC27", - "message": "Gadaipur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC270", - "message": "Police Line Market", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC271", - "message": "BMC Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC272", - "message": "Market Opposite Bus Stand", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC273", - "message": "Link Road Model Town", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC274", - "message": "Valmiki Colony Major Bahadur Singh Marg", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC275", - "message": "Radio Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC276", - "message": "New Jawahar Nagar (Point)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC277", - "message": "Green Park", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC278", - "message": "Mota Singh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC279", - "message": "Modern Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC28", - "message": "Raja Garden", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC280", - "message": "Gurjaipal Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC281", - "message": "Wariam Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC282", - "message": "Gian Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC283", - "message": "New Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC284", - "message": "Defence Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC285", - "message": "Defence Colony Ext.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC286", - "message": "Chotti Baradari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC287", - "message": "Jaswant Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC288", - "message": "Roop Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC289", - "message": "Atwal Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC29", - "message": "Ram Bagh Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC290", - "message": "Atwal House", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC291", - "message": "New Hardyal Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC292", - "message": "Hardyal Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC293", - "message": "Rubi Hospital", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC294", - "message": "BSF Camp", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC295", - "message": "New Green Park", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC296", - "message": "Railway Quarter ( Cool Road)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC297", - "message": "Garha/Shiv Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC298", - "message": "Dayanand chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC299", - "message": "Rattan Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC3", - "message": "Sarabha Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC30", - "message": "Dada Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC300", - "message": "Sark Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC301", - "message": "Valmiki Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC302", - "message": "Ravi dass Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC303", - "message": "Makhan Ramwali Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC304", - "message": "School wali Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC305", - "message": "Jiwan Singh Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC306", - "message": "Tanki Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC307", - "message": "Phagu Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC308", - "message": "Sarpanch wali Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC309", - "message": "Main Bazar Rama Mandir", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC31", - "message": "Industrial Area", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC310", - "message": "Main Bazar Gurudwara Singh Sabha", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC311", - "message": "Garha Vehanda", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC312", - "message": "Phagu Mohalla Ram Mandir wali Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC313", - "message": "Phagwari Mohalla Near Janj Ghar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC314", - "message": "Phagwari Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC315", - "message": "Dr. Mana Wali Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC316", - "message": "Old Div. 7 Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC317", - "message": "Cantt. Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC318", - "message": "Cantt. Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC319", - "message": "New Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC32", - "message": "Focal Point", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC320", - "message": "Jaswant Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC321", - "message": "Jawant Nagar near Gurudwara", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC322", - "message": "Jaswant Nagar Gali No. 1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC323", - "message": "Jaswant Nagar Gali Thekewali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC324", - "message": "Jaswant Nagar Gali no. 100 3 to 5", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC325", - "message": "Jaswant Nagar Gali 2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC326", - "message": "Golden Aveune-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC327", - "message": "Golden Avenue-2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC328", - "message": "Gurjeet Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC329", - "message": "Dashmesh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC33", - "message": "Transport Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC330", - "message": "Chanchal Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC331", - "message": "Chotti Baradari Part-2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC332", - "message": "Idgah Mohalla Garha", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC333", - "message": "Sarak Mohalla Garha", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC334", - "message": "Guru Diwan Nagar Garha", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC335", - "message": "Tara Chand Colony Garha", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC336", - "message": "Chintpurni Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC337", - "message": "Geeta Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC338", - "message": "Garha", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC339", - "message": "Labour Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC34", - "message": "Udyog Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC340", - "message": "Kunowali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC341", - "message": "Urban Estate Ph-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC342", - "message": "M.I.G", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC343", - "message": "Urban Estate Phase Half", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC344", - "message": "Sabowal Old.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC345", - "message": "Isherpuri Colony (Some Part)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC346", - "message": "Urban Estate 2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC347", - "message": "Sabowal", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC348", - "message": "Lahor Nangal", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC349", - "message": "Isherpuri Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC35", - "message": "Parshuram Pur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC350", - "message": "Ranjit Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC351", - "message": "Kalgidhar Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC352", - "message": "New Kalgidhar Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC353", - "message": "Ravinder Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC354", - "message": "Dashmesh Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC355", - "message": "Karol Bagh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC356", - "message": "Vijay Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC357", - "message": "Guru Ram Dass Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC358", - "message": "Baba Makhan Shah Lubana", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC359", - "message": "Friends Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC36", - "message": "Vadda Saipur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC360", - "message": "Officer Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC361", - "message": "D.C Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC362", - "message": "White Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC363", - "message": "Punjabi Bagh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC364", - "message": "Lahor Nagar Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC365", - "message": "Happy Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC366", - "message": "New Isherpuri", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC367", - "message": "Universal Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC368", - "message": "Singh Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC369", - "message": "Engineer Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC37", - "message": "Reru", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC370", - "message": "Green Garden Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC371", - "message": "Ravinder Nagar Extension", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC372", - "message": "Punjabi Bagh Extension", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC373", - "message": "Model Town", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC374", - "message": "Parkash Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC375", - "message": "Guru Nanak Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC376", - "message": "Guru Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC377", - "message": "Rishi Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC378", - "message": "Jyoti Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC379", - "message": "Shankar Garden", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC38", - "message": "Hargobind Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC380", - "message": "Lal Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC381", - "message": "Satkartar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC382", - "message": "Ravinder Nagar Extension", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC383", - "message": "Cheema Nagar Ext.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC384", - "message": "Vasant Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC385", - "message": "Vasant Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC386", - "message": "Vasant Vihar Ext.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC387", - "message": "Urban Estate Ph-2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC388", - "message": "Model Town", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC389", - "message": "New Jawahar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC39", - "message": "Punjabi Bagh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC390", - "message": "Lajpat Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC391", - "message": "Dada Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC392", - "message": "Green Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC393", - "message": "Green Model Town", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC394", - "message": "Kewal Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC395", - "message": "Indra Park", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC396", - "message": "Cheema Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC397", - "message": "Shiv Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC398", - "message": "Gurmeet Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC399", - "message": "Ramneek Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC4", - "message": "Paschim Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC40", - "message": "Bachint Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC400", - "message": "Bank Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC401", - "message": "Bank Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC402", - "message": "Raja Garden", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC403", - "message": "Keshev Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC404", - "message": "Ekta Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC405", - "message": "New Raja Garden", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC406", - "message": "New Raja Garden Extension", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC407", - "message": "Bhai Samund Singh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC408", - "message": "New Arora Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC409", - "message": "Mithapur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC41", - "message": "Parsuram Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC410", - "message": "King Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC411", - "message": "Green Wood Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC412", - "message": "Ram Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC413", - "message": "Sewerage Board Quarter", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC414", - "message": "75 Garden Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC415", - "message": "Panch Sheel Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC416", - "message": "Mayor Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC417", - "message": "New Light Colony Phase -1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC418", - "message": "Bank Enclave Phase-2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC419", - "message": "Residence Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC42", - "message": "Kahanpur Abadi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC420", - "message": "Sudhama Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC421", - "message": "New Sudhama Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC422", - "message": "Rocky Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC423", - "message": "New Light Colony Phase-2 (Sudhama Vihar)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC424", - "message": "VIP Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC425", - "message": "Sadhu Singh Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC426", - "message": "Red Face Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC427", - "message": "New Garden Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC428", - "message": "Bhai Banno Ji Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC429", - "message": "Gill Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC43", - "message": "Ramneek Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC430", - "message": "Parkash Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC431", - "message": "Khurla Kingra", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC432", - "message": "Tower Town Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC433", - "message": "Silver Residency", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC434", - "message": "Tower Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC435", - "message": "Guru Nanak Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC436", - "message": "Boota Mandi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC437", - "message": "Boota Pind (Back Side Dr.B.R. Ambedkar Park", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC438", - "message": "Swami Lal JI Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC439", - "message": "New Green Park", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC44", - "message": "Baba Deep Singh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC440", - "message": "Khurla Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC441", - "message": "Professor Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC442", - "message": "Army Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC443", - "message": "Mann Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC444", - "message": "Chopra Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC445", - "message": "Khurla Kingra (Back Side Sai Mandir)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC446", - "message": "Door Darshan Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC447", - "message": "Bombay Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC448", - "message": "Friends Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC449", - "message": "SAS Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC45", - "message": "Nurpur Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC450", - "message": "SAS Nagar Extension", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC451", - "message": "New Green Model Town", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC452", - "message": "Palam Rajeet Apartments", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC453", - "message": "Bank Enclave Part 1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC454", - "message": "Kuki Dhab", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC455", - "message": "Green Woods Apartments", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC456", - "message": "Park View Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC457", - "message": "Housing Board Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC458", - "message": "Satnam Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC459", - "message": "Mann Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC46", - "message": "Sunder Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC460", - "message": "Punjabi Bagh Wadala Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC461", - "message": "Silver heights", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC462", - "message": "Partap Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC463", - "message": "Guru Gobind Singh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC464", - "message": "Guru Arjan dev Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC465", - "message": "G.T.B Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC466", - "message": "Garden Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC467", - "message": "G.T.B Nagar extension", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC468", - "message": "GTB Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC469", - "message": "F.C.I Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC47", - "message": "Hargobind Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC470", - "message": "Chanakya Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC471", - "message": "New GTB Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC472", - "message": "Vivek Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC473", - "message": "Green Model Town", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC474", - "message": "Boota Pind", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC475", - "message": "Wadala Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC476", - "message": "Main Road Abadpura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC477", - "message": "Gali No. 2 To Gali No. 6", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC478", - "message": "Preet Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC479", - "message": "Rameshwar Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC48", - "message": "Gulmarg Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC480", - "message": "Sh. Guru Ravidass Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC481", - "message": "Tubewell wali Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC482", - "message": "Labour Court Gali Panj Peer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC483", - "message": "Maharishi Valmiki Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC484", - "message": "Taneja New Abadpura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC485", - "message": "Avtar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC486", - "message": "New Avtar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC487", - "message": "New Suraj Ganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC488", - "message": "Pishori Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC489", - "message": "Naqvi Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC49", - "message": "Bachint Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC490", - "message": "Dairy Kalu Ram-O Band Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC491", - "message": "Bhargo Camp-Add", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC492", - "message": "Pishori Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC493", - "message": "Link Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC494", - "message": "Abadpura Gali No.1 to 2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC495", - "message": "New Suraj Ganj –west", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC496", - "message": "Gali No-10-B-11-B", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC497", - "message": "Bhargo Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC498", - "message": "Bhargo Camp", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC499", - "message": "Ravidass Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC5", - "message": "Amrit Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC50", - "message": "Sarabha Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC500", - "message": "Channan Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC501", - "message": "Boota Mandi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC502", - "message": "Silver Oak Apartments", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC503", - "message": "Nakodar Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC504", - "message": "Chappli Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC505", - "message": "Sant Pura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC506", - "message": "Arya Samaj Mandir", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC507", - "message": "Valmiki Mandir", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC508", - "message": "Chapal Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC509", - "message": "Kabir Mandir", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC51", - "message": "Chack Hussiana", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC510", - "message": "Gain Giri Mandir", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC511", - "message": "Nirankari Bhawan Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC512", - "message": "Ravidass Dham", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC513", - "message": "Kanth Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC514", - "message": "State Bank Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC515", - "message": "Ravidass Mandir", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC516", - "message": "Sharif Pura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC517", - "message": "Tokri Chowk Bhargo Camp", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC518", - "message": "Gali Mirasiya Wali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC519", - "message": "Gali Somnath Aara Wala", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC52", - "message": "Lamba Pind", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC520", - "message": "Prem Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC521", - "message": "Gali Ravi Karyana Store", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC522", - "message": "Gali Sharma Model School", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC523", - "message": "Chune Wali Gali Boota Mandi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC524", - "message": "Gali Pawan Koushal", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC525", - "message": "Bhargo Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC526", - "message": "Nive Passe Bhargo Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC527", - "message": "Azad Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC528", - "message": "New Suraj Ganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC529", - "message": "New Suraj Ganj (West)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC53", - "message": "Chandigarh Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC530", - "message": "Model House Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC531", - "message": "Main Bazar Bhargo", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC532", - "message": "Mohalla Amar Saw Mill", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC533", - "message": "Bhargo Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC534", - "message": "Shamshan Ghat Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC535", - "message": "Mohalla Vari Vatt", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC536", - "message": "Bhargo Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC537", - "message": "Tej Mohan Nagar Gali No-5 to Gali No-11", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC538", - "message": "New Ashok Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC539", - "message": "Narayan Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC54", - "message": "Succhi Pind", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC540", - "message": "Ashok Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC541", - "message": "New Sant Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC542", - "message": "Sant Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC543", - "message": "Nijatam Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC544", - "message": "Chouhan Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC545", - "message": "Ganesh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC546", - "message": "Basti Nau", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC547", - "message": "Bank Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC548", - "message": "Chaar Marla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC549", - "message": "Block-A,B,C,D", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC55", - "message": "Hardial Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC550", - "message": "Bhagat Singh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC551", - "message": "Rajput Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC552", - "message": "Taranwali Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC553", - "message": "Mohalla Kot", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC554", - "message": "Uttam Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC555", - "message": "Mohalla Chaiaam", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC556", - "message": "Tej Mohan Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC557", - "message": "Sant Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC558", - "message": "Siddhartha Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC559", - "message": "New Abadi Jallowal", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC56", - "message": "New Hardial Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC560", - "message": "Kay Pee Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC561", - "message": "New Model House", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC562", - "message": "Model Gram Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC563", - "message": "Gahi Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC564", - "message": "Jaina Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC565", - "message": "New Ghai Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC566", - "message": "Chiragpura Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC567", - "message": "New Deol Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC568", - "message": "New Dashmesh Nagar Block-A", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC569", - "message": "New Dashmesh Nagar Block-C", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC57", - "message": "Hardip Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC570", - "message": "Tilak Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC571", - "message": "Kartar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC572", - "message": "New Kartar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC573", - "message": "Udye Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC574", - "message": "Deol Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC575", - "message": "New Deol Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC576", - "message": "Aman Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC577", - "message": "Major Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC578", - "message": "Pink City Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC579", - "message": "Kot Sadiq Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC58", - "message": "Judge Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC580", - "message": "Khara Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC581", - "message": "Kot Sadiq", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC582", - "message": "Mast Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC583", - "message": "Thind Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC584", - "message": "Sai Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC585", - "message": "BT Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC586", - "message": "Kanshi Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC587", - "message": "Green Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC588", - "message": "Geeta Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC589", - "message": "New Geeta Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC59", - "message": "Prem Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC590", - "message": "Ishwar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC591", - "message": "New Dashmesh Nagar B Block", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC592", - "message": "Dordarshan Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC593", - "message": "Tower Enclave Phase 2nd", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC594", - "message": "Hamilton Tower", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC595", - "message": "Guru Ravidass Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC596", - "message": "New Ravidass Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC597", - "message": "Shiva Ji Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC598", - "message": "New Shiva Ji Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC599", - "message": "Lasuri Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC6", - "message": "Chak Jinda", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC60", - "message": "Gulmohar City", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC600", - "message": "New Lasuri Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC601", - "message": "Begampura Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC602", - "message": "Main Adda Basti Danishmandan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC603", - "message": "Main Bazar Basti Danishmandan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC604", - "message": "Valmiki Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC605", - "message": "Chandigarh Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC606", - "message": "New Chandigarh Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC607", - "message": "Chungi Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC608", - "message": "Chungi No-9", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC609", - "message": "Tagri Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC61", - "message": "Three Star Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC610", - "message": "Guru Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC611", - "message": "Surjit Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC612", - "message": "Basti Sheikh + Danishmandan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC613", - "message": "Kattra Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC614", - "message": "Guru Sant Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC615", - "message": "Guru Nanak Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC616", - "message": "Lasuri Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC617", - "message": "Baldev Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC618", - "message": "Satkartar Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC619", - "message": "Ujala Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC62", - "message": "Soma Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC620", - "message": "Mohindra Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC621", - "message": "Valmiki Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC622", - "message": "Vada Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC623", - "message": "Banian Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC624", - "message": "Satran Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC625", - "message": "Mochian Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC626", - "message": "Tarkhana Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC627", - "message": "Telian Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC628", - "message": "Road Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC629", - "message": "Manjit Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC63", - "message": "Mata Salani Mandir", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC630", - "message": "Chet Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC631", - "message": "Janak Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC632", - "message": "Chaian Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC633", - "message": "Kot Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC634", - "message": "Gulabia Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC635", - "message": "Bara Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC636", - "message": "Hargobind Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC637", - "message": "Gurditta Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC638", - "message": "Borah Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC639", - "message": "Sethia Wali Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC64", - "message": "Baba Gadila Sham colony (Succhi Pind)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC640", - "message": "Dhankian Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC641", - "message": "Jairath Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC642", - "message": "Bagh Ahluwalia", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC643", - "message": "Kamaliya Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC644", - "message": "Gobind Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC645", - "message": "New Gobind Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC646", - "message": "Dilbagh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC647", - "message": "120' Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC648", - "message": "Shastri Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC649", - "message": "Old Shastri Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC65", - "message": "Deep Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC650", - "message": "Old Dusshara Ground", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC651", - "message": "Surya Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC652", - "message": "Basti Gujan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC653", - "message": "Ambedkar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC654", - "message": "Shah Kuli Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC655", - "message": "Virdi Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC656", - "message": "Valmiki Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC657", - "message": "Vada Vehra", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC658", - "message": "Sunyara Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC659", - "message": "Jangra Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC66", - "message": "New Upkar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC660", - "message": "Machi Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC661", - "message": "Harkrishan Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC662", - "message": "Manjit Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC663", - "message": "New Dilbagh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC664", - "message": "Dilbagh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC665", - "message": "Lahoria Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC666", - "message": "Kot Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC667", - "message": "Binda Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC668", - "message": "Doriya Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC669", - "message": "Board Wali Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC67", - "message": "Moh Kot Ram Dass ( Abadi )", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC670", - "message": "Main Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC671", - "message": "Shibu Mandir Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC672", - "message": "New Adarsh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC673", - "message": "J.P.Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC674", - "message": "Adarsh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC675", - "message": "J.P. Nagar Extension", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC676", - "message": "Basti Nau", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC677", - "message": "Krishan Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC678", - "message": "Basti Mithu", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC679", - "message": "Patwar Khana", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC68", - "message": "Karol Bagh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC680", - "message": "Conal Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC681", - "message": "Harbans Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC682", - "message": "New Harbans Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC683", - "message": "New Harbans Nagar Ext.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC684", - "message": "Adarsh Nagar up to Satyam Hospital Street", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC685", - "message": "New Vijay Nagar Left Side", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC686", - "message": "Tagore Nagar Right Side St.NO.7", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC687", - "message": "Dyal Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC688", - "message": "Gujral Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC689", - "message": "Shakti Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC69", - "message": "Rail Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC690", - "message": "Vijay Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC691", - "message": "S.U.S Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC692", - "message": "Ajit Singh Nagar up to Nakodar Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC693", - "message": "Niwan Suraj Gunj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC694", - "message": "Islam Gunj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC695", - "message": "Islamabad", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC696", - "message": "Mission Compound Left Side Batra Hospital", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC697", - "message": "Makhdoom Pura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC698", - "message": "Dhobi Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC699", - "message": "Mohalla Pacca Bagh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC7", - "message": "Toor Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC70", - "message": "Patel Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC700", - "message": "Ram Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC701", - "message": "Saidan Gate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC702", - "message": "Chowk Kade Shah", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC703", - "message": "Batakh Wala Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC704", - "message": "Rainak Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC705", - "message": "Naya Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC706", - "message": "Shaheed Udham Singh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC707", - "message": "Flats", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC708", - "message": "Civil Hospital", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC709", - "message": "E.S.I Hospital", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC71", - "message": "Sangam Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC710", - "message": "E.S.I Hospital Flats", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC711", - "message": "Milap Chowk to G.P.O", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC712", - "message": "G.P.O to Shastri Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC713", - "message": "Shastri to Milap Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC714", - "message": "Milap to Sunrise Hotal", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC715", - "message": "Sunrise Hotal to Partap Bagh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC716", - "message": "Partap Bagh to Phagwara Gate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC717", - "message": "Naya Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC718", - "message": "Saiden Gate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC719", - "message": "Peer Bodla Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC72", - "message": "Preet Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC720", - "message": "Khazuria Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC721", - "message": "Guru Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC722", - "message": "Neehya Band Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC723", - "message": "Jybal Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC724", - "message": "Neem Wali Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC725", - "message": "Tanki Wali Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC726", - "message": "Khodiya Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC727", - "message": "Kotpakshiya", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC728", - "message": "Hotel Raj Mahal back Side Gurudawara and Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC729", - "message": "Pakka Bagh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC73", - "message": "Mann Singh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC730", - "message": "Chohal Bagh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC731", - "message": "Hindsamachar Ground", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC732", - "message": "Mina Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC733", - "message": "Tikki Bagh Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC734", - "message": "Ucha Suraj Gunj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC735", - "message": "Jyoti chowk to preet Hotel", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC736", - "message": "Charanjit Pura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC737", - "message": "Ajit Pura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC738", - "message": "Jatt Pura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC739", - "message": "Valmiki Gate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC74", - "message": "Suchi Pind", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC740", - "message": "Malka Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC741", - "message": "Mohindru Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC742", - "message": "Mitha Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC743", - "message": "Telwali Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC744", - "message": "Chota Ali Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC745", - "message": "Alli Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC746", - "message": "Bansa Wala Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC747", - "message": "Chajju Ram Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC748", - "message": "Kotwali Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC749", - "message": "Malora Muhalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC75", - "message": "Indian Oil Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC750", - "message": "Nauhrian Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC751", - "message": "Kot Bahadur Khan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC752", - "message": "Sheikhan Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC753", - "message": "Sudan Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC754", - "message": "Deen Dayal Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC755", - "message": "Prem Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC756", - "message": "New Prem Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC757", - "message": "Sat Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC758", - "message": "Chandan Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC759", - "message": "Fateh Puri", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC76", - "message": "Green County", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC760", - "message": "Vikrampura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC761", - "message": "Subash Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC762", - "message": "Partap Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC763", - "message": "Purani Kachehri", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC764", - "message": "Piplan Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC765", - "message": "Chadhian Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC766", - "message": "Lawan Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC767", - "message": "Charjian Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC768", - "message": "Mitha Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC769", - "message": "Bhairon Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC77", - "message": "Ladhewali Pind", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC770", - "message": "Quilla Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC771", - "message": "Qazi Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC772", - "message": "Khingran Gate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC773", - "message": "Mughlan Dhiki", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC774", - "message": "Prem Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC775", - "message": "Purian Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC776", - "message": "Sehglan Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC777", - "message": "Modian Tod", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC778", - "message": "Thapra Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC779", - "message": "Mai Hiran Gate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC78", - "message": "Chokan Kalan Pind", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC780", - "message": "Phagwara Gate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC781", - "message": "Rasta Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC782", - "message": "Biliya Mandir", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC783", - "message": "Talhi Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC784", - "message": "Baghia Whra", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC785", - "message": "Quda Shah Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC786", - "message": "Phir Bodhla Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC787", - "message": "Kalo Vani Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC788", - "message": "Atari Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC789", - "message": "Nacha Badh Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC79", - "message": "Nagal Shama Pind", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC790", - "message": "Kanchia Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC791", - "message": "Qazi Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC792", - "message": "Qilla Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC793", - "message": "Shivraz Garh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC794", - "message": "Panj Peer Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC795", - "message": "Bhagat Singh Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC796", - "message": "Railway Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC797", - "message": "Rishi Nagar Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC798", - "message": "Partap Bagh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC799", - "message": "Awa Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC8", - "message": "Navjot Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC80", - "message": "Datar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC800", - "message": "Kot Kishan Chand", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC801", - "message": "Jagat Pura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC802", - "message": "Dhan Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC803", - "message": "Rishi Nagar (5 Gali)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC804", - "message": "Kishanpura (5 Gali)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC805", - "message": "Inderparsth Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC806", - "message": "Arya Samaj Mandir", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC807", - "message": "Bheem Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC808", - "message": "Sansi Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC809", - "message": "Dolatpuri", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC81", - "message": "Khehra Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC810", - "message": "Kapoor Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC811", - "message": "Ajit Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC812", - "message": "Amrik Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC813", - "message": "New Ajit Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC814", - "message": "New Amrik Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC815", - "message": "Baba Math Shah", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC816", - "message": "Santoshi Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC817", - "message": "Madrasi Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC818", - "message": "Qazi Mandi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC819", - "message": "Kishan Pura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC82", - "message": "Kabir Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC820", - "message": "Hoshiarpur Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC821", - "message": "Old Hoshiarpur Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC822", - "message": "Baldev Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC823", - "message": "New Baldev Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC824", - "message": "Baba Balak Nath Market", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC825", - "message": "Madrasi Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC826", - "message": "Ravidass School Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC827", - "message": "Dhonka Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC828", - "message": "Prithvi Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC829", - "message": "New Prithvi Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC83", - "message": "Kabir Avenue Extension", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC830", - "message": "Lambapind Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC831", - "message": "Dutta Street", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC832", - "message": "Raman Shiv Mandir Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC833", - "message": "Ajit Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC834", - "message": "Balmiki Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC835", - "message": "Vivek Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC836", - "message": "New Vivek Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC837", - "message": "Arjun Singh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC838", - "message": "Jaimal Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC839", - "message": "Durga Mandir Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC84", - "message": "Punjab Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC840", - "message": "Vinay Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC841", - "message": "Akash Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC842", - "message": "Arjun Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC843", - "message": "Jaimal Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC844", - "message": "Upkar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC845", - "message": "New Upkar Nargar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC846", - "message": "Ghandi Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC847", - "message": "New Ghandi Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC848", - "message": "Chakk Hussaina", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC849", - "message": "Hoshiarpur Road Lamba Pind(Left Side)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC85", - "message": "Punjab Avenue Extension", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC850", - "message": "Muslim Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC851", - "message": "New Vinay Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC852", - "message": "Hans Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC853", - "message": "New Santokhpura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC854", - "message": "Durga Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC855", - "message": "Sarabha Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC856", - "message": "Guru Ram Dass Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC857", - "message": "Niwi Abadi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC858", - "message": "Lakshmipura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC859", - "message": "New Lakshmipura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC86", - "message": "Dhaliwal Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC860", - "message": "Vij Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC861", - "message": "Sant Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC862", - "message": "Bhagatpura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC863", - "message": "Jeet Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC864", - "message": "Vikaspuri", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC865", - "message": "New Vikaspuri", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC866", - "message": "Ambika Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC867", - "message": "B.D.Steel", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC868", - "message": "Santokhpura Nivi Abadi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC869", - "message": "Basti Bhure Kha", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC87", - "message": "Himachal Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC870", - "message": "Shah Sikandar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC871", - "message": "Ram Gharia School", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC872", - "message": "Preet Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC873", - "message": "Basant Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC874", - "message": "New Basant Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC875", - "message": "Aman Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC876", - "message": "New Aman Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC877", - "message": "New colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC878", - "message": "Kamal Park", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC879", - "message": "Preet Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC88", - "message": "Green Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC880", - "message": "New Preet Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC881", - "message": "Sodal Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC882", - "message": "Sidh Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC883", - "message": "Ashok Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC884", - "message": "Ramco Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC885", - "message": "New Sodal Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC886", - "message": "Mathura Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC887", - "message": "Kot Baba Deep Singh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC888", - "message": "Tobari Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC889", - "message": "Tanda Road Hanuman Mandir Chowk to Tanda Road Railway Crossing", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC89", - "message": "Sunshine Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC890", - "message": "Shah Sikandar Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC891", - "message": "Kailash Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC892", - "message": "New Kailash Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC893", - "message": "New Kailash Nagar Ext.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC894", - "message": "Gobind Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC895", - "message": "New Gobind Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC896", - "message": "J.M.C Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC897", - "message": "Gujja Peer Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC898", - "message": "Amar Garden", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC899", - "message": "Saipur Kalan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC9", - "message": "New Guru Amar Das Extension Paschim", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC90", - "message": "Silver Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC900", - "message": "Sanjay Gandhi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC901", - "message": "Dada Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC902", - "message": "Saini Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC903", - "message": "Chotta Saipur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC904", - "message": "Hari Singh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC905", - "message": "Shashi Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC906", - "message": "Lathi Mar Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC907", - "message": "Sodal Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC908", - "message": "Gujja Peer Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC909", - "message": "Sodal Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC91", - "message": "Randhawa Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC910", - "message": "Laxmi Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC911", - "message": "Kali Mata Mandir Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC912", - "message": "Bhagat Singh Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC913", - "message": "Baba Balak Nath Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC914", - "message": "Shiv Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC915", - "message": "Canal Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC916", - "message": "Industrial Area", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC917", - "message": "Dada Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC918", - "message": "Chota Saipur Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC919", - "message": "Shiv Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC92", - "message": "Lahora Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC920", - "message": "Brij Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC921", - "message": "Gajji Gulla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC922", - "message": "Parbhat Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC923", - "message": "Ram Nagar Railway", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC924", - "message": "Crossing to Gajji Gujja Chowk Left Side", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC925", - "message": "Industrial Area Ext.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC926", - "message": "Canal Industrial Complex", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC927", - "message": "Gandhi Camp", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC928", - "message": "Gurdev Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC929", - "message": "Gopal Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC93", - "message": "Nanak Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC930", - "message": "Satnam Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC931", - "message": "Sawan Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC932", - "message": "Valmiki Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC933", - "message": "New Grain Market", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC934", - "message": "Jain Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC935", - "message": "New Gopal Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC936", - "message": "Neela Mahal", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC937", - "message": "Mohalla Krar Khan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC938", - "message": "Sangra Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC939", - "message": "Teacher Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC94", - "message": "Basant Hill", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC940", - "message": "Krishna Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC941", - "message": "Tobri Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC942", - "message": "Guru Nanak Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC943", - "message": "Harnamdasspura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC944", - "message": "Kot Lakhpat Rai", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC945", - "message": "Banda Bahadur Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC946", - "message": "Kapurthala Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC947", - "message": "Bagh Baharia", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC948", - "message": "Gulab Devi Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC949", - "message": "Bulton Park Cricket Stadium", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC95", - "message": "University Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC950", - "message": "Durga Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC951", - "message": "B.S.F Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC952", - "message": "Gopal Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC953", - "message": "New Colony Gopal Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC954", - "message": "Main Road Old Sabzi Mandi to Burton Park", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC955", - "message": "Sangat Singh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC956", - "message": "Balwant Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC957", - "message": "Bandha Bhadur Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC958", - "message": "Sarswati Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC959", - "message": "PNT Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC96", - "message": "Moti Bagh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC960", - "message": "Bagh Bharia", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC961", - "message": "Bhagwan Dass Pura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC962", - "message": "Dhiman Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC963", - "message": "Adresh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC964", - "message": "Natha Bagechi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC965", - "message": "Misson Compound", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC966", - "message": "Talab Bharia", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC967", - "message": "Jail Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC968", - "message": "Kabir Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC969", - "message": "Kachari Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC97", - "message": "Park Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC970", - "message": "Gandhi Camp 3 Lain", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC971", - "message": "Windsor Park", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC972", - "message": "Rose Park", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC973", - "message": "Jain Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC974", - "message": "Gupta Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC975", - "message": "Hardev Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC976", - "message": "Guru Nanak Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC977", - "message": "Guru Arjun Dev Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC978", - "message": "Sarswati Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC979", - "message": "Surjit Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC98", - "message": "Chopra Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC980", - "message": "Malak Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC981", - "message": "Kalyani Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC982", - "message": "Suriya Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC983", - "message": "Vivekananda Park", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC984", - "message": "Ariya Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC985", - "message": "Pingalwara", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC986", - "message": "Gujrati Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC987", - "message": "Shardha Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC988", - "message": "Sawarn Park", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC989", - "message": "Ram Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC99", - "message": "Dr. Ambedkar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC990", - "message": "Chhota Gandhi Nagar Camp", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC991", - "message": "Friends Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC992", - "message": "Seth Hukam Chand Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC993", - "message": "Greater Kailash", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC994", - "message": "Moti Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC995", - "message": "New Moti Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC996", - "message": "Tagore Park/ Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC997", - "message": "Professor Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC998", - "message": "Maqsudan Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_JLC999", - "message": "Bohar Wala Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_LOCALITY_STATEA_01_01_SUN01", - "message": "Ajit Nagar - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_LOCALITY_STATEA_01_02_SUN02", - "message": "Back Side 33 KVA Grid Patiala Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_LOCALITY_STATEA_01_03_SUN03", - "message": "Bharath Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_LOCALITY_STATEA_02_01_SUN10", - "message": "Backside Brijbala Hospital - Area3", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_LOCALITY_STATEA_02_02_SUN11", - "message": "Bigharwal Chowk to Railway Station - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_LOCALITY_STATEA_02_03_SUN12", - "message": "Chandar Colony Biggarwal Road - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_LOCALITY_STATEA_03_01_SUN20", - "message": "Aggarsain Chowk to Mal Godown - Both Sides - Area3", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_LOCALITY_STATEA_03_02_SUN21", - "message": "ATAR SINGH COLONY - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_LOCALITY_STATEA_03_03_SUN22", - "message": "Back Side Naina Devi Mandir - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_LOCALITY_STATEA_04_01_SUN30", - "message": "Bakhtaur Nagar - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_LOCALITY_STATEA_04_02_SUN31", - "message": "Bhai Mool Chand Sahib Colony - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_LOCALITY_STATEA_04_03_SUN32", - "message": "College Road (Southern side) - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_LOCALITY_STATEA_04_04_SUN33", - "message": "Ekta Colony (Southern Side) - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_REVENUE_LOCALITY_STATEA_01_01_SUN01", - "message": "Ajit Nagar - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_REVENUE_LOCALITY_STATEA_01_02_SUN02", - "message": "Back Side 33 KVA Grid Patiala Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_REVENUE_LOCALITY_STATEA_01_03_SUN03", - "message": "Bharath Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_REVENUE_LOCALITY_STATEA_02_01_SUN10", - "message": "Backside Brijbala Hospital - Area3", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_REVENUE_LOCALITY_STATEA_02_02_SUN11", - "message": "Bigharwal Chowk to Railway Station - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_REVENUE_LOCALITY_STATEA_02_03_SUN12", - "message": "Chandar Colony Biggarwal Road - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_REVENUE_LOCALITY_STATEA_03_01_SUN20", - "message": "Aggarsain Chowk to Mal Godown - Both Sides - Area3", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_REVENUE_LOCALITY_STATEA_03_02_SUN21", - "message": "ATAR SINGH COLONY - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_REVENUE_LOCALITY_STATEA_03_03_SUN22", - "message": "Back Side Naina Devi Mandir - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_REVENUE_LOCALITY_STATEA_04_01_SUN30", - "message": "Bakhtaur Nagar - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_REVENUE_LOCALITY_STATEA_04_02_SUN31", - "message": "Bhai Mool Chand Sahib Colony - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_REVENUE_LOCALITY_STATEA_04_03_SUN32", - "message": "College Road (Southern side) - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_REVENUE_LOCALITY_STATEA_04_04_SUN33", - "message": "Ekta Colony (Southern Side) - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_SUN01", - "message": "Ajit Nagar - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_SUN02", - "message": "Back Side 33 KVA Grid Patiala Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_SUN03", - "message": "Bharath Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_SUN10", - "message": "Backside Brijbala Hospital - Area3", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_SUN11", - "message": "Bigharwal Chowk to Railway Station - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_SUN12", - "message": "Chandar Colony Biggarwal Road - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_SUN20", - "message": "Aggarsain Chowk to Mal Godown - Both Sides - Area3", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_SUN21", - "message": "ATAR SINGH COLONY - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_SUN22", - "message": "Back Side Naina Devi Mandir - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_SUN30", - "message": "Bakhtaur Nagar - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_SUN31", - "message": "Bhai Mool Chand Sahib Colony - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_SUN32", - "message": "College Road (Southern side) - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_SUN33", - "message": "Ekta Colony (Southern Side) - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYA_REVENUE_null", - "message": "NA", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_ADMIN_SU166", - "message": "Mohalla Majoran", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_ADMIN_SUN02", - "message": "Aggarsain Chowk to Mal Godown - Both Sides", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_ADMIN_SUN04", - "message": "Ajit Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_ADMIN_SUN08", - "message": "ATAR SINGH COLONY", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_ADMIN_SUN105", - "message": "Jaura Khoo to Saraffa Bazaar (Southern Side)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_ADMIN_SUN109", - "message": "Kailash Parbat", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_ADMIN_SUN11", - "message": "Back Side 33 KVA Grid Patiala Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_ADMIN_SUN12", - "message": "Back Side 66 KVA Grid Patiala Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_ADMIN_SUN13", - "message": "Back Side Civil Courts Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_ADMIN_SUN132", - "message": "Mohalla Akalgarh Gurudwara", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_ADMIN_SUN134", - "message": "Mohalla Bhadra Kali Mandir", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_ADMIN_SUN136", - "message": "Mohalla Bhatta Wala", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_ADMIN_SUN137", - "message": "Mohalla Bhawdeyan Wala", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_ADMIN_SUN138", - "message": "Mohalla Bhojeka (both sides)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_ADMIN_SUN144", - "message": "Mohalla Kohliyan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_ADMIN_SUN150", - "message": "Mohalla Rajan Wala (both sides)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_ADMIN_SUN153", - "message": "Mohalla Singhkiyan (Nothern Side)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_ADMIN_SUN158", - "message": "Mohalla-Kashayian wala", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_ADMIN_SUN161", - "message": "Mohalla-Singhkiya wala", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_ADMIN_SUN167", - "message": "Mohalla Angaria wala", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_ADMIN_SUN169", - "message": "Mohalla Banda Patti", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_ADMIN_SUN170", - "message": "Mohalla Bhai Ka", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_ADMIN_SUN173", - "message": "Mohalla Ganj Sheeda", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_ADMIN_SUN176", - "message": "Mohalla Kango", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_ADMIN_SUN178", - "message": "Mohalla Singh kia", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_ADMIN_SUN18", - "message": "Back Side Naina Devi Mandir", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_ADMIN_SUN194", - "message": "NEAR GURUDWARA PEHALI PATSHAHI UDAM SINGH ROAD", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_ADMIN_SUN20", - "message": "Backside Brijbala Hospital", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_ADMIN_SUN23", - "message": "BACKSIDE OLD GRAIN MARKET", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_ADMIN_SUN25", - "message": "Bakhtaur Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_ADMIN_SUN31", - "message": "Bhai Mool Chand Sahib Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_ADMIN_SUN35", - "message": "Bigharwal Chowk to Railway Station", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_ADMIN_SUN40", - "message": "Chandar Colony Biggarwal Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_ADMIN_SUN41", - "message": "Charjan Wala Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_ADMIN_SUN45", - "message": "Cinema Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_ADMIN_SUN46", - "message": "Cinema Road to Ali Bazaar (Nothern Side)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_ADMIN_SUN49", - "message": "College Road (Southern side)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_ADMIN_SUN54", - "message": "Deedar Tailor to Mata Modi Park- West Side", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_ADMIN_SUN55", - "message": "Deep Rice Mill Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_ADMIN_SUN56", - "message": "Dental College", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_ADMIN_SUN62", - "message": "Ekta Colony (Southern Side)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_ADMIN_SUN75", - "message": "Gaushala", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_ADMIN_SUN80", - "message": "Gugga Maadi Road (east side)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_ADMIN_SUN84", - "message": "Gurudwara Niai Sahib Street 1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_REVENUE_SU166", - "message": "Mohalla Majoran - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_REVENUE_SUN02", - "message": "Aggarsain Chowk to Mal Godown - Both Sides - Area3", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_REVENUE_SUN04", - "message": "Ajit Nagar - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_REVENUE_SUN08", - "message": "ATAR SINGH COLONY - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_REVENUE_SUN105", - "message": "Jaura Khoo to Saraffa Bazaar (Southern Side) - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_REVENUE_SUN109", - "message": "Kailash Parbat - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_REVENUE_SUN11", - "message": "Back Side 33 KVA Grid Patiala Road - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_REVENUE_SUN12", - "message": "Back Side 66 KVA Grid Patiala Road - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_REVENUE_SUN13", - "message": "Back Side Civil Courts Colony - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_REVENUE_SUN132", - "message": "Mohalla Akalgarh Gurudwara - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_REVENUE_SUN134", - "message": "Mohalla Bhadra Kali Mandir - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_REVENUE_SUN136", - "message": "Mohalla Bhatta Wala - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_REVENUE_SUN137", - "message": "Mohalla Bhawdeyan Wala - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_REVENUE_SUN138", - "message": "Mohalla Bhojeka (both sides) - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_REVENUE_SUN144", - "message": "Mohalla Kohliyan - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_REVENUE_SUN150", - "message": "Mohalla Rajan Wala (both sides) - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_REVENUE_SUN153", - "message": "Mohalla Singhkiyan (Nothern Side) - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_REVENUE_SUN158", - "message": "Mohalla-Kashayian wala - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_REVENUE_SUN161", - "message": "Mohalla-Singhkiya wala - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_REVENUE_SUN167", - "message": "Mohalla Angaria wala - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_REVENUE_SUN169", - "message": "Mohalla Banda Patti - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_REVENUE_SUN170", - "message": "Mohalla Bhai Ka - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_REVENUE_SUN173", - "message": "Mohalla Ganj Sheeda - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_REVENUE_SUN176", - "message": "Mohalla Kango - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_REVENUE_SUN178", - "message": "Mohalla Singh kia - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_REVENUE_SUN18", - "message": "Back Side Naina Devi Mandir - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_REVENUE_SUN194", - "message": "NEAR GURUDWARA PEHALI PATSHAHI UDAM SINGH ROAD - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_REVENUE_SUN20", - "message": "Backside Brijbala Hospital - Area3", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_REVENUE_SUN23", - "message": "BACKSIDE OLD GRAIN MARKET - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_REVENUE_SUN25", - "message": "Bakhtaur Nagar - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_REVENUE_SUN31", - "message": "Bhai Mool Chand Sahib Colony - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_REVENUE_SUN35", - "message": "Bigharwal Chowk to Railway Station - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_REVENUE_SUN40", - "message": "Chandar Colony Biggarwal Road - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_REVENUE_SUN41", - "message": "Charjan Wala Mohalla - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_REVENUE_SUN45", - "message": "Cinema Road - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_REVENUE_SUN46", - "message": "Cinema Road to Ali Bazaar (Nothern Side) - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_REVENUE_SUN49", - "message": "College Road (Southern side) - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_REVENUE_SUN54", - "message": "Deedar Tailor to Mata Modi Park- West Side - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_REVENUE_SUN55", - "message": "Deep Rice Mill Road - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_REVENUE_SUN56", - "message": "Dental College - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_REVENUE_SUN62", - "message": "Ekta Colony (Southern Side) - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_REVENUE_SUN75", - "message": "Gaushala", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_REVENUE_SUN80", - "message": "Gugga Maadi Road (east side) - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYB_REVENUE_SUN84", - "message": "Gurudwara Niai Sahib Street 1 - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_ADMIN_SU166", - "message": "Mohalla Majoran", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_ADMIN_SUN02", - "message": "Aggarsain Chowk to Mal Godown - Both Sides", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_ADMIN_SUN04", - "message": "Ajit Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_ADMIN_SUN08", - "message": "ATAR SINGH COLONY", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_ADMIN_SUN105", - "message": "Jaura Khoo to Saraffa Bazaar (Southern Side)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_ADMIN_SUN109", - "message": "Kailash Parbat", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_ADMIN_SUN11", - "message": "Back Side 33 KVA Grid Patiala Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_ADMIN_SUN12", - "message": "Back Side 66 KVA Grid Patiala Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_ADMIN_SUN13", - "message": "Back Side Civil Courts Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_ADMIN_SUN132", - "message": "Mohalla Akalgarh Gurudwara", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_ADMIN_SUN134", - "message": "Mohalla Bhadra Kali Mandir", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_ADMIN_SUN136", - "message": "Mohalla Bhatta Wala", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_ADMIN_SUN137", - "message": "Mohalla Bhawdeyan Wala", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_ADMIN_SUN138", - "message": "Mohalla Bhojeka (both sides)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_ADMIN_SUN144", - "message": "Mohalla Kohliyan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_ADMIN_SUN150", - "message": "Mohalla Rajan Wala (both sides)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_ADMIN_SUN153", - "message": "Mohalla Singhkiyan (Nothern Side)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_ADMIN_SUN158", - "message": "Mohalla-Kashayian wala", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_ADMIN_SUN161", - "message": "Mohalla-Singhkiya wala", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_ADMIN_SUN167", - "message": "Mohalla Angaria wala", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_ADMIN_SUN169", - "message": "Mohalla Banda Patti", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_ADMIN_SUN170", - "message": "Mohalla Bhai Ka", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_ADMIN_SUN173", - "message": "Mohalla Ganj Sheeda", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_ADMIN_SUN176", - "message": "Mohalla Kango", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_ADMIN_SUN178", - "message": "Mohalla Singh kia", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_ADMIN_SUN18", - "message": "Back Side Naina Devi Mandir", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_ADMIN_SUN194", - "message": "NEAR GURUDWARA PEHALI PATSHAHI UDAM SINGH ROAD", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_ADMIN_SUN20", - "message": "Backside Brijbala Hospital", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_ADMIN_SUN23", - "message": "BACKSIDE OLD GRAIN MARKET", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_ADMIN_SUN25", - "message": "Bakhtaur Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_ADMIN_SUN31", - "message": "Bhai Mool Chand Sahib Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_ADMIN_SUN35", - "message": "Bigharwal Chowk to Railway Station", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_ADMIN_SUN40", - "message": "Chandar Colony Biggarwal Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_ADMIN_SUN41", - "message": "Charjan Wala Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_ADMIN_SUN45", - "message": "Cinema Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_ADMIN_SUN46", - "message": "Cinema Road to Ali Bazaar (Nothern Side)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_ADMIN_SUN49", - "message": "College Road (Southern side)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_ADMIN_SUN54", - "message": "Deedar Tailor to Mata Modi Park- West Side", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_ADMIN_SUN55", - "message": "Deep Rice Mill Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_ADMIN_SUN56", - "message": "Dental College", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_ADMIN_SUN62", - "message": "Ekta Colony (Southern Side)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_ADMIN_SUN75", - "message": "Gaushala", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_ADMIN_SUN80", - "message": "Gugga Maadi Road (east side)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_ADMIN_SUN84", - "message": "Gurudwara Niai Sahib Street 1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_REVENUE_SU166", - "message": "Mohalla Majoran - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_REVENUE_SUN02", - "message": "Aggarsain Chowk to Mal Godown - Both Sides - Area3", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_REVENUE_SUN04", - "message": "Ajit Nagar - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_REVENUE_SUN08", - "message": "ATAR SINGH COLONY - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_REVENUE_SUN105", - "message": "Jaura Khoo to Saraffa Bazaar (Southern Side) - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_REVENUE_SUN109", - "message": "Kailash Parbat - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_REVENUE_SUN11", - "message": "Back Side 33 KVA Grid Patiala Road - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_REVENUE_SUN12", - "message": "Back Side 66 KVA Grid Patiala Road - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_REVENUE_SUN13", - "message": "Back Side Civil Courts Colony - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_REVENUE_SUN132", - "message": "Mohalla Akalgarh Gurudwara - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_REVENUE_SUN134", - "message": "Mohalla Bhadra Kali Mandir - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_REVENUE_SUN136", - "message": "Mohalla Bhatta Wala - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_REVENUE_SUN137", - "message": "Mohalla Bhawdeyan Wala - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_REVENUE_SUN138", - "message": "Mohalla Bhojeka (both sides) - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_REVENUE_SUN144", - "message": "Mohalla Kohliyan - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_REVENUE_SUN150", - "message": "Mohalla Rajan Wala (both sides) - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_REVENUE_SUN153", - "message": "Mohalla Singhkiyan (Nothern Side) - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_REVENUE_SUN158", - "message": "Mohalla-Kashayian wala - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_REVENUE_SUN161", - "message": "Mohalla-Singhkiya wala - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_REVENUE_SUN167", - "message": "Mohalla Angaria wala - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_REVENUE_SUN169", - "message": "Mohalla Banda Patti - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_REVENUE_SUN170", - "message": "Mohalla Bhai Ka - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_REVENUE_SUN173", - "message": "Mohalla Ganj Sheeda - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_REVENUE_SUN176", - "message": "Mohalla Kango - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_REVENUE_SUN178", - "message": "Mohalla Singh kia - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_REVENUE_SUN18", - "message": "Back Side Naina Devi Mandir - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_REVENUE_SUN194", - "message": "NEAR GURUDWARA PEHALI PATSHAHI UDAM SINGH ROAD - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_REVENUE_SUN20", - "message": "Backside Brijbala Hospital - Area3", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_REVENUE_SUN23", - "message": "BACKSIDE OLD GRAIN MARKET - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_REVENUE_SUN25", - "message": "Bakhtaur Nagar - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_REVENUE_SUN31", - "message": "Bhai Mool Chand Sahib Colony - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_REVENUE_SUN35", - "message": "Bigharwal Chowk to Railway Station - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_REVENUE_SUN40", - "message": "Chandar Colony Biggarwal Road - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_REVENUE_SUN41", - "message": "Charjan Wala Mohalla - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_REVENUE_SUN45", - "message": "Cinema Road - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_REVENUE_SUN46", - "message": "Cinema Road to Ali Bazaar (Nothern Side) - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_REVENUE_SUN49", - "message": "College Road (Southern side) - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_REVENUE_SUN54", - "message": "Deedar Tailor to Mata Modi Park- West Side - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_REVENUE_SUN55", - "message": "Deep Rice Mill Road - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_REVENUE_SUN56", - "message": "Dental College - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_REVENUE_SUN62", - "message": "Ekta Colony (Southern Side) - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_REVENUE_SUN75", - "message": "Gaushala", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_REVENUE_SUN80", - "message": "Gugga Maadi Road (east side) - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYC_REVENUE_SUN84", - "message": "Gurudwara Niai Sahib Street 1 - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_ADMIN_SU166", - "message": "Mohalla Majoran", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_ADMIN_SUN02", - "message": "Aggarsain Chowk to Mal Godown - Both Sides", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_ADMIN_SUN04", - "message": "Ajit Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_ADMIN_SUN08", - "message": "ATAR SINGH COLONY", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_ADMIN_SUN105", - "message": "Jaura Khoo to Saraffa Bazaar (Southern Side)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_ADMIN_SUN109", - "message": "Kailash Parbat", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_ADMIN_SUN11", - "message": "Back Side 33 KVA Grid Patiala Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_ADMIN_SUN12", - "message": "Back Side 66 KVA Grid Patiala Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_ADMIN_SUN13", - "message": "Back Side Civil Courts Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_ADMIN_SUN132", - "message": "Mohalla Akalgarh Gurudwara", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_ADMIN_SUN134", - "message": "Mohalla Bhadra Kali Mandir", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_ADMIN_SUN136", - "message": "Mohalla Bhatta Wala", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_ADMIN_SUN137", - "message": "Mohalla Bhawdeyan Wala", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_ADMIN_SUN138", - "message": "Mohalla Bhojeka (both sides)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_ADMIN_SUN144", - "message": "Mohalla Kohliyan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_ADMIN_SUN150", - "message": "Mohalla Rajan Wala (both sides)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_ADMIN_SUN153", - "message": "Mohalla Singhkiyan (Nothern Side)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_ADMIN_SUN158", - "message": "Mohalla-Kashayian wala", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_ADMIN_SUN161", - "message": "Mohalla-Singhkiya wala", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_ADMIN_SUN167", - "message": "Mohalla Angaria wala", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_ADMIN_SUN169", - "message": "Mohalla Banda Patti", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_ADMIN_SUN170", - "message": "Mohalla Bhai Ka", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_ADMIN_SUN173", - "message": "Mohalla Ganj Sheeda", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_ADMIN_SUN176", - "message": "Mohalla Kango", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_ADMIN_SUN178", - "message": "Mohalla Singh kia", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_ADMIN_SUN18", - "message": "Back Side Naina Devi Mandir", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_ADMIN_SUN194", - "message": "NEAR GURUDWARA PEHALI PATSHAHI UDAM SINGH ROAD", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_ADMIN_SUN20", - "message": "Backside Brijbala Hospital", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_ADMIN_SUN23", - "message": "BACKSIDE OLD GRAIN MARKET", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_ADMIN_SUN25", - "message": "Bakhtaur Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_ADMIN_SUN31", - "message": "Bhai Mool Chand Sahib Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_ADMIN_SUN35", - "message": "Bigharwal Chowk to Railway Station", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_ADMIN_SUN40", - "message": "Chandar Colony Biggarwal Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_ADMIN_SUN41", - "message": "Charjan Wala Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_ADMIN_SUN45", - "message": "Cinema Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_ADMIN_SUN46", - "message": "Cinema Road to Ali Bazaar (Nothern Side)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_ADMIN_SUN49", - "message": "College Road (Southern side)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_ADMIN_SUN54", - "message": "Deedar Tailor to Mata Modi Park- West Side", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_ADMIN_SUN55", - "message": "Deep Rice Mill Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_ADMIN_SUN56", - "message": "Dental College", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_ADMIN_SUN62", - "message": "Ekta Colony (Southern Side)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_ADMIN_SUN75", - "message": "Gaushala", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_ADMIN_SUN80", - "message": "Gugga Maadi Road (east side)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_ADMIN_SUN84", - "message": "Gurudwara Niai Sahib Street 1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_REVENUE_SU166", - "message": "Mohalla Majoran - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_REVENUE_SUN02", - "message": "Aggarsain Chowk to Mal Godown - Both Sides - Area3", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_REVENUE_SUN04", - "message": "Ajit Nagar - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_REVENUE_SUN08", - "message": "ATAR SINGH COLONY - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_REVENUE_SUN105", - "message": "Jaura Khoo to Saraffa Bazaar (Southern Side) - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_REVENUE_SUN109", - "message": "Kailash Parbat - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_REVENUE_SUN11", - "message": "Back Side 33 KVA Grid Patiala Road - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_REVENUE_SUN12", - "message": "Back Side 66 KVA Grid Patiala Road - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_REVENUE_SUN13", - "message": "Back Side Civil Courts Colony - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_REVENUE_SUN132", - "message": "Mohalla Akalgarh Gurudwara - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_REVENUE_SUN134", - "message": "Mohalla Bhadra Kali Mandir - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_REVENUE_SUN136", - "message": "Mohalla Bhatta Wala - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_REVENUE_SUN137", - "message": "Mohalla Bhawdeyan Wala - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_REVENUE_SUN138", - "message": "Mohalla Bhojeka (both sides) - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_REVENUE_SUN144", - "message": "Mohalla Kohliyan - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_REVENUE_SUN150", - "message": "Mohalla Rajan Wala (both sides) - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_REVENUE_SUN153", - "message": "Mohalla Singhkiyan (Nothern Side) - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_REVENUE_SUN158", - "message": "Mohalla-Kashayian wala - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_REVENUE_SUN161", - "message": "Mohalla-Singhkiya wala - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_REVENUE_SUN167", - "message": "Mohalla Angaria wala - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_REVENUE_SUN169", - "message": "Mohalla Banda Patti - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_REVENUE_SUN170", - "message": "Mohalla Bhai Ka - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_REVENUE_SUN173", - "message": "Mohalla Ganj Sheeda - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_REVENUE_SUN176", - "message": "Mohalla Kango - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_REVENUE_SUN178", - "message": "Mohalla Singh kia - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_REVENUE_SUN18", - "message": "Back Side Naina Devi Mandir - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_REVENUE_SUN194", - "message": "NEAR GURUDWARA PEHALI PATSHAHI UDAM SINGH ROAD - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_REVENUE_SUN20", - "message": "Backside Brijbala Hospital - Area3", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_REVENUE_SUN23", - "message": "BACKSIDE OLD GRAIN MARKET - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_REVENUE_SUN25", - "message": "Bakhtaur Nagar - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_REVENUE_SUN31", - "message": "Bhai Mool Chand Sahib Colony - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_REVENUE_SUN35", - "message": "Bigharwal Chowk to Railway Station - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_REVENUE_SUN40", - "message": "Chandar Colony Biggarwal Road - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_REVENUE_SUN41", - "message": "Charjan Wala Mohalla - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_REVENUE_SUN45", - "message": "Cinema Road - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_REVENUE_SUN46", - "message": "Cinema Road to Ali Bazaar (Nothern Side) - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_REVENUE_SUN49", - "message": "College Road (Southern side) - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_REVENUE_SUN54", - "message": "Deedar Tailor to Mata Modi Park- West Side - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_REVENUE_SUN55", - "message": "Deep Rice Mill Road - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_REVENUE_SUN56", - "message": "Dental College - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_REVENUE_SUN62", - "message": "Ekta Colony (Southern Side) - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_REVENUE_SUN75", - "message": "Gaushala", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_REVENUE_SUN80", - "message": "Gugga Maadi Road (east side) - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYD_REVENUE_SUN84", - "message": "Gurudwara Niai Sahib Street 1 - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_ADMIN_SU166", - "message": "Mohalla Majoran", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_ADMIN_SUN02", - "message": "Aggarsain Chowk to Mal Godown - Both Sides", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_ADMIN_SUN04", - "message": "Ajit Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_ADMIN_SUN08", - "message": "ATAR SINGH COLONY", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_ADMIN_SUN105", - "message": "Jaura Khoo to Saraffa Bazaar (Southern Side)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_ADMIN_SUN109", - "message": "Kailash Parbat", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_ADMIN_SUN11", - "message": "Back Side 33 KVA Grid Patiala Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_ADMIN_SUN12", - "message": "Back Side 66 KVA Grid Patiala Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_ADMIN_SUN13", - "message": "Back Side Civil Courts Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_ADMIN_SUN132", - "message": "Mohalla Akalgarh Gurudwara", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_ADMIN_SUN134", - "message": "Mohalla Bhadra Kali Mandir", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_ADMIN_SUN136", - "message": "Mohalla Bhatta Wala", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_ADMIN_SUN137", - "message": "Mohalla Bhawdeyan Wala", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_ADMIN_SUN138", - "message": "Mohalla Bhojeka (both sides)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_ADMIN_SUN144", - "message": "Mohalla Kohliyan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_ADMIN_SUN150", - "message": "Mohalla Rajan Wala (both sides)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_ADMIN_SUN153", - "message": "Mohalla Singhkiyan (Nothern Side)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_ADMIN_SUN158", - "message": "Mohalla-Kashayian wala", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_ADMIN_SUN161", - "message": "Mohalla-Singhkiya wala", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_ADMIN_SUN167", - "message": "Mohalla Angaria wala", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_ADMIN_SUN169", - "message": "Mohalla Banda Patti", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_ADMIN_SUN170", - "message": "Mohalla Bhai Ka", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_ADMIN_SUN173", - "message": "Mohalla Ganj Sheeda", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_ADMIN_SUN176", - "message": "Mohalla Kango", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_ADMIN_SUN178", - "message": "Mohalla Singh kia", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_ADMIN_SUN18", - "message": "Back Side Naina Devi Mandir", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_ADMIN_SUN194", - "message": "NEAR GURUDWARA PEHALI PATSHAHI UDAM SINGH ROAD", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_ADMIN_SUN20", - "message": "Backside Brijbala Hospital", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_ADMIN_SUN23", - "message": "BACKSIDE OLD GRAIN MARKET", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_ADMIN_SUN25", - "message": "Bakhtaur Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_ADMIN_SUN31", - "message": "Bhai Mool Chand Sahib Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_ADMIN_SUN35", - "message": "Bigharwal Chowk to Railway Station", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_ADMIN_SUN40", - "message": "Chandar Colony Biggarwal Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_ADMIN_SUN41", - "message": "Charjan Wala Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_ADMIN_SUN45", - "message": "Cinema Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_ADMIN_SUN46", - "message": "Cinema Road to Ali Bazaar (Nothern Side)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_ADMIN_SUN49", - "message": "College Road (Southern side)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_ADMIN_SUN54", - "message": "Deedar Tailor to Mata Modi Park- West Side", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_ADMIN_SUN55", - "message": "Deep Rice Mill Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_ADMIN_SUN56", - "message": "Dental College", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_ADMIN_SUN62", - "message": "Ekta Colony (Southern Side)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_ADMIN_SUN75", - "message": "Gaushala", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_ADMIN_SUN80", - "message": "Gugga Maadi Road (east side)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_ADMIN_SUN84", - "message": "Gurudwara Niai Sahib Street 1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_REVENUE_SU166", - "message": "Mohalla Majoran - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_REVENUE_SUN02", - "message": "Aggarsain Chowk to Mal Godown - Both Sides - Area3", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_REVENUE_SUN04", - "message": "Ajit Nagar - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_REVENUE_SUN08", - "message": "ATAR SINGH COLONY - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_REVENUE_SUN105", - "message": "Jaura Khoo to Saraffa Bazaar (Southern Side) - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_REVENUE_SUN109", - "message": "Kailash Parbat - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_REVENUE_SUN11", - "message": "Back Side 33 KVA Grid Patiala Road - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_REVENUE_SUN12", - "message": "Back Side 66 KVA Grid Patiala Road - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_REVENUE_SUN13", - "message": "Back Side Civil Courts Colony - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_REVENUE_SUN132", - "message": "Mohalla Akalgarh Gurudwara - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_REVENUE_SUN134", - "message": "Mohalla Bhadra Kali Mandir - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_REVENUE_SUN136", - "message": "Mohalla Bhatta Wala - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_REVENUE_SUN137", - "message": "Mohalla Bhawdeyan Wala - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_REVENUE_SUN138", - "message": "Mohalla Bhojeka (both sides) - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_REVENUE_SUN144", - "message": "Mohalla Kohliyan - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_REVENUE_SUN150", - "message": "Mohalla Rajan Wala (both sides) - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_REVENUE_SUN153", - "message": "Mohalla Singhkiyan (Nothern Side) - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_REVENUE_SUN158", - "message": "Mohalla-Kashayian wala - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_REVENUE_SUN161", - "message": "Mohalla-Singhkiya wala - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_REVENUE_SUN167", - "message": "Mohalla Angaria wala - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_REVENUE_SUN169", - "message": "Mohalla Banda Patti - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_REVENUE_SUN170", - "message": "Mohalla Bhai Ka - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_REVENUE_SUN173", - "message": "Mohalla Ganj Sheeda - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_REVENUE_SUN176", - "message": "Mohalla Kango - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_REVENUE_SUN178", - "message": "Mohalla Singh kia - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_REVENUE_SUN18", - "message": "Back Side Naina Devi Mandir - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_REVENUE_SUN194", - "message": "NEAR GURUDWARA PEHALI PATSHAHI UDAM SINGH ROAD - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_REVENUE_SUN20", - "message": "Backside Brijbala Hospital - Area3", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_REVENUE_SUN23", - "message": "BACKSIDE OLD GRAIN MARKET - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_REVENUE_SUN25", - "message": "Bakhtaur Nagar - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_REVENUE_SUN31", - "message": "Bhai Mool Chand Sahib Colony - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_REVENUE_SUN35", - "message": "Bigharwal Chowk to Railway Station - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_REVENUE_SUN40", - "message": "Chandar Colony Biggarwal Road - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_REVENUE_SUN41", - "message": "Charjan Wala Mohalla - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_REVENUE_SUN45", - "message": "Cinema Road - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_REVENUE_SUN46", - "message": "Cinema Road to Ali Bazaar (Nothern Side) - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_REVENUE_SUN49", - "message": "College Road (Southern side) - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_REVENUE_SUN54", - "message": "Deedar Tailor to Mata Modi Park- West Side - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_REVENUE_SUN55", - "message": "Deep Rice Mill Road - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_REVENUE_SUN56", - "message": "Dental College - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_REVENUE_SUN62", - "message": "Ekta Colony (Southern Side) - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_REVENUE_SUN75", - "message": "Gaushala", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_REVENUE_SUN80", - "message": "Gugga Maadi Road (east side) - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_CITYE_REVENUE_SUN84", - "message": "Gurudwara Niai Sahib Street 1 - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_DHENKANAL_REVENUE_VIL1", - "message": "Kathagada, Shyamacharanpur, Ananda nagar,Borapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_DHENKANAL_REVENUE_VIL10", - "message": "Dakhinakali Road, Khamar sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_DHENKANAL_REVENUE_VIL11", - "message": "Laxmi Bazar, Malhar sahi, Pattanaik sahi, Tahasil Office, Ganesh Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_DHENKANAL_REVENUE_VIL12", - "message": "Jawahar Chowk, Gandhi Mandir Road, Muslim Basti, Meena Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_DHENKANAL_REVENUE_VIL13", - "message": "Meena Bazar, Muslim Basti, Kumbhar sahi, Kanchan Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_DHENKANAL_REVENUE_VIL14", - "message": "Ananda Bazar, Dhobasahi, Bajichowk,Housing Board", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_DHENKANAL_REVENUE_VIL15", - "message": "Muktadeipur Sasan, Pattanaik sahi, Meena Bazar, Kanchan Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_DHENKANAL_REVENUE_VIL16", - "message": "Town Planning, Tanti sahi, Barma Petrol Pump", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_DHENKANAL_REVENUE_VIL17", - "message": "Jaigopal sahi, Ragadi sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_DHENKANAL_REVENUE_VIL18", - "message": "Rameswarpur, Bhagabanpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_DHENKANAL_REVENUE_VIL19", - "message": "Similia", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_DHENKANAL_REVENUE_VIL2", - "message": "Kunjakanta B,DKL Auto. College,income tax office,revenue colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_DHENKANAL_REVENUE_VIL20", - "message": "Ragadi sahi, Jaigopalsahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_DHENKANAL_REVENUE_VIL21", - "message": "Station Bazar,Hata Road, Dolamandap sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_DHENKANAL_REVENUE_VIL22", - "message": "Station Bazar, Ratan bazar, Mandapasahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_DHENKANAL_REVENUE_VIL23", - "message": "Korian", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_DHENKANAL_REVENUE_VIL3", - "message": "Kunjakanta A, Chandiasahi, Sahara sahi, Pana sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_DHENKANAL_REVENUE_VIL4", - "message": "Gudianali, Bhagirathi Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_DHENKANAL_REVENUE_VIL5", - "message": "Amalapada, B.B. high school, D.I Office", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_DHENKANAL_REVENUE_VIL6", - "message": "Durga Bazar, Kaibalya Bazar, Balaram Temple", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_DHENKANAL_REVENUE_VIL7", - "message": "Deulasahi, Ramadas Chhaka", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_DHENKANAL_REVENUE_VIL8", - "message": "Mahisapat", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_DHENKANAL_REVENUE_VIL9", - "message": "Banamali Prasad, Kantanali, Putunia Saharsahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_DHENKANAL_VIL10_SL027", - "message": "Baunsa Patana", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_DHENKANAL_VIL10_SL028", - "message": "Bila Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_DHENKANAL_VIL10_SL029", - "message": "Sarjanga Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_DHENKANAL_VIL10_SL030", - "message": "Colony Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_DHENKANAL_VIL18_SL031", - "message": "Rameswarpur Mochi Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_DHENKANAL_VIL18_SL032", - "message": "Bhagabanpur Sabar Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_DHENKANAL_VIL18_SL033", - "message": "Bhagabanpur Juanga Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_DHENKANAL_VIL19_SL034", - "message": "Similia Masani Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_DHENKANAL_VIL19_SL035", - "message": "Similia Sabar Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_DHENKANAL_VIL1_SL001", - "message": "Kathagada juanga sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_DHENKANAL_VIL1_SL002", - "message": "Kathagada Parbatia Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_DHENKANAL_VIL1_SL003", - "message": "Kathagada Nua Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_DHENKANAL_VIL1_SL004", - "message": "Shyamacharanpur Sabar Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_DHENKANAL_VIL1_SL005", - "message": "Shyamacharanpur Harijan Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_DHENKANAL_VIL1_SL006", - "message": "Shyamacharanpur (Sai Ganesh Lane)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_DHENKANAL_VIL21_SL036", - "message": "Alasua Sabar Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_DHENKANAL_VIL21_SL037", - "message": "Dhankunia Harijan Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_DHENKANAL_VIL21_SL038", - "message": "Sanjaya Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_DHENKANAL_VIL22_SL039", - "message": "Hata Road Harijan Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_DHENKANAL_VIL22_SL040", - "message": "Hata Road Dama Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_DHENKANAL_VIL23_SL041", - "message": "Korian Puruna Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_DHENKANAL_VIL23_SL042", - "message": "Korian Sabar Sahi & Harijan Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_DHENKANAL_VIL23_SL043", - "message": "Korian Juanga Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_DHENKANAL_VIL2_SL007", - "message": "Refuge Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_DHENKANAL_VIL3_SL008", - "message": "Chandia sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_DHENKANAL_VIL5_SL009", - "message": "Chandamari Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_DHENKANAL_VIL6_SL010", - "message": "Kalara Gada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_DHENKANAL_VIL6_SL011", - "message": "Stadium Back side, Durga Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_DHENKANAL_VIL6_SL012", - "message": "Mali Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_DHENKANAL_VIL7_SL013", - "message": "Danda Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_DHENKANAL_VIL7_SL014", - "message": "Murdangia Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_DHENKANAL_VIL8_SL015", - "message": "Mahisapat Dalei Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_DHENKANAL_VIL8_SL016", - "message": "Bankuala Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_DHENKANAL_VIL8_SL017", - "message": "Gajamara Juanga Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_DHENKANAL_VIL8_SL018", - "message": "Rengali Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_DHENKANAL_VIL8_SL019", - "message": "Mahisapat Harijan Sahi-2 & Mahisapat Khaira Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_DHENKANAL_VIL9_SL020", - "message": "Kantanali Kandha Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_DHENKANAL_VIL9_SL021", - "message": "Banamali Prasad Juanga Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_DHENKANAL_VIL9_SL022", - "message": "Fatha Bandha Harijana Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_DHENKANAL_VIL9_SL023", - "message": "Kuntunia Juanga Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_DHENKANAL_VIL9_SL024", - "message": "Fatha Bandha Juanga Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_DHENKANAL_VIL9_SL025", - "message": "Balaram Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_DHENKANAL_VIL9_SL026", - "message": "Kuntunia Nua Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_DIRADAWA_ADMIN_DRD01", - "message": "Bahar Dar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_DIRADAWA_ADMIN_DRD02", - "message": "Gonder", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PG_PG.CITYA", - "message": "City A", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PHONE_VALIDATION", - "message": "Enter valid phone", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PHOTOGRAPH", - "message": "Photograph", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PHOTOGRAPH_VALID_SIZE", - "message": "Only png, jpg and jpeg files are allowed. Max File size allowed is 5 MB", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PINCODE_IS_REQUIRED", - "message": "Pincode is required", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PLEASE_FILL_MANDATORY_DETAILS", - "message": "Please fill mandatory details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PLUMBER", - "message": "Plumber", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PQM_MATERIAL_ARSENIC ", - "message": "Arsenic", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PQM_MATERIAL_FECAL_SLUDGE", - "message": "Fecal Sludge", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PQM_MATERIAL_POTABLE_WATER", - "message": "Potable Water", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PQM_PLANT_CTA001", - "message": "CTA-001", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PQM_PLANT_DEFAULT_ALL", - "message": "All Plants", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PQM_QUALITYCRITERIA_ARSENIC_EQ_70", - "message": "Arsenic", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PQM_STAGE_COAGULATION", - "message": "Coagulation", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PQM_STAGE_SCREENING", - "message": "Screening", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PQM_STAGE_SOLID_TREATMENT_VAR", - "message": "Solid treatment", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PQM_TESTSTANDARD_ARSENIC_EQ_70", - "message": "Arsenic MGPL (=70)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PQM_TESTSTANDARD_ARSENIC_LSTOREQ_70", - "message": "Arsenic MGPL (<=70)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PRIVACY_AUDIT_REPORT", - "message": "Privacy Audit Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROFILE_UPDATED", - "message": "Profile updated successfully", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROJECTS_DESCRIPTION", - "message": "Project Description", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROJECT_BANNER", - "message": "Only jpg, pdf, doc, docx, xls, xlsx files can be uploaded. File size should not exceed 5 MB.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROJECT_ESTIMATED_COST", - "message": "Estimated Cost", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROJECT_GEO_LOCATION", - "message": "Geolocation", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROJECT_LOR", - "message": "File Reference Number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROJECT_PATTERN_ERR_MSG_PROJECT_ESTIMATED_COST", - "message": "Please enter a valid Estimated Cost", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROJECT_PATTERN_ERR_MSG_PROJECT_LOR", - "message": "Please enter a valid Letter of Reference", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROJECT_PROJECT_DESC", - "message": "Project Description", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROJECT_TARGET_DEMOGRAPHY", - "message": "Target Demography", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTIES_REGISTERED_IN_LAST_12_MONTHS", - "message": "properties registered in last 12 months", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_ACRESTAURANT", - "message": "AC Restaurant", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_ANIMALCARE", - "message": "Stray Animal Care Center", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_BUILTUP", - "message": "Built Up", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_CENTRALGOVERNMENT", - "message": "Central Government", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_COLLEGES", - "message": "College", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_COMMERCIAL", - "message": "Commercial", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_COMMUNITYHALL", - "message": "Community Hall", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_CREMATION/BURIAL", - "message": "Cremation/ Burial Ground", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_CREMATION_BURIAL", - "message": "Cremation Burial", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_DISABLEDHOME", - "message": "Home for the disabled / destitute", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_EDUCATIONAL", - "message": "Educational", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_EDUCATIONALGOVAIDED", - "message": "Educational(govt. aided)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_ENTERTAINMENT", - "message": "Entertainment", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_ESTABLISHMENTSINMALLS", - "message": "Establishments (In Malls)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_ESTABLISHMENTSINMULTIPLEX", - "message": "Establishments (In Multiplex)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_EVENTSPACE", - "message": "Event Space", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_FOODJOINTS", - "message": "Food Joints", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_GOLFCLUB", - "message": "Golf Club", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_GOVAIDEDEDUCATIONAL", - "message": "Govt. Aided Educational Institute", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_GOVTHOSPITAL", - "message": "Govt. Hospital & Dispensary", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_GROCERY", - "message": "Grocery Store", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_HISTORICAL", - "message": "Historical Building", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_HOMESFORSPECIALCARE", - "message": "Others(care giving facilities)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_HOTELS", - "message": "Hotels", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_INDEPENDENTPROPERTY", - "message": "Independent Building", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_INDIVIDUAL", - "message": "Individual(s)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_INDUSTRIAL", - "message": "Industrial", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_INSTITUTIONAL", - "message": "Institutional", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_INSTITUTIONALGOVERNMENT", - "message": "Institutional - Government", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_INSTITUTIONALPRIVATE", - "message": "Institutional - Private", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_LIBRARIES", - "message": "Public Libraries", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_MALLS", - "message": "Malls", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_MANUFACTURINGFACILITY", - "message": "Manufacturing Facility", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_MARRIAGEPALACE", - "message": "Marriage Palace", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_MEDICALFACILITY", - "message": "Medical Facility", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_MIXED", - "message": "Mixed", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_MOVIETHEATRE", - "message": "Movie Theatre", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_MULTIPLEOWNERS", - "message": "Multiple Owners", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_MULTIPLEX", - "message": "Multiplex", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_NGO", - "message": "NGO", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_NONACRESTAURANT", - "message": "Non AC Restaurant", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL", - "message": "Non Residential", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.COMMERCIAL", - "message": "Commercial", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.COMMERCIAL.ENTERTAINMENT.MOVIETHEATRE", - "message": "Movie Theatre", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.COMMERCIAL.ENTERTAINMENT.MULTIPLEX", - "message": "Multiplex", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.COMMERCIAL.EVENTSPACE.MARRIAGEPALACE", - "message": "Marriage Palace", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.COMMERCIAL.FOODJOINTS", - "message": "Food Joints", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.COMMERCIAL.FOODJOINTS.ACRESTAURANT", - "message": "AC Restaurant", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.COMMERCIAL.FOODJOINTS.NONACRESTAURANT", - "message": "Non AC Restaurant", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.COMMERCIAL.HOTELS", - "message": "Hotels", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.COMMERCIAL.MEDICALFACILITY.PVTDISPENSARY", - "message": "Private Dispensary", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.COMMERCIAL.MEDICALFACILITY.PVTHOSPITAL", - "message": "Private Hospital", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.COMMERCIAL.OFFICESPACE", - "message": "Office Space", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.COMMERCIAL.OTHERCOMMERCIALSUBMINOR.OTHERCOMMERCIAL", - "message": "Other Commercial Usage", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.COMMERCIAL.RETAIL", - "message": "Retail", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.COMMERCIAL.RETAIL.ESTABLISHMENTINMALLS", - "message": "Establishment Malls", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.COMMERCIAL.RETAIL.GROCERY", - "message": "Grocery Store", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.COMMERCIAL.RETAIL.MALLS", - "message": "Malls", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.COMMERCIAL.RETAIL.PHARMACY", - "message": "Pharmcy", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.COMMERCIAL.RETAIL.SHOWROOM", - "message": "Showroom", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.COMMERCIAL.STATUTORY.STATUTORYORGANISATION", - "message": "Statutory Organisation", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.INDUSTRIAL", - "message": "Industrial", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.INDUSTRIAL.MANUFACTURINGFACILITY", - "message": "Manufacturing Facility", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.INDUSTRIAL.OTHERCOMMERCIALSUBMINOR", - "message": "Other Commercial Usage", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.INDUSTRIAL.OTHERINDUSTRIALSUBMINOR.OTHERINDUSTRIAL", - "message": "Industrial Other Commercial Usage", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.INDUSTRIAL.WAREHOUSE", - "message": "Warehouse", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.INSTITUTIONAL", - "message": "Institutional", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.INSTITUTIONAL.EDUCATIONAL", - "message": "Educational", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.INSTITUTIONAL.EDUCATIONAL.COLLEGES", - "message": "Colleges", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.INSTITUTIONAL.EDUCATIONAL.OTHEREDUCATIONAL", - "message": "Other Private Educational Institute", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.INSTITUTIONAL.EDUCATIONAL.POLYTECHNICS", - "message": "Polytechnic", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.INSTITUTIONAL.EDUCATIONAL.SCHOOL", - "message": "School", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.INSTITUTIONAL.EDUCATIONAL.TRAININGINSTITUTES", - "message": "Training Institute", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.INSTITUTIONAL.HISTORICAL.HISTORICAL", - "message": "Historical Building", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.INSTITUTIONAL.HOMESFORSPECIALCARE.ANIMALCARE", - "message": "Stray Animal Care Center", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.INSTITUTIONAL.HOMESFORSPECIALCARE.DISABLEDHOME", - "message": "Home for the disabled / destitute", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.INSTITUTIONAL.HOMESFORSPECIALCARE.OLDAGEHOMES", - "message": "Old Age Homes", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.INSTITUTIONAL.HOMESFORSPECIALCARE.ORPHANAGE", - "message": "Orphanage", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.INSTITUTIONAL.OTHERINSTITUTIONALSUBMINOR", - "message": "Other Instituation", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.INSTITUTIONAL.PUBLICFACILITY.COMMUNITYHALL", - "message": "Community Hall", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.INSTITUTIONAL.PUBLICFACILITY.GOVTHOSPITAL", - "message": "Govt. Hospital & Dispensary", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.INSTITUTIONAL.PUBLICFACILITY.LIBRARIES", - "message": "Public Libraries", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.INSTITUTIONAL.RECREATIONAL.GOLFCLUB", - "message": "Golf Club", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.INSTITUTIONAL.RECREATIONAL.SOCIALCLUB", - "message": "Social Club", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.INSTITUTIONAL.RECREATIONAL.SPORTSSTADIUM", - "message": "Sports Stadium", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.INSTITUTIONAL.RELIGIOUSINSTITUITION.RELIGIOUS", - "message": "Religious", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.INSTITUTIONAL.RELIGIOUSINSTITUTION", - "message": "Religious Institution", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_NONRESIDENTIAL.OTHERS.PUBLICSPACES.CREMATION/BURIAL", - "message": "Cremation/ Burial Ground", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_OFFICESPACE", - "message": "Office Space", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_OLDAGEHOMES", - "message": "Old Age Homes", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_ORPHANAGE", - "message": "Orphanage", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_OTHER", - "message": "Others", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_OTHERCOMMERCIAL", - "message": "Other Commercial Usage", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_OTHERCOMMERCIALSUBMINOR", - "message": "Other Commercial Usage", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_OTHEREDUCATIONAL", - "message": "Other Private Educational Institute", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_OTHERGOVERNMENTINSTITUITION", - "message": "Others - Government Instituition", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_OTHERINDUSTRIAL", - "message": "Other Industrial Usage", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_OTHERINDUSTRIALSUBMINOR", - "message": "Other Industrial Usage", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_OTHERINSTITUTIONAL", - "message": "Others", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_OTHERINSTITUTIONALSUBMINOR", - "message": "Other Institutional Usage", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_OTHERS", - "message": "Others", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_OTHERSPRIVATEINSTITUITION", - "message": "Others - Private Instituition", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_PHARMACY", - "message": "Pharmacy", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_POLYTECHNICS", - "message": "Polytechnic", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_PRIVATEBOARD", - "message": "Private Board", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_PRIVATECOMPANY", - "message": "Private Company", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_PRIVATETRUST", - "message": "Private Trust/Society", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_PUBLICFACILITY", - "message": "Public Facility", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_PUBLICSPACES", - "message": "Public Spaces", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_PVTDISPENSARY", - "message": "Private Dispensary", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_PVTHOSPITAL", - "message": "Private Hospital", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_RECREATIONAL", - "message": "Recreational Space", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_RELIGIOUS", - "message": "Religious", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_RELIGIOUSINSTITUTION", - "message": "Religious Instituition", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_RESIDENTIAL", - "message": "Residential", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_RETAIL", - "message": "Retail", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_SCHOOL", - "message": "School", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_SHAREDPROPERTY", - "message": "Flat/Part of the building", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_SHOWROOM", - "message": "Shop/Showroom", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_SINGLEOWNER", - "message": "Single Owner", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_SOCIALCLUB", - "message": "Social Club", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_SPORTSSTADIUM", - "message": "Sports Stadium", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_STATEGOVERNMENT", - "message": "State Government", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_STATUTORY", - "message": "Statutory", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_STATUTORYORGANISATION", - "message": "Statutory Organisation", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_TRAININGINSTITUTES", - "message": "Training Institute", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_ULBGOVERNMENT", - "message": "ULB Government", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_VACANT", - "message": "Vacant Land", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_BILLING_SLAB_WAREHOUSE", - "message": "Godown / Warehouse", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_OWNERTYPE_BPL", - "message": "BPL", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_OWNERTYPE_DEFENSE", - "message": "Defense Personnel", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_OWNERTYPE_FREEDOMFIGHTER", - "message": "Freedom Fighter", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_OWNERTYPE_GENERAL", - "message": "General ID", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_OWNERTYPE_HANDICAPPED", - "message": "Handicapped/ Disabled", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_OWNERTYPE_NONE", - "message": "Not Applicable", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_OWNERTYPE_WIDOW", - "message": "Widow", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTY_ADDRESS", - "message": "Property Address", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTY_BIFURCATON", - "message": "Property Bifurcation", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTY_BIFURCATON_VIDEO_DESC", - "message": "Property Bifurcation Video description", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTY_DETAILS_HEADER", - "message": "Property Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTY_ID", - "message": "Property ID", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTY_ID:", - "message": "Property ID", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PROPERTY_TAX", - "message": "Property Tax", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT", - "message": "Property Tax", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT.LEGACY_ENTRY", - "message": "Legacy Entry", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PTALTNO_HEADER", - "message": "Update Alternate Mobile No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PTALT_CONTINUE", - "message": "CONTINUE", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PTCOLLECTIONREPORT", - "message": "Collection Register", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PTM_COMMON_TABLE_COL_PT_ID", - "message": "Property Tax Unique Id", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PTM_OLD_LABEL_NAME", - "message": "Old Value", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PTRECEIPTREGISTER", - "message": "Receipt Register", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PTUPNO_CURR_NO", - "message": "Current Mobile No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PTUPNO_HEADER", - "message": "Update Mobile No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PTUPNO_INVALIDNO_DESC", - "message": "Mobile number available with owner(s) detail is incorrect. Please update the correct mobile number to receive future notifications ", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PTUPNO_INVALIDNO_HEADER", - "message": "Invalid Mobile No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PTUPNO_INVALIDNO_SKIP", - "message": "SKIP & CONTINUE", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PTUPNO_INVALIDNO_UPDATE", - "message": "UPDATE MOBILE NO", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PTUPNO_NEW_NO", - "message": "New Mobile No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PTUPNO_OWNER_NAME", - "message": "Owner Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PTUPNO_SENDOTP", - "message": "SEND OTP", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PTUPNO_VERUPD_NO", - "message": "VERIFY & UPDATE", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PTUPNO_VER_NO", - "message": "Update Number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_ACKNOWLEDGEMENT", - "message": "PT Acknowledgement Form", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_ACKNOWLEDGEMENT_ID", - "message": "Application No:", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_ACK_LOCALIZATION_ASSESSMENT_INFORMATION", - "message": "ASSESSMENT INFORMATION", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_ACK_LOCALIZATION_ASSESSMENT_NO", - "message": "Assessment No:", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_ACK_LOCALIZATION_ASSESSMENT_YEAR", - "message": "Assessment Year:", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_ACK_LOCALIZATION_AUTHORISED_PERSON", - "message": "Authorised Person", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_ACK_LOCALIZATION_BUILDING_COLONY_NAME", - "message": "Building/Colony Name.:", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_ACK_LOCALIZATION_BUILTAREA_TOTAL_RENT", - "message": "Built Area/Total Annual Rent(sq yards)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_ACK_LOCALIZATION_BUILT_AREA_DETAILS", - "message": "BUILT-UP AREA DETAILS", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_ACK_LOCALIZATION_COMMISSIONER_EO", - "message": "Commissioner/EO", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_ACK_LOCALIZATION_CONTACT_US", - "message": "Contact Us:", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_ACK_LOCALIZATION_DATE", - "message": "Date:", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_ACK_LOCALIZATION_EXISTING_PROPERTY_ID", - "message": "Existing Property ID:", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_ACK_LOCALIZATION_FATHERS_NAME", - "message": "Father's Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_ACK_LOCALIZATION_FLOOR", - "message": "Floor", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_ACK_LOCALIZATION_HOUSE_DOOR_NO", - "message": "House/Door No.:", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_ACK_LOCALIZATION_HUSBAND_NAME", - "message": "Husband's Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_ACK_LOCALIZATION_INSTITUTION_NAME", - "message": "Institution Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_ACK_LOCALIZATION_LOCALITY_MOHALLA", - "message": "Locality:", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_ACK_LOCALIZATION_NAME", - "message": "Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_ACK_LOCALIZATION_OCCUPANCY", - "message": "Occupancy", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_ACK_LOCALIZATION_OWNER", - "message": "Owner", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_ACK_LOCALIZATION_OWNERSHIP_INFORMATION", - "message": "OWNERSHIP INFORMATION", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_ACK_LOCALIZATION_PLOTSIZE_SQ_YARDS", - "message": "Plot Size(sq yards)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_ACK_LOCALIZATION_PROPERTY_ADDRESS", - "message": "PROPERTY ADDRESS", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_ACK_LOCALIZATION_PROPERTY_TAX_UNIQUE_ID", - "message": "Unique Property ID:", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_ACK_LOCALIZATION_PROPERTY_TYPE", - "message": "Property Type:", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_ACK_LOCALIZATION_STREET_NAME", - "message": "Street Name:", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_ACK_LOCALIZATION_SUB_USAGE_TYPE", - "message": "Sub Usage Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_ACK_LOCALIZATION_USAGE_TYPE", - "message": "Usage Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_ACK_LOCALIZATION_WEBSITE", - "message": "Website:", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_ACK_PROPERTY_TAX_ASSESS_ACKNOWLEDGEMENT", - "message": "Property Tax Assess Acknowledgement", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_ACTIVE", - "message": "Active", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_ADD_PROPERTY_TO_APP", - "message": "Add Property to Application", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_ALT_CARRY_DOCS", - "message": "Please carry the below documents:", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_ALT_CONTACT_ULB", - "message": "Contact your municipality/ municipal corporation office to get it corrected", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_ALT_DIDNT_RECEIVE_OTP", - "message": "Did not receive OTP, wrong mobile number?", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_APPLICATION_NO", - "message": "Application No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_ASSEMBLY_DET", - "message": "Property Assembly Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_ASSESMENT_INFO_USAGE_TYPE", - "message": "Usage Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_BUILDING_COLONY_NAME", - "message": "Building/Colony Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_BUILT_UP_AREA", - "message": "Built-up area (sq ft)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_BUILT_UP_AREA_HEADER", - "message": "Built-up Area (In Sq.Ft.)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_CANCER_CESS", - "message": "Cancer Cess", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_CHANGE_PROPERTY", - "message": "Change Property", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_COMMONS_SELECT_PLACEHOLDER", - "message": "Select", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_COMMON_ADD_APPLICANT_LABEL", - "message": "Add Owner", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_COMMON_ADD_REBATE_PENALTY", - "message": "Add Rebate and Penalty", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_COMMON_BUTTON_NXT_STEP", - "message": "NEXT STEP", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_COMMON_BUTTON_PREV_STEP", - "message": "PREVIOUS STEP", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_COMMON_CLICK_HERE_TO_SEARCH_THE_PROPERTY", - "message": "Click here to Search Property", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_COMMON_COL_ADDRESS", - "message": "Address", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_COMMON_COL_EXISTING_PROP_ID", - "message": "Existing Property ID", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_COMMON_COL_REMARK", - "message": "Remarks", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_COMMON_DOCS", - "message": "Documents", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_COMMON_GENDER_FEMALE", - "message": "Female", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_COMMON_GENDER_MALE", - "message": "Male", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_COMMON_GENDER_TRANSGENDER", - "message": "Transgender", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_COMMON_PAYEE_NAME", - "message": "Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_COMMON_REGISTER_NEW_PROPERTY", - "message": "Create a New Property", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_COMMON_SAME_AS_PROPERTY_ADDRESS", - "message": "Same as Property Address", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_COMMON_TABLE_COL_ACTION_LABEL", - "message": "Action", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_COMMON_TABLE_COL_APP_NO", - "message": "Application No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_COMMON_TABLE_COL_APP_TYPE", - "message": "Application Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_COMMON_TABLE_COL_OWNER_NAME", - "message": "Owner Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_COMMON_TABLE_COL_PT_ID", - "message": "Unique Property Id", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_COMMON_TABLE_COL_STATUS_LABEL", - "message": "Status", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_COMMON_TABLE_COL_UNIQ_PT_ID", - "message": "Unique Property Id", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_COMPLETE_PAYMENT", - "message": "Complete Payment", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_CORRESPONDANCE_ADDRESS", - "message": "Correspondence Address", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_CREATE_PROPERTY", - "message": "Create Property", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_DATE_HINT_TEXT", - "message": "dd/mm/yy", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_DECIMAL_CEILING_CREDIT", - "message": "Round off", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_DETAILS", - "message": "Property Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_DO_YOU_KNOW_YOUR_PROPERTY", - "message": "Do you know your property", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_DUES_ARE_PENDING", - "message": "Amount Due", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_ENTER_VALID_PROPERTY_ID", - "message": "Enter Valid Property ID", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_FAQ_ANS_ONE", - "message": "A building or a open plot under the usage of residential or non-residential purposes are considered as property. ", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_FAQ_ANS_THREE", - "message": "We should pay the property tax timely to enable the ULB to keep the city neat and clean, perform maintenance work and other functions.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_FAQ_ANS_TWO", - "message": "ULBs perform certain obligatory functions in its boundary limit and need money to carry out those functions hence the body levy the tax on buildings and open plots.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_FAQ_QUES_ONE", - "message": "What is a property?", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_FAQ_QUES_THREE", - "message": "Why we as property owners should pay it?", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_FAQ_QUES_TWO", - "message": "Why ULBs levy property taxes?", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_FAQ_S", - "message": "FAQs", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_FEEDBACK_SUBMITTED_SUCCESSFULLY", - "message": "Your rating has been recorded successfully!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_FINAL_DECLARATION_MESSAGE", - "message": "I hereby declare and affirm that the above-furnished information is true and correct and nothing has been concealed therefrom. I am also aware of the fact that in case this information is found false/incorrect, the authorities are at liberty to initiate recovery of amount/interest/penalty/fine as provided in Punjab Municipal Act 1911 or Punjab Municipal Corporation Act 1976.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_FIRE_CESS", - "message": "Fire Cess", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_FLOOR_AREA_INFO_MSG", - "message": "1 Sq. Yd. = 9 Sq. ft.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_FORM3_ALT_MOBILE_NO_PLACEHOLDER", - "message": "Enter Alternate Mobile Number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_FORM3_FATHER", - "message": "Father", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_FORM3_FEMALE", - "message": "Female", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_FORM3_GENDER", - "message": "Gender", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_FORM3_GUARDIAN_NAME", - "message": "Guardian ", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_FORM3_HUSBAND", - "message": "Husband", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_FORM3_MALE", - "message": "Male", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_FORM3_MOBILE_NO_PLACEHOLDER", - "message": "Enter Mobile No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_FORM3_MOBILE_NUMBER", - "message": "Mobile Number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_FORM3_OWNERSHIP_TYPE", - "message": "Type of Ownership", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_FORM3_OWNERSHIP_TYPE_PLACEHOLDER", - "message": "Select Ownership Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_FORM3_RELATIONSHIP", - "message": "Relationship", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_FORM4_TOTAL", - "message": "Total", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_GUARDIAN_NAME", - "message": "Guardian Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_HISTORY_RECEIPT_NO", - "message": "Receipt No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_HOME_MYPROPERTIES", - "message": "My Properties", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_HOME_PROPERTY_RESULTS_TABLE_HEADING", - "message": "Search Results for Properties", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_HOME_SEARCH_RESULTS_BUTTON_SEARCH", - "message": "Search", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_HOUSE_DOOR_NO", - "message": "House/Door No.*", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_HOUSE_DOOR_NO_ERROR_MESSAGE", - "message": "Invalid Door Number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_HOUSE_DOOR_NUMBER_ERROR_MESSAGE", - "message": "Invalid Door Number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_HOW_IT_WORK", - "message": "How it works?", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_HOW_IT_WORKS", - "message": "How it works", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_INVALID_MOBILE_NO", - "message": "Invalid Mobile Number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_KNOW_PTID", - "message": "I know my Property ID", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_KNOW_PT_DETAIL", - "message": "I want to search using property details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_KNOW_PT_ID", - "message": "I know my property ID", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_LANDMARK_NAME", - "message": "Landmark", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_LOCATION_DETAILS", - "message": "Property Location Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_MUTATION_FATHER", - "message": "C/O", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_MUTATION_HUSBAND", - "message": "W/O", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_MUTATION_STATUS", - "message": "Status", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_MUT_BILL_EXPIRED", - "message": "Bill Expired", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_MUT_BILL_PAID", - "message": "PAID", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_MY_APPLICATION", - "message": "My Applications", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_MY_PAYMENTS", - "message": "My Payments", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_MY_PAYMENTS_HEADER", - "message": "My Payments", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_MY_PROPERTIES", - "message": "My Properties", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_MY_PROPERTY", - "message": "My Properties", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_NAME_ERROR_MESSAGE", - "message": "Enter valid name (max length 64)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_NO_APPLICATION_FOUND_MSG", - "message": "No Application Found", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_OK", - "message": "OK", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_OWNERSHIP_DETAILS", - "message": "Property Ownership Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_OWNERSHIP_INDIVIDUAL.MULTIPLEOWNERS", - "message": "Multiple Owners", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_OWNERSHIP_INDIVIDUAL.SINGLEOWNER", - "message": "Single Owner", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_OWNERS_NAME", - "message": "Owner's Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_OWNER_EXEMPTION", - "message": "Special Category Exemption", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_OWNER_MOB_NO_LABEL", - "message": "Owner's mobile number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_OWNER_NAME", - "message": "Owner Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_OWNER_REGISTRATIONPROOF.COURTDECREE", - "message": "Court Decree", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_OWNER_REGISTRATIONPROOF.FAMILYSETTLEMENT", - "message": "Family Settlement", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_OWNER_REGISTRATIONPROOF.SUCCESSIONORDEATHCERTIFICATE", - "message": "Succession or Death Certificate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_OWNER_USAGEPROOF.ELECTRICITYBILL", - "message": "Electricity Bill", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_PAYMENT_METHOD_CARD", - "message": "Credit /Debit Card", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_PDF_SUBHEADER", - "message": "Property Tax Assessment Confirmation", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_PMT_RCPT_NO", - "message": "Receipt No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_PROPERTY_ADDRESS_HOUSE_NO", - "message": "Door/House No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_PROPERTY_ADDRESS_STREET_NAME", - "message": "Street Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_PROPERTY_DETAILS", - "message": "Property Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_PROPERTY_ID", - "message": "Unique Property ID", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_PROPERTY_MUTATION", - "message": "Transfer Property Ownership/Mutation", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_PROPERTY_PAYMENT_CITIZEN_NOTIFICATION", - "message": "A Notification regarding the payment has been sent to the applicant's mobile number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_PROPERTY_TYPE_INFO_MSG", - "message": "Select independent building if you're assessing for the complete constructed area on the property.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_PROP_CITY", - "message": "City*", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_PROP_LOCALITY", - "message": "Locality:*", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_PROP_TYPE", - "message": "Property Type*", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_PROVIDE_ONE_MORE_PARAM", - "message": "Provide atleast one search parameter", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_RATE_CARD_TEXT_CREATE", - "message": "Rate your experience with us for your recent transaction to create property with application reference {{acknowldgementNumber}} for the property ID {{propertyId}}.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_RATE_CARD_TEXT_MUTATE", - "message": "Rate your experience with us for your recent transaction on mutation for property ID {{propertyId}} and application reference {{acknowldgementNumber}}.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_RATE_CARD_TEXT_PAY", - "message": "Rate your experience with us for your recent transaction to pay property tax for consumer number {{propertyId}}.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_RATE_CARD_TEXT_UPDATE", - "message": "Rate your experience with us for your recent transaction on update for property ID {{propertyId}} and application reference {{acknowldgementNumber}}.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_RATE_HELP_TEXT", - "message": "Help Us Help You", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_RATE_HELP_TEXT_CREATE", - "message": "Help Us Help You", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_RATE_HELP_TEXT_MUTATE", - "message": "Help Us Help You", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_RATE_HELP_TEXT_PAY", - "message": "Help Us Help You", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_RATE_HELP_TEXT_UPDATE", - "message": "Help Us Help You", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_RATE_TEXT", - "message": "Rate your experience with us for your recent transaction.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_RECEIPT_BILLING_PERIOD", - "message": "Billing Period", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_RECEIPT_COMMISSIONER_EO", - "message": "Commissioner/EO", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_RECEIPT_COMPUTER_GENERATED_MESSAGE", - "message": "This is Computer generated receipt, Signature is not required", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_RECEIPT_CONSUMER_ID", - "message": "Consumer ID", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_RECEIPT_DISCLAMER", - "message": "Disclaimer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_RECEIPT_G8_RECEIPT_DATE", - "message": "G8 Receipt Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_RECEIPT_G8_RECEIPT_NO", - "message": "G8 Receipt No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_RECEIPT_GENERATED_BY", - "message": "Generated by", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_RECEIPT_PAID_AMOUNT", - "message": "Paid Amount", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_RECEIPT_PAYER_CONTACT", - "message": "Payer Contact", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_RECEIPT_PAYER_NAME", - "message": "Payer Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_RECEIPT_PAYMENT_DATE", - "message": "Payment Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_RECEIPT_PAYMENT_MODE", - "message": "Payment Mode", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_RECEIPT_PENDING_AMOUNT", - "message": "Pending Amount", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_RECEIPT_RECEIPT_NO", - "message": "Receipt No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_RECEIPT_SERVICE_TYPE", - "message": "Service Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_RECEIPT_TRANSACTION_ID", - "message": "Transaction ID", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_RELATION_FATHER", - "message": "Father", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_RELATION_HUSBAND", - "message": "Husband", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_RENTAL_AREA_INFO_MSG", - "message": "Annual rent = 12 * Monthly rent. In case property was not rented for sometime in the assessment year then please contact your ULB to assess your property.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_ROUNDOFF", - "message": "Round Off", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_SEARCH", - "message": "Search", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_SEARCH_AND_PAY", - "message": "Search and Pay", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_SEARCH_BUTTON", - "message": "SEARCH", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_SEARCH_BY_SEARCHDETAIL", - "message": "By Property Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_SEARCH_BY_SEARCHID", - "message": "By Property ID", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_SEARCH_DOOR_NO", - "message": "I want to search using Door Number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_SEARCH_PROPERTY", - "message": "Search Property", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_SEARCH_SELECT_AT_LEAST_ONE_FIELD_WITH_CITY_AND_LOCALITY", - "message": "Select at least one field with city and locality", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_SEC_LINK_NO_BTN", - "message": "UPDATE ALTERNATE MOBILE NO.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_SEC_LINK_NO_TEXT", - "message": "Update your Alternate Mobile Number. This number will be used to notify you about property tax dues and important dates.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_SELECT_CITY", - "message": "City", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_SENDBACK_TOCITIZEN_CHECKLIST_MESSAGE_HEAD", - "message": " Application is sent back to initiator successfully", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_SKIP_N_CONTINUE", - "message": "Skip & Continue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_SPECIAL_APPLICANT_CATEGORY", - "message": "Special Applicant Category*", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_SUBMIT", - "message": "Submit", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_SUB_USAGE_TYPE_INFO_MSG", - "message": "Sub-Usage of the property is dependent on the usage type selected in the previous screen. Choose 'other' if your usage is not listed.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_TAX", - "message": "Property Tax", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_TIME_INTEREST", - "message": "Interest", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_TIME_PENALTY", - "message": "Penalty", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_TIME_REBATE", - "message": "Rebate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_TOTALDUES_PAY", - "message": "PAY", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_TOTALDUES_TOOLTIP", - "message": "Amount displayed here might be different than the actual pending amount", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_TOTALDUES_VIEW", - "message": "VIEW", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_TOTAL_DUES", - "message": "Total Dues", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_TOT_CONSTRUCTION_AREA", - "message": "Total Construction Area*", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_TOT_CONSTRUCTION_AREA_ERROR_MESSAGE", - "message": "Wrong construction area / construction area cannot be greater than floor area", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_TOT_LAND_AREA", - "message": "Total Land Area*", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_TRANSFER_DOC_CAPTION ", - "message": "Document Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_TRANSFER_DOC_HEADER ", - "message": "Required Documents", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_UNIT_USAGE_EXEMPTION", - "message": "Usage Exemption", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_UPDATE_MOBILE_NO", - "message": "Update Mobile No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_UPDATE_NEWNO", - "message": "Update New Mobile No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PT_VIEW_MORE_DETAILS", - "message": "View More Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PUBLICHEALTH", - "message": "Public Health", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "PURCHASE_BILL_FILE_COMPONENT_BANNER", - "message": "Only pdf files can be uploaded. File size should not exceed 5 MB.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "Phagwara", - "message": "Phagwara", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "Public Message Notice", - "message": "EVENTS_PUBLIC_MESSAGE_NOTICE_HEADER", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "RC_CANCEL", - "message": "Cancel", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "RC_CANCELLED", - "message": "Cancelled", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "RC_DEPOSITED", - "message": "Deposited", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "RC_NA", - "message": "NA", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "RC_NEW", - "message": "New", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "RE-SUBMITTED", - "message": "Re-Submitted", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "RECEIPT", - "message": "Payment Receipt", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "RECEIPT_KEY", - "message": "Receipt Key", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "RECEIPT_NO_HEADER", - "message": "Receipt No : ", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "RECEIPT_WORKFLOW_ACTION_NOT_APPLICABLE", - "message": "Can only cancel / dishonour latest receipt for a consumer code. Dishonour of receipt possible only after deposited!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REFERENCE_NO", - "message": "Application No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REGISTERED_WITH_DEPT", - "message": "Registered by department", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REGISTER_INDIVIDUAL", - "message": "Register Individual", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REGISTER_WAGE_SEEKER", - "message": "Register Wage Seeker", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REJECTED", - "message": "Rejected", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "RELATIONSHIP_IS_REQUIRED", - "message": "Relationship is required", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REMISSION_FOR_PROPERTY_TAX", - "message": "Remission For Property Tax", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REMITTED", - "message": "Remitted", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REPORTS_FSM_PARAM_APPLICATIONSTATUS", - "message": "Application Status", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REPORTS_FSM_PARAM_APPLICATIONSTATUS_PLACE", - "message": "Enter Application Status", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REPORTS_FSM_PARAM_COLLECTIONOPERATOR", - "message": "Collection operator", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REPORTS_FSM_PARAM_DSONAME", - "message": "DSO Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REPORTS_FSM_PARAM_DSO_NAME", - "message": "DSO Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REPORTS_FSM_PARAM_FROMDATE", - "message": "From Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REPORTS_FSM_PARAM_FSTPNAME", - "message": "FSTP Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REPORTS_FSM_PARAM_INSTRUMENTTYPE", - "message": "Instrument type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REPORTS_FSM_PARAM_LOCALITY", - "message": "Locality", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REPORTS_FSM_PARAM_STATUS", - "message": "Status", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REPORTS_FSM_PARAM_TENANT", - "message": "ULB Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REPORTS_FSM_PARAM_TODATE", - "message": "To Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REPORTS_FSM_PARAM_ULB", - "message": "ULB", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REPORTS_FSM_PARAM_VEHICLECAPACITY", - "message": "Vehicle Capacity", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REPORTS_FSM_PARAM_VEHICLECAPACITY_PLACE", - "message": "Enter Vehicle Capacity", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REPORTS_FSM_PARAM_VEHICLENUMBER", - "message": "Vehicle number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REPORTS_FSM_PARAM_VEHICLENUMBER_PLACE", - "message": "Enter Vehicle Number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REPORTS_OBPS_PARAM_COLLECTIONOPERATOR", - "message": "Collection Operator", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REPORTS_OBPS_PARAM_FROMDATE", - "message": "Application created from date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REPORTS_OBPS_PARAM_INSTRUMENTSTATUS", - "message": "Status", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REPORTS_OBPS_PARAM_INSTRUMENTTYPE", - "message": "Instrument Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REPORTS_OBPS_PARAM_TODATE", - "message": "Application created to date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REPORTS_OBPS_PARAM_ULB", - "message": "Ulb", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REPORTS_SEARCHFORM_MODIFY_DATE_HEADER", - "message": "Modify report by date range", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REPORTS_SEARCH_APPLY_LABEL", - "message": "Search", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REPORTS_SEARCH_RESET_LABEL", - "message": "Reset", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REPORT_FSM_RESULT_AMOUNT", - "message": "Amount (Rs)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REPORT_FSM_RESULT_AMOUNT_PAID", - "message": "Amount Collected (Rs)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REPORT_FSM_RESULT_APPLICANTNAME", - "message": "Applicant name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REPORT_FSM_RESULT_APPLICATIONDATE", - "message": "Application Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REPORT_FSM_RESULT_APPLICATIONNO", - "message": "FSM application number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REPORT_FSM_RESULT_APPLICATION_NO", - "message": "Application Number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REPORT_FSM_RESULT_ASSIGNED_TO_DSO_ON", - "message": "Assigned To DSO On", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REPORT_FSM_RESULT_BANKNAME", - "message": "Bank Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REPORT_FSM_RESULT_CARDDIGIT", - "message": "Last 4 digits of card", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REPORT_FSM_RESULT_CHEQUEDATE", - "message": "Cheque/DD date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REPORT_FSM_RESULT_CHEQUENO", - "message": "Cheque/DD No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REPORT_FSM_RESULT_CURRENT_STATUS", - "message": "Current Status", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REPORT_FSM_RESULT_DATE_OF_COMPLETION", - "message": "Completed On", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REPORT_FSM_RESULT_DSONAME", - "message": "DSO Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REPORT_FSM_RESULT_DSO_NAME", - "message": "DSO Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REPORT_FSM_RESULT_LOCALITY", - "message": "Locality", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REPORT_FSM_RESULT_PAYMENTMODE", - "message": "Instrument type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REPORT_FSM_RESULT_PROPERTYSUBTYPE", - "message": "Property Sub Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REPORT_FSM_RESULT_RECEIPTDATE", - "message": "Receipt date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REPORT_FSM_RESULT_RECEIPTNUMBER", - "message": "Receipt number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REPORT_FSM_RESULT_SEPTAGEDUMPED", - "message": "Volume of Septage dumped (Cu.m)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REPORT_FSM_RESULT_SLA_COMPLIANCE", - "message": "SLA Compliance", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REPORT_FSM_RESULT_STATUS", - "message": "Status", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REPORT_FSM_RESULT_TRANSACTIONID", - "message": "Transaction ID", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REPORT_FSM_RESULT_VEHICLEENTRYDATE", - "message": "Vehicle Entry Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REPORT_FSM_RESULT_VEHICLEENTRYTIME", - "message": "Vehicle Entry time", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REPORT_FSM_RESULT_VEHICLEEXITTIME", - "message": "Vehicle Exit time", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REPORT_FSM_RESULT_VEHICLELOGNO", - "message": "Vehicle log number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REPORT_FSM_RESULT_VEHICLENO", - "message": "Vehicle Number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REQUIRED_FIELD", - "message": "Required Field", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REQUIRED_TEXT", - "message": "Required", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "RESEND_OTP_IN_SEC", - "message": "Request another OTP in {timer} seconds", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REVENUE_LOCALITY_STATEA_01_01_SUN01", - "message": "Ajit Nagar - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REVENUE_LOCALITY_STATEA_01_02_SUN02", - "message": "Back Side 33 KVA Grid Patiala Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REVENUE_LOCALITY_STATEA_01_03_SUN03", - "message": "Bharath Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REVENUE_LOCALITY_STATEA_02_01_SUN10", - "message": "Backside Brijbala Hospital - Area3", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REVENUE_LOCALITY_STATEA_02_02_SUN11", - "message": "Bigharwal Chowk to Railway Station - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REVENUE_LOCALITY_STATEA_02_03_SUN12", - "message": "Chandar Colony Biggarwal Road - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REVENUE_LOCALITY_STATEA_03_01_SUN20", - "message": "Aggarsain Chowk to Mal Godown - Both Sides - Area3", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REVENUE_LOCALITY_STATEA_03_02_SUN21", - "message": "ATAR SINGH COLONY - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REVENUE_LOCALITY_STATEA_03_03_SUN22", - "message": "Back Side Naina Devi Mandir - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REVENUE_LOCALITY_STATEA_04_01_SUN30", - "message": "Bakhtaur Nagar - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REVENUE_LOCALITY_STATEA_04_02_SUN31", - "message": "Bhai Mool Chand Sahib Colony - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REVENUE_LOCALITY_STATEA_04_03_SUN32", - "message": "College Road (Southern side) - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "REVENUE_LOCALITY_STATEA_04_04_SUN33", - "message": "Ekta Colony (Southern Side) - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "RE_ENTER_ACCOUNT_NUMBER", - "message": "The account number entered is not matching", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "RE_SUBMITTED", - "message": "Re-Submitted", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ROWS_PER_PAGE", - "message": "Rows per page", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "RT_ALL", - "message": "All", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "RT_DOWNLOAD_AS", - "message": "Download As", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "RT_DOWNLOAD_PDF", - "message": "Download PDF", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "RT_DOWNLOAD_XLS", - "message": "Download XLS", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "RT_SELECT_PLACEHOLDER", - "message": "Select", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "RT_SNO", - "message": "SNO.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "RT_TOTAL", - "message": "Total", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SANGI_MULIA", - "message": "Sangi mulia", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SAVE_AS_DRAFT", - "message": "Save as Draft", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SCAVENGER", - "message": "Scavanger", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SCORE_NO", - "message": "No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SCORE_YES", - "message": "Yes", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SEARCH_ADDRESS_MAP_PLACEHOLDER", - "message": "Search Address", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SEARCH_PROPERTY", - "message": "Search Property", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SEMISKILLED_ELECTRICIAN", - "message": "Semi-skilled Electrician", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SEMISKILLED_WELDER", - "message": "Semi-skilled Welder", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SEMI_SKILLED", - "message": "Semi-skilled", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SEMI_SKILLED.CLEANER", - "message": "Semi-Skilled - Cleaner", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SEMI_SKILLED.FEMALE_MULIA", - "message": "Semi-skilled Female Mulia", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SEMI_SKILLED.HAMMER_MAN", - "message": "Semi-skilled - Hammer Man", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SEMI_SKILLED.MALE_MULIA", - "message": "Semi-skilled - Male Mulia", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SEMI_SKILLED.SANGI_MULIA", - "message": "Semi-Skilled - Sangi Mulia", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SEMI_SKILLED.SCAVENGER", - "message": "Semi-skilled scavenger", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SEMI_SKILLED_CLEANER", - "message": "Semi-Skilled Cleaner", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SEMI_SKILLED_FEMALE_MULIA", - "message": "Semi-Skilled - Female Mulia", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SEMI_SKILLED_HAMMER_MAN", - "message": "Semi-Skilled Hammer Man", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SEMI_SKILLED_MALE_MULIA", - "message": "Semi-Skilled - Male Mulia", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SEMI_SKILLED_SANGI_MULIA", - "message": "Semi-Skilled - Sangi Mulia", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SEMI_SKILLED_SCAVENGER", - "message": "Semi-Skilled - Scavanger", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SEND_FOR_APPROVAL", - "message": "Submit for Approval", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SEND_TO_CITIZEN_MSG", - "message": "Dear {1} , Your Application for {2} (Service type) is created with application number {3}. You can login to the portal and navigate to the my applications page to review the application.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SENTBACK", - "message": "Sent Back", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SENTBACKTOCBO", - "message": "Sent back for correction", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SERVICE CATEGORY LIST", - "message": "Service Category", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SERVICEDETAILS", - "message": "Service Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SERVICE_CATEGORIES_OF_CHALLANS_PROCESSED_IN", - "message": "service categories of challans are processed in", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SERVICE_TYPE", - "message": "Service Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SEWERAGE", - "message": "Sewerage", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SEWERAGE_APPLICATIONTYPE_DISCONNECT_SEWERAGE_CONNECTION", - "message": "sewerage", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SEWERAGE_APPLICATIONTYPE_DISCONNECT_WATER_CONNECTION", - "message": "water", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SEWERAGE_CONNECTION", - "message": "Sewerage Connection", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SEWERAGE_CONNECTION_BILL_GENERATION_MESSAGE", - "message": "Dear {Owner Name},Your{Service} Bill for {Billing Period} has been generated. Please pay the amount due: {bill amount} by due date {Due Date}. Following is the link to your bill: {Link to Bill}", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SHAREDPROPERTY", - "message": "Flat/Part of the building", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SHORT_ANSWER_TYPE", - "message": "Short answer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SHOW_WORKFLOW_TIMELINE", - "message": "Show Workflow Timeline", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SINGLE", - "message": "Single ", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SKILLED_FITTER", - "message": "Skilled Fitter", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SKILLED_MASON", - "message": "Skilled Mason", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SKILLED_MULIA", - "message": "Skilled Mulia", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SKILLED_PAINTER", - "message": "Skilled Painter", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SKILLED_PLUMBER", - "message": "Skilled Plumber", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SKILLS_IS_REQUIRED", - "message": "Skills is required", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SKILLS_SELECTION_INVALID", - "message": "Combination of skills selected is invalid", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SOCIAL_CATEGORY_IS_REQUIRED", - "message": "Social Category is required", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SORT_BY", - "message": "Sort By", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SORT_ICON", - "message": "Sort by SLA", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SPACE_FSM_SMS_CREATED_CREATE", - "message": "Dear Applicant,Your application for cleaning septic tank/pit is created with application reference no.{#var#}.You will be notified to make an application fee shortly.Request is expected to be completed within {#var#} hrs of making the payment.EGOVS", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SS_SURVEY_NOTIFICATION_TEMPLATE", - "message": "A new survey {survey_title} has been launched in mSeva. Click here to participate.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "STATE_LABEL", - "message": "Punjab", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "STATE_pg", - "message": "Odisha", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "STATE_statea", - "message": "State Demo", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "STATUS", - "message": "Status", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SUBMITTED", - "message": "Submitted", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SUB_DSS_BOTTOM_PERFORMING_ULBS", - "message": "Bottom Performing ULBS", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SUB_DSS_TOP_PERFORMING_ULBS", - "message": "Top Performing ULBS", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SUCCESS_IN_GENERATION_RECEIPT", - "message": "Receipt Downloaded Successfully", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SUMMARY_DETAILS", - "message": "Summary details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SUN01_ADMIN_LOCALITY", - "message": "Locality 01", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SUN02_ADMIN_LOCALITY", - "message": "Locality 02", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SUN03_ADMIN_LOCALITY", - "message": "Locality 03", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SURVEY_INFO_HEADER", - "message": "Note", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SURVEY_INFO_LABEL", - "message": "For Active surveys only end date/time and survey description can be edited.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SURVEY_QUESTIONS", - "message": "Questions", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SURVEY_REPORT", - "message": "Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SURVEY_SAME_NAME_SURVEY_ALREADY_PRESENT", - "message": "Survey name already exists", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SURVEY_STATUS_TOOLTIP", - "message": "Active Status represents that survey is actively collecting responses. Inactive status fall pre and post active collection dates", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SW.ONE_TIME_FEE", - "message": "One Time Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SW_ADDITIONAL_AMOUNT", - "message": "Additional Amount", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SW_ADVANCE_CARRYFORWARD", - "message": "Advance CarryForward", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SW_APPLICATION_MODIFY_CONNECTION_HEADER", - "message": "Modify Sewerage Connection", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SW_CHARGE", - "message": "Sewerage Charge", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SW_FEE_ROUND_OFF", - "message": "Fee Round Off", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SW_FORM_FEE", - "message": "Form fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SW_FORM_FEE ", - "message": "Form fee ", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SW_ONE_TIME_FEE", - "message": "One Time Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SW_OTHER_CHARGE", - "message": "Other Charge", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SW_PENALTY", - "message": "Adhoc Penalty", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SW_REBATE", - "message": "Adhoc Rebate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SW_REDUCED_AMOUNT", - "message": "Reduced Amount", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SW_ROAD_CUTTING_CHARGE", - "message": "Road Cutting Charge", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SW_SCRUTINY_FEE", - "message": "Scrutiny Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SW_SCRUTINY_FEE ", - "message": "Scrutiny Fee ", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SW_SECURITY_CHARGE", - "message": "Security Charge", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SW_TAX_AND_CESS", - "message": "Tax and Cess", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SW_TIME_INTEREST", - "message": "Interest", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SW_TIME_PENALTY", - "message": "Penalty", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "SW_WATER_INBOX", - "message": "Sewerage Inbox", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "Select Event Category", - "message": "EVENTS_CATEGORY_PLACEHOLDER", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "Select_Event_Category", - "message": "EVENTS_CATEGORY_PLACEHOLDER", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "Snackk", - "message": "baarrr", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TAXHEADCODE_BPA_SANC_FEES", - "message": "Sanction Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TAX_CURRENT_AMOUNT", - "message": "Current Bill", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_DB_42", - "message": "नवांशहर ४२", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1", - "message": "Ashok Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC10", - "message": "Gurbachan Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC100", - "message": "Dera Preet Nagar Jhuggia", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1000", - "message": "Maqsudan Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1001", - "message": "Nagra Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1002", - "message": "Jawala Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1003", - "message": "New Jawala Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1004", - "message": "Patel Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1005", - "message": "New Patel Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1006", - "message": "Guru Ravidass Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1007", - "message": "Bhupinder Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1008", - "message": "Ashok Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1009", - "message": "Nagra Pind", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC101", - "message": "Miya Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1010", - "message": "New Nagra", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1011", - "message": "Shital Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1012", - "message": "New Shital Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1013", - "message": "Jugian", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1014", - "message": "Sham Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1015", - "message": "Amar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1016", - "message": "Babu Labh Singh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1017", - "message": "Rattan Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1018", - "message": "New Rattan Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1019", - "message": "Shaheed Babu Labh Singh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC102", - "message": "Shalimar Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1020", - "message": "New Shaheed Babu Labh Singh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1021", - "message": "Madhuban Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1022", - "message": "Gujrati Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1023", - "message": "Jagwali Kathi Near Canal", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1024", - "message": "Ragu Nath Mandir Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1025", - "message": "Kacha Kot", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1026", - "message": "Old Green Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1027", - "message": "Green Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1028", - "message": "Raja Garden", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1029", - "message": "Raja Garden Extension", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC103", - "message": "New Dashmesh Nagar Part", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1030", - "message": "V.I.P Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1031", - "message": "Butti Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1032", - "message": "Gagan Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1033", - "message": "Bhai Gurdass Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1034", - "message": "Baba Bachittar Ji Nagar Mithu Basti", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1035", - "message": "Tara Singh Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1036", - "message": "New Rasila Nagar Basti Danishmandan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1037", - "message": "Dilbagh Nagar Ext.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1038", - "message": "Rasila Nagar Phase 2 Danishmandan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1039", - "message": "Rasila Nagar Basti Danishmandan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC104", - "message": "Kaki Pind", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1040", - "message": "Begampura Colony Danishmandan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1041", - "message": "Baba Budha Ji Nagar Mithu Nagar Basti", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1042", - "message": "Ekta Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1043", - "message": "New Shastri Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1044", - "message": "Satnam Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1045", - "message": "Anoop Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1046", - "message": "Bal bro Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1047", - "message": "Badhri Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1048", - "message": "Badhri Colony Phase (2)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1049", - "message": "Ram Shernam Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC105", - "message": "New Joginder Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1050", - "message": "Peer Das Basti", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1051", - "message": "Kamar Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1052", - "message": "Panu Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1053", - "message": "Paras Estate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1054", - "message": "Paras Estate 2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1055", - "message": "Maharaja Garden", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1056", - "message": "Harbanse Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1057", - "message": "5 Peer Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1058", - "message": "Anoop Nagar (2)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1059", - "message": "Sher Singh Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC106", - "message": "Part of Joginder Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1060", - "message": "Roshan Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1061", - "message": "Qilla Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1062", - "message": "Kathera Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1063", - "message": "Gautam Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1064", - "message": "New Gautam Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1065", - "message": "Kabir Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1066", - "message": "Guru Ram Dass Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1067", - "message": "Mata Sant Kaur Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1068", - "message": "City A Prime", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1069", - "message": "City A Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC107", - "message": "New Beant Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1070", - "message": "City A Kunj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1071", - "message": "Rajan Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1072", - "message": "Kailash Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1073", - "message": "Balmik Mohalla Bawa Khel", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1074", - "message": "Akal Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1075", - "message": "Basti Bawa Khel (main)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1076", - "message": "Raj Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1077", - "message": "New Raj Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1078", - "message": "Kabir Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1079", - "message": "Bank Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC108", - "message": "Part of Beant Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1080", - "message": "Basti Bawa Khel", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1081", - "message": "Katehara Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1082", - "message": "New Rattan Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1083", - "message": "Guru Nanak Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1084", - "message": "New Guru Nanak Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1085", - "message": "Shiv Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1086", - "message": "Baba Kahandass Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1087", - "message": "Village Nagara", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1088", - "message": "Abinandan Park", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1089", - "message": "National Park", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC109", - "message": "Gulmarg Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1090", - "message": "Ashok Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1091", - "message": "Vivek Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1092", - "message": "Green Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1093", - "message": "Shanti Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1094", - "message": "Viveka Nand Park", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1095", - "message": "Subash Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1096", - "message": "Golden Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1097", - "message": "Navyug Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1098", - "message": "New Shiv Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1099", - "message": "Maqsudan Byepass", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC11", - "message": "Indra Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC110", - "message": "Mehtab Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1100", - "message": "Mahasha Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1101", - "message": "Anand Ngr", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1102", - "message": "New Anand Ngr", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1103", - "message": "Janta Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1104", - "message": "Navnirman Janta Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1105", - "message": "Issa Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1106", - "message": "Guru Nanak Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1107", - "message": "Aara Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1108", - "message": "Surat Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1109", - "message": "Master Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC111", - "message": "Professor Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1110", - "message": "Angad Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC1111", - "message": "Amandip Avenue.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC112", - "message": "Mohan Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC113", - "message": "Part of Ladhewali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC114", - "message": "Part of New Dashmesh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC115", - "message": "Dhilwan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC116", - "message": "Dhanowali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC117", - "message": "Sanik Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC118", - "message": "Old Dashmesh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC119", - "message": "Ajeet Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC12", - "message": "Sant Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC120", - "message": "Guru Anged Dev Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC121", - "message": "Sunder Nagar Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC122", - "message": "Kohinoor Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC123", - "message": "Sunny Prime", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC124", - "message": "Arman Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC125", - "message": "Johan Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC126", - "message": "Ganesh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC127", - "message": "New Ganesh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC128", - "message": "Masi Mohalla Dakoha", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC129", - "message": "Tarun Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC13", - "message": "Kalia Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC130", - "message": "Kaki Pind", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC131", - "message": "Arman Nagar 2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC132", - "message": "Birring Pind-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC133", - "message": "Birring Pind-2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC134", - "message": "Mohinder Singh Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC135", - "message": "Mehnga Singh Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC136", - "message": "Dada Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC137", - "message": "Peace Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC138", - "message": "Bunga Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC139", - "message": "Golden Colony (Phase 1)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC14", - "message": "Kalia Colony Ph-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC140", - "message": "Golden Colony (Phase 2)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC141", - "message": "Golden Colony (Phase 3)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC142", - "message": "Model Estate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC143", - "message": "Defence Colony (Phase 1)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC144", - "message": "New Defence Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC145", - "message": "Paragpura ( Old Phagwara Road)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC146", - "message": "Paragpura ( Pind )", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC147", - "message": "Paragpura ( Abadi Near Railway fatak )", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC148", - "message": "Ratti Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC149", - "message": "Thakur Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC15", - "message": "Kalia Colony PH-2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC150", - "message": "Ram Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC151", - "message": "Chotte Ram Bagh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC152", - "message": "Panch Sheel Colony ( Half )", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC153", - "message": "Bhullar Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC154", - "message": "Modern State", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC155", - "message": "Yadav Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC156", - "message": "Baba Budha Ji Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC157", - "message": "Bhuda Ji Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC158", - "message": "Shaheed Gurvinder Singh Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC159", - "message": "National Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC16", - "message": "Kalia Colony PH-3", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC160", - "message": "Ravidass Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC161", - "message": "Guru Nanak Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC162", - "message": "Jagjit Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC163", - "message": "Old Kaki Pind", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC164", - "message": "Village Dakoha", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC165", - "message": "Baba Budha Singh Nagar Street No 1 to 9", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC166", - "message": "Ekta Nagar PH-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC167", - "message": "Ekta Nagar PH-2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC168", - "message": "Joginder Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC169", - "message": "Panch Rattan Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC17", - "message": "Kalia Farm", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC170", - "message": "New Defence Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC171", - "message": "Beant Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC172", - "message": "Old Beant Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC173", - "message": "PSEB Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC174", - "message": "BB Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC175", - "message": "Half Rama Mandi Main Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC176", - "message": "Khateek Market Ramamandi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC177", - "message": "Valmik Mohalla Ramamandi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC178", - "message": "Krishna Sweet Wali Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC179", - "message": "Palwon Wali Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC18", - "message": "Guru Amar Dass Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC180", - "message": "Fouji Wali Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC181", - "message": "Bhatra Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC182", - "message": "Aytar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC183", - "message": "Guru Nanak Pura East", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC184", - "message": "Guru Nanak Pura West", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC185", - "message": "Chugitti", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC186", - "message": "Ekta Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC187", - "message": "P.A.P", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC188", - "message": "Railway Colony-3", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC189", - "message": "Rajinder Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC19", - "message": "Guru Amar Dass Nagar 2- Marla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC190", - "message": "Preet Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC191", - "message": "Sehgal Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC192", - "message": "Kirti Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC193", - "message": "Mohalla Ladowali Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC194", - "message": "Mohyal Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC195", - "message": "Link Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC196", - "message": "Hargobind Pura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC197", - "message": "Ranjit Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC198", - "message": "New Rajinder Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC199", - "message": "Police Line", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC2", - "message": "Bank Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC20", - "message": "New Guru Amar Dass Nagar Ext.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC200", - "message": "Guru Nanak Pura (West) Street No. 1 to 8", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC201", - "message": "New Guru Nanak Pura (West)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC202", - "message": "Bhojowal Patti (Chugittee)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC203", - "message": "Bharat Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC204", - "message": "Satnam Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC205", - "message": "Chugittee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC206", - "message": "Ved Ram Parkash Street", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC207", - "message": "Guru Gobind Singh Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC208", - "message": "Sureya Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC209", - "message": "Komal Vihar Old & New", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC21", - "message": "Guru Amar Dass Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC210", - "message": "Bashirpura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC211", - "message": "Thakur Singh Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC212", - "message": "Royal Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC213", - "message": "Jhansi Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC214", - "message": "Gobind Garh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC215", - "message": "Arjun Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC216", - "message": "40 Quarter", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC217", - "message": "Dashmesh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC218", - "message": "New Dashmesh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC219", - "message": "Sant Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC22", - "message": "Venus Valley", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC220", - "message": "Shanti Pura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC221", - "message": "New Baradari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC222", - "message": "Poultry Form Area", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC223", - "message": "Prem Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC224", - "message": "Mandi Fenton Garg", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC225", - "message": "Partap Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC226", - "message": "Rishi Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC227", - "message": "Brahm Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC228", - "message": "Mandi Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC229", - "message": "Railway Colony No. 1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC23", - "message": "Baba Mohan Dass Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC230", - "message": "Guard Colony No-2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC231", - "message": "Old Jawahar Nagar Single Lane", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC232", - "message": "Central Town", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC233", - "message": "Krishan Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC234", - "message": "Old Jawahar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC235", - "message": "Master Tara Singh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC236", - "message": "P & T Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC237", - "message": "Riaz Pura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC238", - "message": "Ramesh Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC239", - "message": "Shiva Ji Park", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC24", - "message": "Salempur Muslmana", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC240", - "message": "Netaji Park", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC241", - "message": "Civil Lines", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC242", - "message": "Mohalla Makhdumpura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC243", - "message": "Mohalla Shastri Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC244", - "message": "Fauji Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC245", - "message": "Shivalik Apartments", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC246", - "message": "Venus Apartments", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC247", - "message": "B-Block Apartments", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC248", - "message": "Paradise Apartments", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC249", - "message": "Gurkirpa Apartments", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC25", - "message": "Swarn Park-1Swarn Prak- 2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC250", - "message": "Ganga Apartments", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC251", - "message": "Nakodar Road Market", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC252", - "message": "Lajpat Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC253", - "message": "Lajpat Nagar Market", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC254", - "message": "Abadpura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC255", - "message": "Balmiki Colony Link Road Abadpura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC256", - "message": "Major Bahadur Singh Nagar & Marg", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC257", - "message": "New Model Town Mall Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC258", - "message": "New Jawahar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC259", - "message": "Guru Nanak Mission Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC26", - "message": "Sanjay Gandhi Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC260", - "message": "Badridass Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC261", - "message": "Purani Baradari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC262", - "message": "Skylark Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC263", - "message": "Civil Lines", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC264", - "message": "Sehdev Market", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC265", - "message": "Namdev Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC266", - "message": "G.T Road Market", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC267", - "message": "Shastri Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC268", - "message": "Sanjay Gandhi Market", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC269", - "message": "New Courts Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC27", - "message": "Gadaipur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC270", - "message": "Police Line Market", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC271", - "message": "BMC Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC272", - "message": "Market Opposite Bus Stand", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC273", - "message": "Link Road Model Town", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC274", - "message": "Valmiki Colony Major Bahadur Singh Marg", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC275", - "message": "Radio Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC276", - "message": "New Jawahar Nagar (Point)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC277", - "message": "Green Park", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC278", - "message": "Mota Singh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC279", - "message": "Modern Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC28", - "message": "Raja Garden", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC280", - "message": "Gurjaipal Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC281", - "message": "Wariam Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC282", - "message": "Gian Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC283", - "message": "New Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC284", - "message": "Defence Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC285", - "message": "Defence Colony Ext.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC286", - "message": "Chotti Baradari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC287", - "message": "Jaswant Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC288", - "message": "Roop Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC289", - "message": "Atwal Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC29", - "message": "Ram Bagh Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC290", - "message": "Atwal House", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC291", - "message": "New Hardyal Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC292", - "message": "Hardyal Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC293", - "message": "Rubi Hospital", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC294", - "message": "BSF Camp", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC295", - "message": "New Green Park", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC296", - "message": "Railway Quarter ( Cool Road)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC297", - "message": "Garha/Shiv Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC298", - "message": "Dayanand chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC299", - "message": "Rattan Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC3", - "message": "Sarabha Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC30", - "message": "Dada Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC300", - "message": "Sark Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC301", - "message": "Valmiki Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC302", - "message": "Ravi dass Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC303", - "message": "Makhan Ramwali Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC304", - "message": "School wali Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC305", - "message": "Jiwan Singh Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC306", - "message": "Tanki Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC307", - "message": "Phagu Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC308", - "message": "Sarpanch wali Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC309", - "message": "Main Bazar Rama Mandir", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC31", - "message": "Industrial Area", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC310", - "message": "Main Bazar Gurudwara Singh Sabha", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC311", - "message": "Garha Vehanda", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC312", - "message": "Phagu Mohalla Ram Mandir wali Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC313", - "message": "Phagwari Mohalla Near Janj Ghar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC314", - "message": "Phagwari Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC315", - "message": "Dr. Mana Wali Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC316", - "message": "Old Div. 7 Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC317", - "message": "Cantt. Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC318", - "message": "Cantt. Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC319", - "message": "New Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC32", - "message": "Focal Point", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC320", - "message": "Jaswant Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC321", - "message": "Jawant Nagar near Gurudwara", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC322", - "message": "Jaswant Nagar Gali No. 1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC323", - "message": "Jaswant Nagar Gali Thekewali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC324", - "message": "Jaswant Nagar Gali no. 100 3 to 5", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC325", - "message": "Jaswant Nagar Gali 2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC326", - "message": "Golden Aveune-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC327", - "message": "Golden Avenue-2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC328", - "message": "Gurjeet Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC329", - "message": "Dashmesh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC33", - "message": "Transport Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC330", - "message": "Chanchal Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC331", - "message": "Chotti Baradari Part-2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC332", - "message": "Idgah Mohalla Garha", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC333", - "message": "Sarak Mohalla Garha", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC334", - "message": "Guru Diwan Nagar Garha", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC335", - "message": "Tara Chand Colony Garha", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC336", - "message": "Chintpurni Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC337", - "message": "Geeta Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC338", - "message": "Garha", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC339", - "message": "Labour Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC34", - "message": "Udyog Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC340", - "message": "Kunowali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC341", - "message": "Urban Estate Ph-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC342", - "message": "M.I.G", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC343", - "message": "Urban Estate Phase Half", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC344", - "message": "Sabowal Old.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC345", - "message": "Isherpuri Colony (Some Part)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC346", - "message": "Urban Estate 2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC347", - "message": "Sabowal", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC348", - "message": "Lahor Nangal", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC349", - "message": "Isherpuri Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC35", - "message": "Parshuram Pur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC350", - "message": "Ranjit Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC351", - "message": "Kalgidhar Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC352", - "message": "New Kalgidhar Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC353", - "message": "Ravinder Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC354", - "message": "Dashmesh Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC355", - "message": "Karol Bagh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC356", - "message": "Vijay Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC357", - "message": "Guru Ram Dass Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC358", - "message": "Baba Makhan Shah Lubana", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC359", - "message": "Friends Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC36", - "message": "Vadda Saipur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC360", - "message": "Officer Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC361", - "message": "D.C Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC362", - "message": "White Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC363", - "message": "Punjabi Bagh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC364", - "message": "Lahor Nagar Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC365", - "message": "Happy Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC366", - "message": "New Isherpuri", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC367", - "message": "Universal Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC368", - "message": "Singh Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC369", - "message": "Engineer Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC37", - "message": "Reru", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC370", - "message": "Green Garden Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC371", - "message": "Ravinder Nagar Extension", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC372", - "message": "Punjabi Bagh Extension", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC373", - "message": "Model Town", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC374", - "message": "Parkash Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC375", - "message": "Guru Nanak Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC376", - "message": "Guru Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC377", - "message": "Rishi Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC378", - "message": "Jyoti Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC379", - "message": "Shankar Garden", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC38", - "message": "Hargobind Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC380", - "message": "Lal Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC381", - "message": "Satkartar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC382", - "message": "Ravinder Nagar Extension", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC383", - "message": "Cheema Nagar Ext.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC384", - "message": "Vasant Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC385", - "message": "Vasant Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC386", - "message": "Vasant Vihar Ext.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC387", - "message": "Urban Estate Ph-2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC388", - "message": "Model Town", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC389", - "message": "New Jawahar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC39", - "message": "Punjabi Bagh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC390", - "message": "Lajpat Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC391", - "message": "Dada Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC392", - "message": "Green Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC393", - "message": "Green Model Town", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC394", - "message": "Kewal Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC395", - "message": "Indra Park", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC396", - "message": "Cheema Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC397", - "message": "Shiv Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC398", - "message": "Gurmeet Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC399", - "message": "Ramneek Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC4", - "message": "Paschim Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC40", - "message": "Bachint Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC400", - "message": "Bank Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC401", - "message": "Bank Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC402", - "message": "Raja Garden", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC403", - "message": "Keshev Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC404", - "message": "Ekta Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC405", - "message": "New Raja Garden", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC406", - "message": "New Raja Garden Extension", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC407", - "message": "Bhai Samund Singh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC408", - "message": "New Arora Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC409", - "message": "Mithapur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC41", - "message": "Parsuram Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC410", - "message": "King Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC411", - "message": "Green Wood Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC412", - "message": "Ram Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC413", - "message": "Sewerage Board Quarter", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC414", - "message": "75 Garden Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC415", - "message": "Panch Sheel Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC416", - "message": "Mayor Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC417", - "message": "New Light Colony Phase -1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC418", - "message": "Bank Enclave Phase-2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC419", - "message": "Residence Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC42", - "message": "Kahanpur Abadi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC420", - "message": "Sudhama Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC421", - "message": "New Sudhama Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC422", - "message": "Rocky Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC423", - "message": "New Light Colony Phase-2 (Sudhama Vihar)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC424", - "message": "VIP Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC425", - "message": "Sadhu Singh Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC426", - "message": "Red Face Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC427", - "message": "New Garden Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC428", - "message": "Bhai Banno Ji Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC429", - "message": "Gill Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC43", - "message": "Ramneek Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC430", - "message": "Parkash Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC431", - "message": "Khurla Kingra", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC432", - "message": "Tower Town Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC433", - "message": "Silver Residency", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC434", - "message": "Tower Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC435", - "message": "Guru Nanak Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC436", - "message": "Boota Mandi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC437", - "message": "Boota Pind (Back Side Dr.B.R. Ambedkar Park", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC438", - "message": "Swami Lal JI Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC439", - "message": "New Green Park", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC44", - "message": "Baba Deep Singh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC440", - "message": "Khurla Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC441", - "message": "Professor Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC442", - "message": "Army Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC443", - "message": "Mann Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC444", - "message": "Chopra Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC445", - "message": "Khurla Kingra (Back Side Sai Mandir)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC446", - "message": "Door Darshan Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC447", - "message": "Bombay Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC448", - "message": "Friends Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC449", - "message": "SAS Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC45", - "message": "Nurpur Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC450", - "message": "SAS Nagar Extension", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC451", - "message": "New Green Model Town", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC452", - "message": "Palam Rajeet Apartments", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC453", - "message": "Bank Enclave Part 1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC454", - "message": "Kuki Dhab", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC455", - "message": "Green Woods Apartments", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC456", - "message": "Park View Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC457", - "message": "Housing Board Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC458", - "message": "Satnam Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC459", - "message": "Mann Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC46", - "message": "Sunder Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC460", - "message": "Punjabi Bagh Wadala Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC461", - "message": "Silver heights", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC462", - "message": "Partap Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC463", - "message": "Guru Gobind Singh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC464", - "message": "Guru Arjan dev Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC465", - "message": "G.T.B Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC466", - "message": "Garden Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC467", - "message": "G.T.B Nagar extension", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC468", - "message": "GTB Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC469", - "message": "F.C.I Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC47", - "message": "Hargobind Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC470", - "message": "Chanakya Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC471", - "message": "New GTB Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC472", - "message": "Vivek Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC473", - "message": "Green Model Town", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC474", - "message": "Boota Pind", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC475", - "message": "Wadala Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC476", - "message": "Main Road Abadpura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC477", - "message": "Gali No. 2 To Gali No. 6", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC478", - "message": "Preet Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC479", - "message": "Rameshwar Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC48", - "message": "Gulmarg Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC480", - "message": "Sh. Guru Ravidass Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC481", - "message": "Tubewell wali Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC482", - "message": "Labour Court Gali Panj Peer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC483", - "message": "Maharishi Valmiki Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC484", - "message": "Taneja New Abadpura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC485", - "message": "Avtar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC486", - "message": "New Avtar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC487", - "message": "New Suraj Ganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC488", - "message": "Pishori Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC489", - "message": "Naqvi Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC49", - "message": "Bachint Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC490", - "message": "Dairy Kalu Ram-O Band Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC491", - "message": "Bhargo Camp-Add", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC492", - "message": "Pishori Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC493", - "message": "Link Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC494", - "message": "Abadpura Gali No.1 to 2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC495", - "message": "New Suraj Ganj –west", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC496", - "message": "Gali No-10-B-11-B", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC497", - "message": "Bhargo Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC498", - "message": "Bhargo Camp", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC499", - "message": "Ravidass Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC5", - "message": "Amrit Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC50", - "message": "Sarabha Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC500", - "message": "Channan Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC501", - "message": "Boota Mandi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC502", - "message": "Silver Oak Apartments", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC503", - "message": "Nakodar Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC504", - "message": "Chappli Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC505", - "message": "Sant Pura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC506", - "message": "Arya Samaj Mandir", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC507", - "message": "Valmiki Mandir", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC508", - "message": "Chapal Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC509", - "message": "Kabir Mandir", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC51", - "message": "Chack Hussiana", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC510", - "message": "Gain Giri Mandir", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC511", - "message": "Nirankari Bhawan Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC512", - "message": "Ravidass Dham", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC513", - "message": "Kanth Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC514", - "message": "State Bank Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC515", - "message": "Ravidass Mandir", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC516", - "message": "Sharif Pura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC517", - "message": "Tokri Chowk Bhargo Camp", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC518", - "message": "Gali Mirasiya Wali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC519", - "message": "Gali Somnath Aara Wala", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC52", - "message": "Lamba Pind", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC520", - "message": "Prem Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC521", - "message": "Gali Ravi Karyana Store", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC522", - "message": "Gali Sharma Model School", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC523", - "message": "Chune Wali Gali Boota Mandi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC524", - "message": "Gali Pawan Koushal", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC525", - "message": "Bhargo Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC526", - "message": "Nive Passe Bhargo Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC527", - "message": "Azad Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC528", - "message": "New Suraj Ganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC529", - "message": "New Suraj Ganj (West)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC53", - "message": "Chandigarh Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC530", - "message": "Model House Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC531", - "message": "Main Bazar Bhargo", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC532", - "message": "Mohalla Amar Saw Mill", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC533", - "message": "Bhargo Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC534", - "message": "Shamshan Ghat Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC535", - "message": "Mohalla Vari Vatt", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC536", - "message": "Bhargo Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC537", - "message": "Tej Mohan Nagar Gali No-5 to Gali No-11", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC538", - "message": "New Ashok Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC539", - "message": "Narayan Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC54", - "message": "Succhi Pind", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC540", - "message": "Ashok Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC541", - "message": "New Sant Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC542", - "message": "Sant Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC543", - "message": "Nijatam Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC544", - "message": "Chouhan Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC545", - "message": "Ganesh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC546", - "message": "Basti Nau", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC547", - "message": "Bank Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC548", - "message": "Chaar Marla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC549", - "message": "Block-A,B,C,D", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC55", - "message": "Hardial Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC550", - "message": "Bhagat Singh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC551", - "message": "Rajput Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC552", - "message": "Taranwali Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC553", - "message": "Mohalla Kot", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC554", - "message": "Uttam Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC555", - "message": "Mohalla Chaiaam", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC556", - "message": "Tej Mohan Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC557", - "message": "Sant Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC558", - "message": "Siddhartha Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC559", - "message": "New Abadi Jallowal", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC56", - "message": "New Hardial Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC560", - "message": "Kay Pee Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC561", - "message": "New Model House", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC562", - "message": "Model Gram Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC563", - "message": "Gahi Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC564", - "message": "Jaina Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC565", - "message": "New Ghai Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC566", - "message": "Chiragpura Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC567", - "message": "New Deol Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC568", - "message": "New Dashmesh Nagar Block-A", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC569", - "message": "New Dashmesh Nagar Block-C", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC57", - "message": "Hardip Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC570", - "message": "Tilak Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC571", - "message": "Kartar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC572", - "message": "New Kartar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC573", - "message": "Udye Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC574", - "message": "Deol Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC575", - "message": "New Deol Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC576", - "message": "Aman Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC577", - "message": "Major Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC578", - "message": "Pink City Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC579", - "message": "Kot Sadiq Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC58", - "message": "Judge Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC580", - "message": "Khara Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC581", - "message": "Kot Sadiq", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC582", - "message": "Mast Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC583", - "message": "Thind Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC584", - "message": "Sai Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC585", - "message": "BT Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC586", - "message": "Kanshi Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC587", - "message": "Green Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC588", - "message": "Geeta Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC589", - "message": "New Geeta Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC59", - "message": "Prem Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC590", - "message": "Ishwar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC591", - "message": "New Dashmesh Nagar B Block", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC592", - "message": "Dordarshan Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC593", - "message": "Tower Enclave Phase 2nd", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC594", - "message": "Hamilton Tower", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC595", - "message": "Guru Ravidass Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC596", - "message": "New Ravidass Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC597", - "message": "Shiva Ji Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC598", - "message": "New Shiva Ji Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC599", - "message": "Lasuri Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC6", - "message": "Chak Jinda", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC60", - "message": "Gulmohar City", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC600", - "message": "New Lasuri Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC601", - "message": "Begampura Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC602", - "message": "Main Adda Basti Danishmandan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC603", - "message": "Main Bazar Basti Danishmandan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC604", - "message": "Valmiki Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC605", - "message": "Chandigarh Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC606", - "message": "New Chandigarh Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC607", - "message": "Chungi Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC608", - "message": "Chungi No-9", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC609", - "message": "Tagri Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC61", - "message": "Three Star Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC610", - "message": "Guru Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC611", - "message": "Surjit Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC612", - "message": "Basti Sheikh + Danishmandan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC613", - "message": "Kattra Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC614", - "message": "Guru Sant Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC615", - "message": "Guru Nanak Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC616", - "message": "Lasuri Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC617", - "message": "Baldev Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC618", - "message": "Satkartar Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC619", - "message": "Ujala Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC62", - "message": "Soma Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC620", - "message": "Mohindra Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC621", - "message": "Valmiki Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC622", - "message": "Vada Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC623", - "message": "Banian Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC624", - "message": "Satran Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC625", - "message": "Mochian Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC626", - "message": "Tarkhana Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC627", - "message": "Telian Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC628", - "message": "Road Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC629", - "message": "Manjit Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC63", - "message": "Mata Salani Mandir", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC630", - "message": "Chet Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC631", - "message": "Janak Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC632", - "message": "Chaian Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC633", - "message": "Kot Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC634", - "message": "Gulabia Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC635", - "message": "Bara Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC636", - "message": "Hargobind Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC637", - "message": "Gurditta Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC638", - "message": "Borah Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC639", - "message": "Sethia Wali Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC64", - "message": "Baba Gadila Sham colony (Succhi Pind)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC640", - "message": "Dhankian Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC641", - "message": "Jairath Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC642", - "message": "Bagh Ahluwalia", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC643", - "message": "Kamaliya Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC644", - "message": "Gobind Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC645", - "message": "New Gobind Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC646", - "message": "Dilbagh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC647", - "message": "120' Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC648", - "message": "Shastri Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC649", - "message": "Old Shastri Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC65", - "message": "Deep Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC650", - "message": "Old Dusshara Ground", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC651", - "message": "Surya Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC652", - "message": "Basti Gujan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC653", - "message": "Ambedkar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC654", - "message": "Shah Kuli Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC655", - "message": "Virdi Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC656", - "message": "Valmiki Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC657", - "message": "Vada Vehra", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC658", - "message": "Sunyara Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC659", - "message": "Jangra Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC66", - "message": "New Upkar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC660", - "message": "Machi Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC661", - "message": "Harkrishan Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC662", - "message": "Manjit Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC663", - "message": "New Dilbagh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC664", - "message": "Dilbagh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC665", - "message": "Lahoria Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC666", - "message": "Kot Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC667", - "message": "Binda Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC668", - "message": "Doriya Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC669", - "message": "Board Wali Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC67", - "message": "Moh Kot Ram Dass ( Abadi )", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC670", - "message": "Main Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC671", - "message": "Shibu Mandir Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC672", - "message": "New Adarsh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC673", - "message": "J.P.Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC674", - "message": "Adarsh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC675", - "message": "J.P. Nagar Extension", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC676", - "message": "Basti Nau", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC677", - "message": "Krishan Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC678", - "message": "Basti Mithu", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC679", - "message": "Patwar Khana", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC68", - "message": "Karol Bagh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC680", - "message": "Conal Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC681", - "message": "Harbans Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC682", - "message": "New Harbans Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC683", - "message": "New Harbans Nagar Ext.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC684", - "message": "Adarsh Nagar up to Satyam Hospital Street", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC685", - "message": "New Vijay Nagar Left Side", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC686", - "message": "Tagore Nagar Right Side St.NO.7", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC687", - "message": "Dyal Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC688", - "message": "Gujral Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC689", - "message": "Shakti Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC69", - "message": "Rail Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC690", - "message": "Vijay Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC691", - "message": "S.U.S Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC692", - "message": "Ajit Singh Nagar up to Nakodar Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC693", - "message": "Niwan Suraj Gunj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC694", - "message": "Islam Gunj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC695", - "message": "Islamabad", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC696", - "message": "Mission Compound Left Side Batra Hospital", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC697", - "message": "Makhdoom Pura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC698", - "message": "Dhobi Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC699", - "message": "Mohalla Pacca Bagh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC7", - "message": "Toor Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC70", - "message": "Patel Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC700", - "message": "Ram Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC701", - "message": "Saidan Gate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC702", - "message": "Chowk Kade Shah", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC703", - "message": "Batakh Wala Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC704", - "message": "Rainak Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC705", - "message": "Naya Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC706", - "message": "Shaheed Udham Singh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC707", - "message": "Flats", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC708", - "message": "Civil Hospital", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC709", - "message": "E.S.I Hospital", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC71", - "message": "Sangam Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC710", - "message": "E.S.I Hospital Flats", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC711", - "message": "Milap Chowk to G.P.O", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC712", - "message": "G.P.O to Shastri Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC713", - "message": "Shastri to Milap Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC714", - "message": "Milap to Sunrise Hotal", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC715", - "message": "Sunrise Hotal to Partap Bagh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC716", - "message": "Partap Bagh to Phagwara Gate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC717", - "message": "Naya Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC718", - "message": "Saiden Gate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC719", - "message": "Peer Bodla Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC72", - "message": "Preet Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC720", - "message": "Khazuria Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC721", - "message": "Guru Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC722", - "message": "Neehya Band Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC723", - "message": "Jybal Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC724", - "message": "Neem Wali Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC725", - "message": "Tanki Wali Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC726", - "message": "Khodiya Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC727", - "message": "Kotpakshiya", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC728", - "message": "Hotel Raj Mahal back Side Gurudawara and Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC729", - "message": "Pakka Bagh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC73", - "message": "Mann Singh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC730", - "message": "Chohal Bagh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC731", - "message": "Hindsamachar Ground", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC732", - "message": "Mina Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC733", - "message": "Tikki Bagh Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC734", - "message": "Ucha Suraj Gunj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC735", - "message": "Jyoti chowk to preet Hotel", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC736", - "message": "Charanjit Pura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC737", - "message": "Ajit Pura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC738", - "message": "Jatt Pura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC739", - "message": "Valmiki Gate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC74", - "message": "Suchi Pind", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC740", - "message": "Malka Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC741", - "message": "Mohindru Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC742", - "message": "Mitha Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC743", - "message": "Telwali Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC744", - "message": "Chota Ali Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC745", - "message": "Alli Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC746", - "message": "Bansa Wala Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC747", - "message": "Chajju Ram Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC748", - "message": "Kotwali Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC749", - "message": "Malora Muhalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC75", - "message": "Indian Oil Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC750", - "message": "Nauhrian Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC751", - "message": "Kot Bahadur Khan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC752", - "message": "Sheikhan Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC753", - "message": "Sudan Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC754", - "message": "Deen Dayal Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC755", - "message": "Prem Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC756", - "message": "New Prem Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC757", - "message": "Sat Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC758", - "message": "Chandan Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC759", - "message": "Fateh Puri", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC76", - "message": "Green County", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC760", - "message": "Vikrampura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC761", - "message": "Subash Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC762", - "message": "Partap Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC763", - "message": "Purani Kachehri", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC764", - "message": "Piplan Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC765", - "message": "Chadhian Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC766", - "message": "Lawan Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC767", - "message": "Charjian Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC768", - "message": "Mitha Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC769", - "message": "Bhairon Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC77", - "message": "Ladhewali Pind", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC770", - "message": "Quilla Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC771", - "message": "Qazi Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC772", - "message": "Khingran Gate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC773", - "message": "Mughlan Dhiki", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC774", - "message": "Prem Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC775", - "message": "Purian Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC776", - "message": "Sehglan Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC777", - "message": "Modian Tod", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC778", - "message": "Thapra Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC779", - "message": "Mai Hiran Gate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC78", - "message": "Chokan Kalan Pind", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC780", - "message": "Phagwara Gate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC781", - "message": "Rasta Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC782", - "message": "Biliya Mandir", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC783", - "message": "Talhi Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC784", - "message": "Baghia Whra", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC785", - "message": "Quda Shah Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC786", - "message": "Phir Bodhla Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC787", - "message": "Kalo Vani Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC788", - "message": "Atari Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC789", - "message": "Nacha Badh Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC79", - "message": "Nagal Shama Pind", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC790", - "message": "Kanchia Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC791", - "message": "Qazi Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC792", - "message": "Qilla Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC793", - "message": "Shivraz Garh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC794", - "message": "Panj Peer Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC795", - "message": "Bhagat Singh Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC796", - "message": "Railway Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC797", - "message": "Rishi Nagar Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC798", - "message": "Partap Bagh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC799", - "message": "Awa Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC8", - "message": "Navjot Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC80", - "message": "Datar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC800", - "message": "Kot Kishan Chand", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC801", - "message": "Jagat Pura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC802", - "message": "Dhan Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC803", - "message": "Rishi Nagar (5 Gali)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC804", - "message": "Kishanpura (5 Gali)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC805", - "message": "Inderparsth Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC806", - "message": "Arya Samaj Mandir", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC807", - "message": "Bheem Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC808", - "message": "Sansi Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC809", - "message": "Dolatpuri", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC81", - "message": "Khehra Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC810", - "message": "Kapoor Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC811", - "message": "Ajit Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC812", - "message": "Amrik Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC813", - "message": "New Ajit Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC814", - "message": "New Amrik Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC815", - "message": "Baba Math Shah", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC816", - "message": "Santoshi Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC817", - "message": "Madrasi Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC818", - "message": "Qazi Mandi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC819", - "message": "Kishan Pura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC82", - "message": "Kabir Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC820", - "message": "Hoshiarpur Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC821", - "message": "Old Hoshiarpur Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC822", - "message": "Baldev Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC823", - "message": "New Baldev Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC824", - "message": "Baba Balak Nath Market", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC825", - "message": "Madrasi Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC826", - "message": "Ravidass School Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC827", - "message": "Dhonka Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC828", - "message": "Prithvi Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC829", - "message": "New Prithvi Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC83", - "message": "Kabir Avenue Extension", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC830", - "message": "Lambapind Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC831", - "message": "Dutta Street", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC832", - "message": "Raman Shiv Mandir Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC833", - "message": "Ajit Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC834", - "message": "Balmiki Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC835", - "message": "Vivek Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC836", - "message": "New Vivek Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC837", - "message": "Arjun Singh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC838", - "message": "Jaimal Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC839", - "message": "Durga Mandir Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC84", - "message": "Punjab Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC840", - "message": "Vinay Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC841", - "message": "Akash Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC842", - "message": "Arjun Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC843", - "message": "Jaimal Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC844", - "message": "Upkar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC845", - "message": "New Upkar Nargar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC846", - "message": "Ghandi Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC847", - "message": "New Ghandi Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC848", - "message": "Chakk Hussaina", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC849", - "message": "Hoshiarpur Road Lamba Pind(Left Side)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC85", - "message": "Punjab Avenue Extension", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC850", - "message": "Muslim Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC851", - "message": "New Vinay Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC852", - "message": "Hans Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC853", - "message": "New Santokhpura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC854", - "message": "Durga Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC855", - "message": "Sarabha Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC856", - "message": "Guru Ram Dass Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC857", - "message": "Niwi Abadi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC858", - "message": "Lakshmipura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC859", - "message": "New Lakshmipura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC86", - "message": "Dhaliwal Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC860", - "message": "Vij Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC861", - "message": "Sant Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC862", - "message": "Bhagatpura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC863", - "message": "Jeet Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC864", - "message": "Vikaspuri", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC865", - "message": "New Vikaspuri", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC866", - "message": "Ambika Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC867", - "message": "B.D.Steel", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC868", - "message": "Santokhpura Nivi Abadi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC869", - "message": "Basti Bhure Kha", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC87", - "message": "Himachal Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC870", - "message": "Shah Sikandar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC871", - "message": "Ram Gharia School", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC872", - "message": "Preet Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC873", - "message": "Basant Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC874", - "message": "New Basant Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC875", - "message": "Aman Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC876", - "message": "New Aman Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC877", - "message": "New colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC878", - "message": "Kamal Park", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC879", - "message": "Preet Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC88", - "message": "Green Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC880", - "message": "New Preet Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC881", - "message": "Sodal Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC882", - "message": "Sidh Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC883", - "message": "Ashok Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC884", - "message": "Ramco Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC885", - "message": "New Sodal Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC886", - "message": "Mathura Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC887", - "message": "Kot Baba Deep Singh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC888", - "message": "Tobari Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC889", - "message": "Tanda Road Hanuman Mandir Chowk to Tanda Road Railway Crossing", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC89", - "message": "Sunshine Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC890", - "message": "Shah Sikandar Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC891", - "message": "Kailash Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC892", - "message": "New Kailash Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC893", - "message": "New Kailash Nagar Ext.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC894", - "message": "Gobind Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC895", - "message": "New Gobind Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC896", - "message": "J.M.C Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC897", - "message": "Gujja Peer Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC898", - "message": "Amar Garden", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC899", - "message": "Saipur Kalan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC9", - "message": "New Guru Amar Das Extension Paschim", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC90", - "message": "Silver Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC900", - "message": "Sanjay Gandhi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC901", - "message": "Dada Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC902", - "message": "Saini Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC903", - "message": "Chotta Saipur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC904", - "message": "Hari Singh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC905", - "message": "Shashi Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC906", - "message": "Lathi Mar Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC907", - "message": "Sodal Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC908", - "message": "Gujja Peer Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC909", - "message": "Sodal Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC91", - "message": "Randhawa Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC910", - "message": "Laxmi Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC911", - "message": "Kali Mata Mandir Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC912", - "message": "Bhagat Singh Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC913", - "message": "Baba Balak Nath Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC914", - "message": "Shiv Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC915", - "message": "Canal Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC916", - "message": "Industrial Area", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC917", - "message": "Dada Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC918", - "message": "Chota Saipur Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC919", - "message": "Shiv Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC92", - "message": "Lahora Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC920", - "message": "Brij Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC921", - "message": "Gajji Gulla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC922", - "message": "Parbhat Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC923", - "message": "Ram Nagar Railway", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC924", - "message": "Crossing to Gajji Gujja Chowk Left Side", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC925", - "message": "Industrial Area Ext.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC926", - "message": "Canal Industrial Complex", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC927", - "message": "Gandhi Camp", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC928", - "message": "Gurdev Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC929", - "message": "Gopal Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC93", - "message": "Nanak Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC930", - "message": "Satnam Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC931", - "message": "Sawan Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC932", - "message": "Valmiki Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC933", - "message": "New Grain Market", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC934", - "message": "Jain Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC935", - "message": "New Gopal Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC936", - "message": "Neela Mahal", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC937", - "message": "Mohalla Krar Khan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC938", - "message": "Sangra Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC939", - "message": "Teacher Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC94", - "message": "Basant Hill", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC940", - "message": "Krishna Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC941", - "message": "Tobri Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC942", - "message": "Guru Nanak Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC943", - "message": "Harnamdasspura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC944", - "message": "Kot Lakhpat Rai", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC945", - "message": "Banda Bahadur Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC946", - "message": "Kapurthala Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC947", - "message": "Bagh Baharia", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC948", - "message": "Gulab Devi Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC949", - "message": "Bulton Park Cricket Stadium", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC95", - "message": "University Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC950", - "message": "Durga Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC951", - "message": "B.S.F Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC952", - "message": "Gopal Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC953", - "message": "New Colony Gopal Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC954", - "message": "Main Road Old Sabzi Mandi to Burton Park", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC955", - "message": "Sangat Singh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC956", - "message": "Balwant Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC957", - "message": "Bandha Bhadur Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC958", - "message": "Sarswati Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC959", - "message": "PNT Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC96", - "message": "Moti Bagh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC960", - "message": "Bagh Bharia", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC961", - "message": "Bhagwan Dass Pura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC962", - "message": "Dhiman Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC963", - "message": "Adresh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC964", - "message": "Natha Bagechi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC965", - "message": "Misson Compound", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC966", - "message": "Talab Bharia", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC967", - "message": "Jail Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC968", - "message": "Kabir Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC969", - "message": "Kachari Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC97", - "message": "Park Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC970", - "message": "Gandhi Camp 3 Lain", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC971", - "message": "Windsor Park", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC972", - "message": "Rose Park", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC973", - "message": "Jain Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC974", - "message": "Gupta Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC975", - "message": "Hardev Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC976", - "message": "Guru Nanak Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC977", - "message": "Guru Arjun Dev Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC978", - "message": "Sarswati Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC979", - "message": "Surjit Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC98", - "message": "Chopra Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC980", - "message": "Malak Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC981", - "message": "Kalyani Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC982", - "message": "Suriya Vihar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC983", - "message": "Vivekananda Park", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC984", - "message": "Ariya Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC985", - "message": "Pingalwara", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC986", - "message": "Gujrati Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC987", - "message": "Shardha Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC988", - "message": "Sawarn Park", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC989", - "message": "Ram Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC99", - "message": "Dr. Ambedkar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC990", - "message": "Chhota Gandhi Nagar Camp", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC991", - "message": "Friends Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC992", - "message": "Seth Hukam Chand Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC993", - "message": "Greater Kailash", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC994", - "message": "Moti Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC995", - "message": "New Moti Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC996", - "message": "Tagore Park/ Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC997", - "message": "Professor Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC998", - "message": "Maqsudan Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_JLC999", - "message": "Bohar Wala Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_SU166", - "message": "Mohalla Majoran ", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_SUN02", - "message": "Aggarsain Chowk to Mal Godown - Both Sides - Area3", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_SUN04", - "message": "Ajit Nagar - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_SUN08", - "message": "ATAR SINGH COLONY - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_SUN105", - "message": "Jaura Khoo to Saraffa Bazaar (Southern Side) - Are...", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_SUN109", - "message": "Kailash Parbat - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_SUN11", - "message": "Back Side 33 KVA Grid Patiala Road - Area 1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_SUN12", - "message": "Back Side 66 KVA Grid Patiala Road - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_SUN13", - "message": "Back Side Civil Courts Colony - Area 1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_SUN132", - "message": "Mohalla Akalgarh Gurudwara - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_SUN134", - "message": "Mohalla Bhadra Kali Mandir - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_SUN136", - "message": "Mohalla Bhatta Wala - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_SUN137", - "message": "Mohalla Bhawdeyan Wala - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_SUN138", - "message": "Mohalla Bhojeka (both sides) - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_SUN144", - "message": "Mohalla Kohliyan - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_SUN150", - "message": "Mohalla Rajan Wala (both sides) - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_SUN153", - "message": "Mohalla Singhkiyan (Nothern Side) - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_SUN158", - "message": "Mohalla-Kashayian wala - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_SUN161", - "message": "Mohalla-Singhkiya wala - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_SUN167", - "message": "Mohalla Angaria wala - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_SUN169", - "message": "Mohalla Banda Patti - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_SUN170", - "message": "Mohalla Bhai Ka - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_SUN173", - "message": "Mohalla Ganj Sheeda - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_SUN176", - "message": "Mohalla Kango - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_SUN178", - "message": "Mohalla Singh kia - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_SUN18", - "message": "Back Side Naina Devi Mandir - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_SUN194", - "message": "Near Gurudwara Pehali Patshahi Udam Singh Road - A...", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_SUN20", - "message": "Backside Brijbala Hospital - Area3", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_SUN23", - "message": "BACKSIDE OLD GRAIN MARKET - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_SUN25", - "message": "Bakhtaur Nagar - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_SUN31", - "message": "Bhai Mool Chand Sahib Colony - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_SUN35", - "message": "Bigharwal Chowk to Railway Station - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_SUN40", - "message": "Chandar Colony Biggarwal Road - Area 2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_SUN41", - "message": "Charjan Wala Mohalla - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_SUN45", - "message": "Cinema Road - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_SUN46", - "message": "Cinema Road to Ali Bazaar (Nothern Side) - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_SUN49", - "message": "College Road (Southern side) - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_SUN54", - "message": "Deedar Tailor to Mata Modi Park- West Side - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_SUN55", - "message": "Deep Rice Mill Road - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_SUN56", - "message": "Dental College - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_SUN62", - "message": "Ekta Colony (Southern Side) - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_SUN75", - "message": "Gaushala, Arora Colony - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_SUN80", - "message": "Gugga Maadi Road (east side) - Area2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANTS_MOHALLA_SUN84", - "message": "Gurudwara Niai Sahib Street 1 - Area1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_ID", - "message": "Tenant Id", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_AMRITSAR", - "message": "Amritsar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_CITYA", - "message": "City A", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_CITYB", - "message": "City B", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_CITYC", - "message": "City C", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_CITYONE", - "message": "City One", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_CITYTHREE", - "message": "City Three", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_CITYTWO", - "message": "City Two", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_CITY_A", - "message": "City A", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC476", - "message": "Main Road Abadpura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC477", - "message": "Gali No. 2 To Gali No. 6 ", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC478", - "message": "Preet Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC479", - "message": "Rameshwar Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC480", - "message": "Sh. Guru Ravidass Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC481", - "message": "Tubewell wali Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC482", - "message": "Labour Court Gali Panj Peer", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC483", - "message": "Maharishi Valmiki Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC484", - "message": "Taneja New Abadpura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC485", - "message": "Avtar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC486", - "message": "New Avtar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC487", - "message": "New Suraj Ganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC488", - "message": "Pishori Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC489", - "message": "Naqvi Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC490", - "message": "Dairy Kalu Ram-O Band Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC491", - "message": "Bhargo Camp-Add", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC492", - "message": "Pishori Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC493", - "message": "Link Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC494", - "message": "Abadpura Gali No.1 to 2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC495", - "message": "New Suraj Ganj –west", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC496", - "message": "Gali No-10-B-11-B", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC497", - "message": "Bhargo Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC498", - "message": "Bhargo Camp", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC499", - "message": "Ravidass Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC500", - "message": "Channan Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC501", - "message": "Boota Mandi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC502", - "message": "Silver Oak Apartments", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC503", - "message": "Nakodar Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC504", - "message": "Chappli Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC505", - "message": "Sant Pura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC506", - "message": "Arya Samaj Mandir", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC507", - "message": "Valmiki Mandir", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC508", - "message": "Chapal Chowk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC509", - "message": "Kabir Mandir", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC510", - "message": "Gain Giri Mandir", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC511", - "message": "Nirankari Bhawan Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC512", - "message": "Ravidass Dham", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC513", - "message": "Kanth Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC514", - "message": "State Bank Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC515", - "message": "Ravidass Mandir", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC516", - "message": "Sharif Pura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC517", - "message": "Tokri Chowk Bhargo Camp", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC518", - "message": "Gali Mirasiya Wali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC519", - "message": "Gali Somnath Aara Wala", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC520", - "message": "Prem Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC521", - "message": "Gali Ravi Karyana Store", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC522", - "message": "Gali Sharma Model School", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC523", - "message": "Chune Wali Gali Boota Mandi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC524", - "message": "Gali Pawan Koushal", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC525", - "message": "Bhargo Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC526", - "message": "Nive Passe Bhargo Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC527", - "message": "Azad Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC528", - "message": "New Suraj Ganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC529", - "message": "New Suraj Ganj (West)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC530", - "message": "Model House Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC531", - "message": "Main Bazar Bhargo", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC532", - "message": "Mohalla Amar Saw Mill", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC533", - "message": "Bhargo Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC534", - "message": "Shamshan Ghat Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC535", - "message": "Mohalla Vari Vatt", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC536", - "message": "Bhargo Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC537", - "message": "Tej Mohan Nagar Gali No-5 to Gali No-11", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC538", - "message": "New Ashok Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC539", - "message": "Narayan Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC540", - "message": "Ashok Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC541", - "message": "New Sant Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC542", - "message": "Sant Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC543", - "message": "Nijatam Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC544", - "message": "Chouhan Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC545", - "message": "Ganesh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC546", - "message": "Basti Nau", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC547", - "message": "Bank Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC548", - "message": "Chaar Marla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC549", - "message": "Block-A,B,C.D", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC550", - "message": "Bhagat Singh Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC551", - "message": "Rajput Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC552", - "message": "Taranwali Gali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC553", - "message": "Mohalla Kot", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC554", - "message": "Uttam Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC555", - "message": "Mohalla Chaiaam", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC556", - "message": "Tej Mohan Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC557", - "message": "Sant Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC558", - "message": "Siddhartha Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC559", - "message": "New Abadi Jallowal", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC560", - "message": "Kay Pee Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC561", - "message": "New Model House", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC562", - "message": "Model Gram Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC563", - "message": "Gahi Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC564", - "message": "Jaina Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC565", - "message": "New Ghai Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC566", - "message": "Chiragpura Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC567", - "message": "New Deol Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC568", - "message": "New Dashmesh Nagar Block-A", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC569", - "message": "New Dashmesh Nagar Block-C", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC570", - "message": "Tilak Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC571", - "message": "Kartar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC572", - "message": "New Kartar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC573", - "message": "Udye Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC574", - "message": "Deol Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC575", - "message": "New Deol Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC576", - "message": "Aman Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC577", - "message": "Major Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC578", - "message": "Pink City Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC579", - "message": "Kot Sadiq Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC580", - "message": "Khara Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC581", - "message": "Kot Sadiq", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC582", - "message": "Mast Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC583", - "message": "Thind Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC584", - "message": "Sai Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC585", - "message": "BT Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC586", - "message": "Kanshi Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC587", - "message": "Green Avenue", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC588", - "message": "Geeta Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC589", - "message": "New Geeta Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC590", - "message": "Ishwar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC591", - "message": "New Dashmesh Nagar B Block", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC592", - "message": "Dordarshan Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC593", - "message": "Tower Enclave Phase 2nd", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC594", - "message": "Hamilton Tower", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC595", - "message": "Guru Ravidass Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC596", - "message": "New Ravidass Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC597", - "message": "Shiva Ji Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC598", - "message": "New Shiva Ji Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC599", - "message": "Lasuri Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC600", - "message": "New Lasuri Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC601", - "message": "Begampura Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC602", - "message": "Main Adda Basti Danishmandan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC603", - "message": "Main Bazar Basti Danishmandan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC604", - "message": "Valmiki Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC605", - "message": "Chandigarh Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC606", - "message": "New Chandigarh Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC607", - "message": "Chungi Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC608", - "message": "Chungi No-9", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC609", - "message": "Tagri Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC610", - "message": "Guru Enclave", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC611", - "message": "Surjit Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC612", - "message": "Basti Sheikh + Danishmandan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC613", - "message": "Kattra Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JZN1", - "message": "ZONE_WEST", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JZN2", - "message": "ZONE_NORTH", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JZN3", - "message": "ZONE_CENTRAL", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JZN4", - "message": "ZONE_CANTT", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_OD_ANGUL", - "message": "Angul", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_OD_BALESORE", - "message": "Balasore", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_OD_BANKI", - "message": "Banki", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_OD_BERHMPURMOUZA", - "message": "Mouza of Berhmpurm (Beyond Municipal Area)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_OD_BHUBANESWARMOUZA", - "message": "Mouza of Bhubaneswar (Beyond Municipal Area)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_OD_BIRAMITRAPUR", - "message": "Biramitrapur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_OD_BRHMAPUR", - "message": "Brhmapur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_OD_BURLA", - "message": "Burla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_OD_CHATRAPUR", - "message": "Chatrapur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_OD_CUTTACK", - "message": "Cuttack", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_OD_CUTTACKMOUZA", - "message": "Mouza of Cuttack (Beyond Municipal Area)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_OD_Choudwar", - "message": "Choudwar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_OD_DEHRADUN", - "message": "Dehradun", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_OD_DHENKANAL", - "message": "Dhenkanal", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_OD_GOPALPUR", - "message": "Gopalpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_OD_HARIDWAR", - "message": "Haridwar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_OD_HIRAKUD", - "message": "Hirakud", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_OD_JATNI", - "message": "Jatni", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_OD_KALINGANAGARMOUZA", - "message": "Mouza of Kalinga Nagar (Beyond Municipal Area)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_OD_KHURDA", - "message": "Khurda", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_OD_KONARK", - "message": "Konark", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_OD_PARADIP", - "message": "Paradip", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_OD_PARADIPMOUZA", - "message": "Mouza of Paradip (Beyond Municipal Area)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_OD_PURI", - "message": "Puri", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_OD_PURIMOUZA", - "message": "Mouza of Puri (Beyond Municipal Area)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_OD_RAJGANGPUR", - "message": "Rajgangpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_OD_ROURKELA", - "message": "Rourkela", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_OD_ROURKELAMOUZA", - "message": "Mouza of Rourkela (Beyond Municipal Area)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_OD_SAMBALPUR", - "message": "Sambalpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_OD_SAMBALPURMOUZA", - "message": "Mouza of Sambalpur (Beyond Municipal Area)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_OD_SUNDARGARH", - "message": "Sundargarh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_OD_TALCHER", - "message": "Talcher", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_OD_TAMDAMOUZA", - "message": "Mouza of Tamda (Beyond Municipal Area)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_OD_VYASANAGAR", - "message": "Vyasanagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB", - "message": "Punjab", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_ABOHAR", - "message": "Abohar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_ADAMPUR", - "message": "Adampur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_AHMEDGARH", - "message": "Ahmedgarh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_AJNALA", - "message": "Ajnala", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_ALAWALPUR", - "message": "Alawalpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_AMARGARH", - "message": "Amargarh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_AMLOH", - "message": "Amloh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_AMRITSAR", - "message": "Amritsar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_ANANDPURSAHIB", - "message": "Anandpursahib", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_ARNIWALA", - "message": "Arniwala", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_BADHNIKALAN", - "message": "Badhnikalan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_BAGHAPURANA", - "message": "Baghapurana", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_BALACHAUR", - "message": "Balachaur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_BALIANWALI", - "message": "Balianwali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_BANGA", - "message": "Banga", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_BANUR", - "message": "Banur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_BARETA", - "message": "Bareta", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_BARIWALA", - "message": "Bariwala", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_BARNALA", - "message": "Barnala", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_BASSIPATHANA", - "message": "Bassipathana", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_BATALA", - "message": "Batala", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_BATHINDA", - "message": "Bathinda", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_BEGOWAL", - "message": "Begowal", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_BHADAUR", - "message": "Bhadaur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_BHADSON", - "message": "Bhadson", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_BHAGTABHAI", - "message": "Bhagtabhai", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_BHAIROOPA", - "message": "Bhairoopa", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_BHAWANIGARH", - "message": "Bhawanigarh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_BHIKHI", - "message": "Bhikhi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_BHIKHIWIND", - "message": "Bhikhiwind", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_BHOGPUR", - "message": "Bhogpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_BHUCHOMANDI", - "message": "Bhuchomandi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_BHULATH", - "message": "Bhulath", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_BILGA", - "message": "Bilga", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_BOHA", - "message": "Boha", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_BUDHLADA", - "message": "Budhlada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_CHAMKAURSAHIB", - "message": "Chamkaursahib", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_CHAUNKE", - "message": "Chaunke", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_CHEEMA", - "message": "Cheema", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_DASUYA", - "message": "Dasuya", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_DERABABANANAK", - "message": "Derababananak", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_DERABASSI", - "message": "Derabassi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_DHANAULA", - "message": "Dhanaula", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_DHARAMKOT", - "message": "Dharamkot", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_DHARIWAL", - "message": "Dhariwal", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_DHILWAN", - "message": "Dhilwan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_DHURI", - "message": "Dhuri", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_DINANAGAR", - "message": "Dinanagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_DIRBA", - "message": "Dirba", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_DORAHA", - "message": "Doraha", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_FARIDKOT", - "message": "Faridkot", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_FATEHGARHCHURIAN", - "message": "Fatehgarhchurian", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_FATEHGARHPANJTOOR", - "message": "Fatehgarhpanjtoor", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_FAZILKA", - "message": "Fazilka", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_FEROZEPUR", - "message": "Ferozepur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_GARHDIWALA", - "message": "Garhdiwala", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_GARHSHANKAR", - "message": "Garhshankar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_GHAGGA", - "message": "Ghagga", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_GHANAUR", - "message": "Ghanaur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_GIDDERBAHA", - "message": "Gidderbaha", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_GONIANA", - "message": "Goniana", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_GORAYA", - "message": "Goraya", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_GURDASPUR", - "message": "Gurdaspur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_GURUHARSAHAI", - "message": "Guruharsahai", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_HANDIAYA", - "message": "Handiaya", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_HARIANA", - "message": "Hariana", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_HOSHIARPUR", - "message": "Hoshiarpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_JAGRAON", - "message": "Jagraon", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_JAITU", - "message": "Jaitu", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_JALALABAD", - "message": "Jalalabad", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_JALANDHAR", - "message": "Jalandhar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_JANDIALAGURU", - "message": "Jandialaguru", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_JOGA", - "message": "Joga", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_KAPURTHALA", - "message": "Kapurthala", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_KARTARPUR", - "message": "Kartarpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_KHAMANO", - "message": "Khamano", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_KHANAURI", - "message": "Khanauri", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_KHANNA", - "message": "Khanna", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_KHARAR", - "message": "Kharar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_KHEMKARAN", - "message": "Khemkaran", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_KIRATPUR", - "message": "Kiratpur Sahib", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_KOTFATTA", - "message": "Kotfatta", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_KOTHAGURU", - "message": "Kothaguru", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_KOTISSEKHAN", - "message": "Kotissekhan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_KOTKAPURA", - "message": "Kotkapura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_KOTSHAMIR", - "message": "Kotshamir", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_KURALI", - "message": "Kurali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_LALRU", - "message": "Lalru", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_LEHRAGAGA", - "message": "Lehragaga", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_LEHRAMOHABBAT", - "message": "Lehramohabbat", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_LOHIANKHAS", - "message": "Lohiankhas", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_LONGOWAL", - "message": "Longowal", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_LUDHIANA", - "message": "Ludhiana", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_MACHHIWARA", - "message": "Machhiwara", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_MAHILPUR", - "message": "Mahilpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_MAJITHA", - "message": "Majitha", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_MAKHU", - "message": "Makhu", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_MALERKOTLA", - "message": "Malerkotla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_MALLANWALA", - "message": "Mallanwala", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_MALOUD", - "message": "Maloud", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_MALOUT", - "message": "Malout", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_MALUKA", - "message": "Maluka", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_MAMDOT", - "message": "Mamdot", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_MANDIGOBINDGARH", - "message": "Mandigobindgarh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_MANDIKALAN", - "message": "Mandikalan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_MANSA", - "message": "Mansa", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_MAUR", - "message": "Maur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_MEHATPUR", - "message": "Mehatpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_MEHRAJ", - "message": "Mehraj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_MOGA", - "message": "Moga", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_MOHALI", - "message": "Mohali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_MOONAK", - "message": "Moonak", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_MORINDA", - "message": "Morinda", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_MUDKI", - "message": "Mudki", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_MUKERIAN", - "message": "Mukerian", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_MUKTSAR", - "message": "Muktsar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_MULLANPUR", - "message": "Mullanpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_NABHA", - "message": "Nabha", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_NADALA", - "message": "Nadala", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_NAKODAR", - "message": "Nakodar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_NANGAL", - "message": "Nangal", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_NAROTJAIMALSINGH", - "message": "Narotjaimailsingh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_NATHANA", - "message": "Nathana", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_NAWANSHAHR", - "message": "Nawanshahr", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_NAYAGAON", - "message": "Nayagaon", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_NIHALSINGHWALA", - "message": "Nihalsinghwala", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_NURMAHAL", - "message": "Nurmahal", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_PATHANKOT", - "message": "Pathankot", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_PATIALA", - "message": "Patiala", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_PATRAN", - "message": "Patran", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_PATTI", - "message": "Patti", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_PAYAL", - "message": "Payal", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_PHAGWARA", - "message": "Phagwara", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_PHILLAUR", - "message": "Phillaur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_PUNJAB", - "message": "Punjab", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_QUADIAN", - "message": "Quadian", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_RAHON", - "message": "Rahon", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_RAIKOT", - "message": "Raikot", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_RAJASANSI", - "message": "Rajasansi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_RAJPURA", - "message": "Rajpura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_RAMAN", - "message": "Raman", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_RAMDASS", - "message": "Ramdass", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_RAMPURA", - "message": "Rampura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_RAMPURAPHUL", - "message": "Rampuraphul", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_RAYYA", - "message": "Rayya", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_ROPAR", - "message": "Ropar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_SAHNEWAL", - "message": "Sahnewal", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_SAMANA", - "message": "Samana", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_SAMRALA", - "message": "Samrala", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_SANAUR", - "message": "Sanaur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_SANGATMANDI", - "message": "Sangatmandi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_SANGRUR", - "message": "Sangrur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_SARDULGARH", - "message": "Sardulgarh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_SHAHKOT", - "message": "Shahkot", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_SHAMCHURASI", - "message": "Shamchurasi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_SIRHIND", - "message": "Sirhind", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_SRIHARGOBINDPUR", - "message": "Srihargobindpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_SUJANPUR", - "message": "Sujanpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_SULTANPURLODHI", - "message": "Sultanpurlodhi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_SUNAM", - "message": "Sunam", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_TALWANDIBHAI", - "message": "Talwandibhai", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_TALWANDISABO", - "message": "Talwandisabo", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_TALWARA", - "message": "Talwara", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_TAPA", - "message": "Tapa", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_TARNTARAN", - "message": "Tarntaran", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_TESTING", - "message": "Testing", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_URMARTANDA", - "message": "Urmartanda", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_ZIRA", - "message": "Zira", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_ZIRAKPUR", - "message": "Zirakpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_STATEA", - "message": "State A", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_STATEA_ADDISABABA", - "message": "City F", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_STATEA_AMHARA", - "message": "Ethopia", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_STATEA_BALASORE", - "message": "Balasore", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_STATEA_BALASORE_MUNICIPALITY", - "message": "Balasore", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_STATEA_BERHAMPUR", - "message": "Berhampur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_STATEA_BERHAMPUR_MUNICIPAL_CORPORATION", - "message": "Berhmapur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_STATEA_CITYA", - "message": "City A", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_STATEA_CITYB", - "message": "City B", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_STATEA_CITYC", - "message": "City C", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_STATEA_CITYD", - "message": "City D", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_STATEA_CITYE", - "message": "City E", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_STATEA_CITY_A", - "message": "City A", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_STATEA_CITY_B", - "message": "City B", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_STATEA_CITY_C", - "message": "City C", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_STATEA_CITY_D", - "message": "City D", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_STATEA_CITY_E", - "message": "City E", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_STATEA_DHENKANAL", - "message": "Dhenkanal", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_STATEA_DIREDAWA", - "message": "City H", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_STATEA_OROMIA", - "message": "City I", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_VYASANAGAR", - "message": "Vyasanagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD", - "message": "ZONE_WEST", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD1", - "message": "WARD_1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD10", - "message": "WARD_10", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD11", - "message": "WARD_11", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD12", - "message": "WARD_12", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD13", - "message": "WARD_13", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD14", - "message": "WARD_14", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD15", - "message": "WARD_15", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD16", - "message": "WARD_16", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD17", - "message": "WARD_17", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD18", - "message": "WARD_18", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD19", - "message": "WARD_19", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD2", - "message": "WARD_2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD20", - "message": "WARD_20", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD21", - "message": "WARD_21", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD22", - "message": "WARD_22", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD23", - "message": "WARD_23", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD24", - "message": "WARD_24", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD25", - "message": "WARD_25", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD26", - "message": "WARD_26", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD27", - "message": "WARD_27", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD28", - "message": "WARD_28", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD29", - "message": "WARD_29", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD3", - "message": "WARD_3", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD30", - "message": "WARD_30", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD31", - "message": "WARD_31", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD32", - "message": "WARD_32", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD33", - "message": "WARD_33", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD34", - "message": "WARD_34", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD35", - "message": "WARD_35", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD36", - "message": "WARD_36", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD37", - "message": "WARD_37", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD38", - "message": "WARD_38", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD39", - "message": "WARD_39", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD4", - "message": "WARD_4", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD40", - "message": "WARD_40", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD41", - "message": "WARD_41", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD42", - "message": "WARD_42", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD43", - "message": "WARD_43", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD44", - "message": "WARD_44", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD45", - "message": "WARD_45", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD46", - "message": "WARD_46", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD47", - "message": "WARD_47", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD48", - "message": "WARD_48", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD49", - "message": "WARD_49", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD5", - "message": "WARD_5", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD50", - "message": "WARD_50", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD51", - "message": "WARD_51", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD52", - "message": "WARD_52", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD53", - "message": "WARD_53", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD54", - "message": "WARD_54", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD55", - "message": "WARD_55", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD56", - "message": "WARD_56", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD57", - "message": "WARD_57", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD58", - "message": "WARD_58", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD59", - "message": "WARD_59", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD6", - "message": "WARD_6", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD60", - "message": "WARD_60", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD61", - "message": "WARD_61", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD62", - "message": "WARD_62", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD63", - "message": "WARD_63", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD64", - "message": "WARD_64", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD65", - "message": "WARD_65", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD66", - "message": "WARD_66", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD67", - "message": "WARD_67", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD68", - "message": "WARD_68", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD69", - "message": "WARD_69", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD7", - "message": "WARD_7", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD70", - "message": "WARD_70", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD71", - "message": "WARD_71", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD72", - "message": "WARD_72", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD73", - "message": "WARD_73", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD74", - "message": "WARD_74", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD75", - "message": "WARD_75", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD76", - "message": "WARD_76", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD77", - "message": "WARD_77", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD78", - "message": "WARD_78", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD79", - "message": "WARD_79", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD8", - "message": "WARD_8", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD80", - "message": "WARD_80", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_WARD9", - "message": "WARD_9", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_pb_amritsar", - "message": "Amritsar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_pg.cityA", - "message": "City A", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_pg.cityB", - "message": "City B", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_pg.cityC", - "message": "City C", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_pg.cityD", - "message": "City D", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_pg.citya", - "message": "City A", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_pg.cityb", - "message": "City B", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_pg.cityc", - "message": "City C", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_pg.cityd", - "message": "City D", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_pg.citye", - "message": "City D", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANT_CITY_A", - "message": "City A", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TEST1", - "message": "egdhgfjhfjhgj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TEST_RESULT_NOT_AS_PER_BENCHMARKS_FOR_LAB", - "message": "Test result not as per benchmarks for the lab", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TEST_RESULT_NOT_SUBMITTED", - "message": "Test result not submitted.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TEST_RESULT_NOT_SUBMTTED", - "message": "Test result not submitted.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "THE_IA_SHALL_BE_RESPONSIBLE_FOR_EXECUTION_OF_THE_ENTIER_WO RK_WITH_THE_TECHNICAL_SUPPORT_OF_ENGINEERING_IN_CHARGE_OF_ THE_PROJECT_CONCERNED", - "message": "The IA shall be responsible for execution of the entire work with the technical support of engineer in-charge of the project concerned.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "THE_IA_SHALL_BE_RESPONSIBLE_FOR_EXECUTION_OF_THE_ENTIER_WORK_WITH_THE_TECHNICAL_SUPPORT_OF_ENGINEERING_IN_CHARGE_OF_THE_PROJECT_CONCERNED", - "message": "The IA shall be responsible for execution of the entire work with the technical support of engineer in-charge of the project concerned.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TIME_ANSWER_TYPE", - "message": "Time", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TIP_DSS_FSM_TOTAL_REQUESTS_FROM_GP", - "message": "Applications from Grama Panchayat", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TIP_DSS_MUKTA_MUSTER_ROLLS", - "message": "Muster Roll Status", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TIP_DSS_PT_SLA_ACHIEVED", - "message": "(Total applications approved in stipulated time / Total applications approved) x 100", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TIP_NATIONAL_DSS_OVERVIEW_CITIZEN_FEEDBACK_SCORE", - "message": "(Sum of citizen ratings / total number of request for which the rating was provided)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TIP_NATIONAL_DSS_OVERVIEW_PENDANCY", - "message": "(Total applications received – Total applications resolved / Total applications received) x 100", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TIP_NATIONAL_DSS_PT_CITIZEN_FEEDBACK_SCORE", - "message": "(Sum of citizen ratings / total number of request for which the rating was provided)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TIP_NATIONAL_DSS_PT_CITIZEN_SERVICE_DELIVERY_INDEX", - "message": "((0.5 x Aggregated SLA) + ( 0.5 x Citizen Feedback score%))", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TIP_NATIONAL_DSS_PT_PENDANCY", - "message": "(Total applications received – Total applications resolved / Total applications received) x 100", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TIP_NATIONAL_DSS_PT_SLA_ACHIEVED", - "message": "(Total applications approved in stipulated time / Total applications approved) x 100", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL", - "message": "Trade Licence", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL Daily Collection report", - "message": "Trade License Daily Collection report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TLAPPLICATIONSTATUSREPORT", - "message": "Tl Application status report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_ACCESSORY_UNIT", - "message": "Accessory Unit", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_ACC_1", - "message": "Air Compressor", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_ACTION_RESUBMIT", - "message": "Re-Submit Application", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_ADD_ASSIGNMENT", - "message": "ADD ASSIGNMENT", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_ADD_HOC_CHARGES_POPUP_BUTTON_CANCEL", - "message": "CANCEL", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_APPLICATION", - "message": "Application", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_APPLICATIONTYPE.NEW", - "message": "New", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_APPLICATIONTYPE.RENEWAL", - "message": "Renewal", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_APPLICATION_MARKED_SUCCESS", - "message": "Application has been marked successfully", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_APPLICATION_NO_CODE", - "message": "Application No. {0}", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_APPLICATION_RESUBMIT_SUCCESS_MESSAGE_MAIN", - "message": "Application Re-Submitted Successfully", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_APPLICATION_RESUBMIT_SUCCESS_MESSAGE_SUB", - "message": "A notification regarding Application Re Submission has been sent to trade owner at registered Mobile No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_APPLIED", - "message": "Applied", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_APPROVAL_CHECKLIST_BUTTON_UP_FILE", - "message": "Attach Supporting Documents", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_APPROVAL_CHECKLIST_COMMENTS_LABEL", - "message": "Comments", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_APPROVAL_CHECKLIST_HEAD", - "message": "Verification Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_APPROVAL_UPLOAD_HEAD", - "message": "Supporting Documents", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_APPROVAL_UPLOAD_SUBHEAD", - "message": "Only .jpg and .pdf files. 5MB max file size.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_BUTTON_UPLOAD FILE", - "message": "Upload File", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_BUTTON_UPLOAD_FILE", - "message": "Upload File", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_CANCEL_CHECKLIST_HEAD", - "message": "Cancellation Remarks", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_CERTIFICATE", - "message": "TL Certificate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_CITIZEN_SELECT", - "message": "SELECT", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_COMMON_BUTTON_BACK", - "message": "BACK", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_COMMON_BUTTON_CITIZEN_MAKE_PAYMENT", - "message": "MAKE PAYMENT", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_COMMON_BUTTON_HOME", - "message": "GO TO HOME", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_COMMON_BUTTON_NXT_STEP", - "message": "Next Step", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_COMMON_BUTTON_PREV_STEP", - "message": "Previous Step", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_COMMON_BUTTON_PROC_PMT", - "message": "PROCEED TO PAYMENT", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_COMMON_DOCS", - "message": "Documents", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_COMMON_EDIT_UPDATE_MESSAGE", - "message": "Rates will be updated on submission", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_COMMON_NO", - "message": "No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_COMMON_RENEW_LIC", - "message": "Renew Trade License", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_COMMON_SAME_AS_PROPERTY_OWNERS", - "message": "Same as property owner's", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_COMMON_STATUS_APPLIED", - "message": "Applied", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_COMMON_TABLE_COL_APP_DATE", - "message": "Application Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_COMMON_TABLE_COL_APP_NO", - "message": "Application No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_COMMON_TABLE_COL_APP_TP", - "message": "Application Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_COMMON_TABLE_COL_APP_TYPE", - "message": "Application Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_COMMON_TABLE_COL_FIN_YEAR", - "message": "Financial Year", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_COMMON_TABLE_COL_FIN_YR", - "message": "Financial Year", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_COMMON_TABLE_COL_LICENSE_TYPE", - "message": "License Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_COMMON_TABLE_COL_LIC_NO", - "message": "License No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_COMMON_TABLE_COL_OWN_NAME", - "message": "Owner Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_COMMON_TABLE_COL_STATUS", - "message": "Status", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_COMMON_TABLE_COL_TRD_NAME", - "message": "Trade Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_COMMON_TL", - "message": "Trade License", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_COMMON_TOTAL_AMT", - "message": "Total Amount", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_COMMON_TO_DATE_LABEL", - "message": "To Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_COMMON_TR_DETAILS", - "message": "Trade Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_COMMON_YES", - "message": "Yes", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_CONFIRMATION_MESSAGE_MAIN", - "message": "Payment has been collected successfully!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_CONFIRMATION_MESSAGE_SUB", - "message": "A notification regarding Payment Collection has been sent to trade owner at registered Mobile No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_CORRESPONDENCE_ADDRESS", - "message": "Correspondance Address", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_CREATE_TRADE", - "message": "Apply for Trade License", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_CURRENT_OWNER_LABEL", - "message": "Current Owner", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_DATE_LABEL", - "message": "Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_DOB_ERROR_MESSAGE", - "message": "Invalid DOB", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_DOWNLOAD", - "message": "DOWNLOAD", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_Document - 1", - "message": "Document 1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_Document_1", - "message": "Document 1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_FAQ_ANS_ONE", - "message": "You can renew trade licenses at the counter or through the portal. After logging in, search for the relevant trade license in the portal. Then click on link for the trade license that you wish to renew. Next, complete the application for the renewal of Trade License and click submit.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_FAQ_ANS_THREE", - "message": "After you login with your credentials, click on my application. Among all the applications listed, find the one for which status is 'approved' and click on 'View Details'. In the next page, click on the 'Download' button on top right corner. In case of approved applications, TL certiifcate and Payment Receipt will be show in the drop down and click on the relevant one to download.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_FAQ_ANS_THREE_APP_ACKNOWLEDGE", - "message": "In case application is under processing, then you can download an Application Acknowledgement through same methodology.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_FAQ_ANS_TWO", - "message": "You can search for your previous applications by clicking on My Applications in the home screen. Then click on the relevant application card among the list.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_FAQ_QUES_ONE", - "message": "How do I renew my Trade License? ", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_FAQ_QUES_THREE", - "message": "How can I download Trade License Certificate or payment receipts? ", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_FAQ_QUES_TWO", - "message": " How do I search for my application? ", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_FAQ_S", - "message": "FAQs", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_HOME_SEARCH_RESULTS_APP_NO_LABEL", - "message": "Application No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_HOME_SEARCH_RESULTS_APP_STATUS_LABEL", - "message": "Application status", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_HOME_SEARCH_RESULTS_APP_STATUS_PLACEHOLDER", - "message": "Select Application Status", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_HOME_SEARCH_RESULTS_BUTTON_SEARCH", - "message": "Search", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_HOME_SEARCH_RESULTS_TL_NO_LABEL", - "message": "Trade License No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_LICENSE_NO_CODE", - "message": "License No. {0}", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_LICENSE_YEAR_LABEL", - "message": "License year", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_LOCALIZATION_ACCESSORIES", - "message": "Accessories", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_LOCALIZATION_ADHOC_PENALTY", - "message": "Adhoc Penalty", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_LOCALIZATION_ADHOC_REBATE", - "message": "Adhoc Rebate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_LOCALIZATION_AMOUNT_DUE", - "message": "Amount Due", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_LOCALIZATION_APPLICATIONTYPE_DIRECTRENEWAL", - "message": "Direct Renewal", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_LOCALIZATION_APPLICATIONTYPE_NEW", - "message": "New", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_LOCALIZATION_APPLICATIONTYPE_RENEWAL", - "message": "Renewal", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_LOCALIZATION_APPLICATION_NO", - "message": "Application No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_LOCALIZATION_APPLICATION_TYPE", - "message": "Application Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_LOCALIZATION_APPROVED_BY", - "message": "Approved By", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_LOCALIZATION_BANK_NAME_WITH_BRANCH", - "message": "Bank Name With Branch", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_LOCALIZATION_BUILDING_NAME", - "message": "Building Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_LOCALIZATION_COMMISSIONER_OR_EO", - "message": "Commissioner/EO", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_LOCALIZATION_CORPORATION_ADDRESS", - "message": "Municipal Corporation Nawanshahr Nawanshahr Punjab", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_LOCALIZATION_CORPORATION_CONTACT", - "message": "Corporation Contact", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_LOCALIZATION_CORPORATION_EMAIL", - "message": "Corporation email", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_LOCALIZATION_CORPORATION_WEBSITE", - "message": "Corporation website", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_LOCALIZATION_FINANCIAL_YEAR", - "message": "Financial Year", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_LOCALIZATION_G8_RECEIPT_ISSUE_DATE", - "message": "G8 Receipt Issue date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_LOCALIZATION_G8_RECEIPT_NO", - "message": "G8 Receipt No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_LOCALIZATION_GENERATED_BY", - "message": "Generated by", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_LOCALIZATION_HOUSE_DOOR_NO", - "message": "House Door No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_LOCALIZATION_LICENSE_ISSUE_DATE", - "message": "License Issue Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_LOCALIZATION_LICENSE_VALIDITY", - "message": "License Validity", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_LOCALIZATION_LOCALITY", - "message": "Locality", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_LOCALIZATION_NOTE", - "message": "Note : Payment received by cheque/demand draft shall be subject to realization.This document is not a proof of Property Ownership.This is a computer generated document", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_LOCALIZATION_OLD_LICENSE_NO", - "message": "Old License No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_LOCALIZATION_OWNERSHIP_INFORMATION", - "message": "Ownership Information", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_LOCALIZATION_OWNER_MOBILE", - "message": "Owner Mobile", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_LOCALIZATION_OWNER_NAME", - "message": "Owner Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_LOCALIZATION_PAYABLE_AMOUNT", - "message": "Payable Amount", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_LOCALIZATION_PAYMENT_DATE", - "message": "Payment Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_LOCALIZATION_PAYMENT_INFORMATION", - "message": "Payment Information", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_LOCALIZATION_PAYMENT_MODE", - "message": "Payment Mode", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_LOCALIZATION_PAYMENT_RECIEPT", - "message": "Payment Reciept", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_LOCALIZATION_PENALTY", - "message": "Penalty", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_LOCALIZATION_REBATE", - "message": "rebate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_LOCALIZATION_RECEIPT_NO", - "message": "Receipt No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_LOCALIZATION_RECIEPT_NO", - "message": "Receipt No. ", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_LOCALIZATION_STREET_NAME", - "message": "Street Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_LOCALIZATION_TOTAL", - "message": "Total", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_LOCALIZATION_TOTAL_AMOUNT_PAID", - "message": "Total Amount Paid", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_LOCALIZATION_TRADE_ADDRESS", - "message": "Trade Address", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_LOCALIZATION_TRADE_CATEGORY", - "message": "Trade Category", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_LOCALIZATION_TRADE_DETAILS", - "message": "Trade Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_LOCALIZATION_TRADE_LICENSE_CERTIFICATE", - "message": "Trade License Certificate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_LOCALIZATION_TRADE_LICENSE_FEE", - "message": "Trade License Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_LOCALIZATION_TRADE_LICENSE_NO", - "message": "Trade License No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_LOCALIZATION_TRADE_LICENSE_RS", - "message": "Rs.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_LOCALIZATION_TRADE_LICENSE_TO", - "message": "To", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_LOCALIZATION_TRADE_NAME", - "message": "Trade Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_LOCALIZATION_TRADE_OWNER_CONTACT", - "message": "Trade Owner Contact", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_LOCALIZATION_TRADE_OWNER_NAME", - "message": "Trade Owner Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_LOCALIZATION_TRADE_TYPE", - "message": "Trade Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_LOCALIZATION_TRANSACTION_ID", - "message": "Transaction Id", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_LOCALIZATION_ULBGRADE_MC1", - "message": "Municipal Corporation", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_MALE", - "message": "Male", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_MANUFACTURE", - "message": "Manufacture", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_MAP_CLOSE_LABEL", - "message": "Close", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_MAP_PICK_LABEL", - "message": "Pick your city.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_MARK_APPLICATION", - "message": "Mark Application", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_MARK_SUCCESS_MESSAGE_MAIN", - "message": "Application Marked Successfully", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_MY_APPLICATIONS", - "message": "My Applications", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_MY_APPLICATIONS_HEADER", - "message": "My Applications", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_NAME_ERROR_MESSAGE", - "message": "Enter valid name (max length 64)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_NEW PUBLIC MESSAGE_BUTTON_LABEL", - "message": "NEW PUBLIC MESSAGE", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_NEW_APPLICATION", - "message": "New Application", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_NEW_APPLICATION_PROPERTY", - "message": "New Property", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_NEW_OWNER_DESIG_LABEL", - "message": "Designation", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_NEW_OWNER_DESIG_PLACEHOLDER", - "message": "Enter Designation", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_NEW_OWNER_DETAILS_DOB_PLACEHOLDER", - "message": "Enter Date of Birth", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_NEW_OWNER_DETAILS_GENDER_LABEL", - "message": "Gender", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_NEW_OWNER_DETAILS_GENDER_PLACEHOLDER", - "message": "Select Gender", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_NEW_OWNER_DETAILS_HEADER", - "message": "Trade Owner Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_NEW_OWNER_DETAILS_OWNERSHIP_TYPE_LABEL", - "message": "Type Of ownership*", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_NEW_PUBLIC_MESSAGE_BUTTON_LABEL", - "message": "NEW PUBLIC MESSAGE", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_NEW_TRADE_DETAILS_BLDG_NAME_LABEL", - "message": "Building/Colony Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_NEW_TRADE_DETAILS_BLDG_NAME_PLACEHOLDER", - "message": "Enter Building/Colony Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_NEW_TRADE_DETAILS_CITY_LABEL", - "message": "City", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_NEW_TRADE_DETAILS_DOOR_NO_LABEL", - "message": "Door/House No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_NEW_TRADE_DETAILS_DOOR_NO_PLACEHOLDER", - "message": "Enter Door/House No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_NEW_TRADE_DETAILS_GIS_CORD_LABEL", - "message": "GIS Coordinates", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_NEW_TRADE_DETAILS_GIS_CORD_PLACEHOLDER", - "message": "Select your trade location on map", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_NEW_TRADE_DETAILS_MOHALLA_LABEL", - "message": "Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_NEW_TRADE_DETAILS_MOHALLA_PLACEHOLDER", - "message": "Select Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_NEW_TRADE_DETAILS_PIN_LABEL", - "message": "Pincode", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_NEW_TRADE_DETAILS_PIN_PLACEHOLDER", - "message": "Enter Pincode", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_NEW_TRADE_DETAILS_SRT_NAME_LABEL", - "message": "Street Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_NEW_TRADE_DETAILS_SRT_NAME_PLACEHOLDER", - "message": "Enter Street Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_NEW_TRADE_DETAILS_TRADE_UNIT_HEADER", - "message": "Trade Unit", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_NEW_TRADE_LICENSE_HEADER", - "message": "New trade License", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_NO_DOCUMENTS_MSG", - "message": "No Documents", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_PAYMENT_FAILED", - "message": "Payment has failed!", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_PAYMENT_NOTIFICATION", - "message": "A notification regarding payment failure has been sent to the trade owner and applicant.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_PAYMENT_VIEW_BREAKUP", - "message": "VIEW BREAKUP", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_PICK_YOUR_CITY_CITIZEN", - "message": "Pick your city.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_PMT_RCPT_NO", - "message": "Payment Receipt No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_PRINT", - "message": "PRINT", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_PROPERTY_ID", - "message": "Property ID", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_PROPERTY_ID_REQUIRED", - "message": "Property ID is required", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_RECEIPT", - "message": "Receipt", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_RENEWAL_HEADER", - "message": "Renew Trade License", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_RENEWAL_PENALTY", - "message": "Renewal Penalty", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_RENEWAL_REBATE", - "message": "Renewal Rebate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_RENEWAL_TAX", - "message": "Trade License Renewal Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_RETRY", - "message": "RETRY", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_SEARCH_APPLICATIONS", - "message": "Search Applications", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_SEARCH_LICENSE", - "message": "Search Trade License", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_SELECT_CITY", - "message": "Select City", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_SENDBACK_CHECKLIST_MESSAGE_HEAD", - "message": "Application is sent back Successfully", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_SENDBACK_TOCITIZEN_CHECKLIST_MESSAGE_HEAD", - "message": " Application is sent back to initiator successfully", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_SUMMARY_EDIT", - "message": "EDIT", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_SUMMARY_HEADER", - "message": "Application Summary", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_SUPPORTINGDOCUMENT", - "message": "Supporting Document", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_TASK_STATUS", - "message": "Task Status", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_TAX", - "message": "Trade License Tax", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_TIMELINE_DOCS", - "message": "Timeline", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_TL_CANCELLED_MESSAGE_HEAD", - "message": "Trade License Cancelled", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_TL_CANCELLED_MESSAGE_SUBHEAD", - "message": "A notification regarding Trade License cancellation has been sent to trade owner at registered Mobile No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_TRADE_APPLICATION", - "message": "Trade License Application", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_ULBGRADE_MC1", - "message": "Corporation1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_UPDATED_BY_LABEL", - "message": "Updated By", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_UPLOAD_FILES_BUTTON", - "message": "UPLOAD FILES", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_UPLOAD_RESTRICTION", - "message": "Only .jpg, .png and .jpeg 8MB max file size.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_UPLOAD_RESTRICTIONS", - "message": "Only .jpg and .pdf files. 6MB max file size.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_VALIDITY", - "message": "Trade License validity is", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_VALIDITY_IS", - "message": "Trade License validity is", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_VALIDITY_IS 1 COMMON_YEAR", - "message": "Validity is 1 common year", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_VIEW_DETAILS", - "message": "VIEW DETAILS", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_VIEW_HISTORY", - "message": "VIEW HISTORY", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_VIEW_PROPERTY_DETAIL", - "message": "View Complete Property Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_WF_NEWTL_REJECT", - "message": "Reject", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_WORKFLOWCODE_DIRECTRENEWAL", - "message": "Direct Renewal", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_WORKFLOWCODE_EDITRENEWAL", - "message": "Edit Renewal", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_WORKFLOWCODE_NEWTL", - "message": "New TL", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_WORKFLOWCODE_NEW_TL", - "message": "New TL", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TL_mp", - "message": "Madhya Pradesh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TOTAL_CHALLANS", - "message": "Total Challans", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TOTAL_CHALLANS ", - "message": "Total Challans", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TOTAL_DOCUMENTS", - "message": "Documents", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TOTAL_EMPLOYEES", - "message": "Total Employees", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TOTAL_EVENTS", - "message": "Events", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TOTAL_FILES_MORE_THAN_ALLOWED", - "message": "FIle not Allowed", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TOTAL_FSM", - "message": "Total", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TOTAL_MESSAGES", - "message": "Messages", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TOTAL_NEARING_SLA", - "message": "Nearing SLA", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TOTAL_PAYABLE", - "message": "Total Payable", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TOTAL_PGR", - "message": "Total", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TOTAL_SURVEYS", - "message": "Total", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TOTAL_SW", - "message": "Total", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TOTAL_TL", - "message": "Total", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TOTAL_WS", - "message": "Total", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TO_BE_SUBMITTED", - "message": "Submission Pending", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TQM_ADD_TEST_RESULT", - "message": "Add Test result", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TQM_ADD_TEST_SUCCESS", - "message": "Test added successfully.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TQM_DASHBOARD", - "message": "Dashboard", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TQM_INBOX", - "message": "Inbox", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TQM_KPI_NEARING_SLA", - "message": "Nearing SLA", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TQM_KPI_PENDING_TESTS", - "message": "Pending Tests", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TQM_SENSOR_MON", - "message": "Sensor Monitoring", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TQM_TIMELINE_STATUS_SUBMIT_SAMPLE", - "message": "View Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TQM_TIMELINE_STATUS_UPDATE_RESULT", - "message": "View Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TQM_VIEW_IOT_READING", - "message": "View IoT Reading", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TQM_VIEW_PAST_RESULTS", - "message": "View Past Results", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRACK_ATTENDENCE", - "message": "Track Attendance", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSEDAILYCOLLECTIONREPORT", - "message": "Trade License Daily Collection report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_1", - "message": "Air Compressor", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_10", - "message": "Carbon", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_11", - "message": "Cardboard", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_12", - "message": "Celluloid or celluloid goods", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_13", - "message": "Cement", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_14", - "message": "Cement concrete designs or models", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_15", - "message": "Cleaning Goods", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_16", - "message": "Cloth Containing nylon,Terelene or Synthetic Yarn,Terrywool or woolen", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_17", - "message": "Coal", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_18", - "message": "Cosmetics or toilet goods", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_19", - "message": "Drugets, Mats and Coconut Fibre", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_2", - "message": "Bakery Product", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_20", - "message": "Dry Chilli", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_21", - "message": "Dry leaves and articles made thereof, Beedi leaves", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_22", - "message": "Dynamite", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_23", - "message": "Electric Motors", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_24", - "message": "Electrical Goods", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_25", - "message": "Electronic Goods and spare part ", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_26", - "message": "Fire works", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_27", - "message": "Fish (dried)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_28", - "message": "Fuel wood", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_29", - "message": "Generator sets (Movable/Immovable/Portable )", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_3", - "message": "Bamboos", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_30", - "message": "Glass or glass articles", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_31", - "message": "Gross match boxes up to 20", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_32", - "message": "Gun Powder and cartridges etc.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_33", - "message": "Gun-cotton", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_34", - "message": "Hessian Cloth of Jute and goods made thereof,packing stuff", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_35", - "message": "Ice (including dry Ice)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_36", - "message": "Ice cream/Ice and Soda water", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_37", - "message": "Incense or esas", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_38", - "message": "Kerosene oil, mobile oil, crude oil, grease and all kinds of lubricants oil", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_39", - "message": "Kerosone", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_4", - "message": "Bhatta, Tandoor", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_40", - "message": "Leather goods, leather foam, rexon and articles made there ", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_41", - "message": "Lpg Cylinder and other gas cylinder", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_42", - "message": "Machinery goods V-bells etc. including pumping sets", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_43", - "message": "Medicines and drugs", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_44", - "message": "More than 20 gross match boxes", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_45", - "message": "MRI", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_46", - "message": "Non dangerous petroleum products 500-1000 gallons", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_47", - "message": "Non dangerous petroleum products above 1000 gallons", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_48", - "message": "Nytromixer, sulpher, phosphorous, blasting powder etc.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_49", - "message": "Oil seeds/fooder seeds,cotton seeds etc", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_5", - "message": "Boilers", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_50", - "message": "Paints/Spirits/Thinner Oil/ Colour/Varnish/ turpentine of all kinds", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_51", - "message": "Paper and goods made thereof including books and magazines", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_52", - "message": "Petrol,Diesel etc", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_53", - "message": "Photographic films", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_54", - "message": "Plastic goods", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_55", - "message": "Plywood Sunmica", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_56", - "message": "Power Loom", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_57", - "message": "Raw wool and raw cotton", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_58", - "message": "Sale of hosiery goods", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_59", - "message": "Sale of Panja,Kassi etc", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_6", - "message": "C.T Scan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_60", - "message": "Sanitary fitting including G.I., C.I. Pipes, S.W. Pipes, A.C. Pipes, Cement pipes", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_61", - "message": "Silk Clothes and Art Silk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_62", - "message": "Sirki, Baan, Khazoor, Patta, Manj, Ropes and Nylon ropes etc", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_63", - "message": "Soap", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_64", - "message": "Steam engine and oil engine", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_65", - "message": "Storage or sale of Audio Cassettes", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_66", - "message": "Sugar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_67", - "message": "Tarcoal and bitumen,etc", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_68", - "message": "Testing laboratories", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_69", - "message": "Thermostat Boilers", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_7", - "message": "Camphor", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_70", - "message": "Tobacco or Zarda", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_71", - "message": "Tyre/Tubes", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_72", - "message": "Ultra Sound", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_73", - "message": "Unslacked limes", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_74", - "message": "Vegetable oil and Hydrogenated Oil etc", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_75", - "message": "Vegetable oil and Hydronated Oil etc", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_76", - "message": "Video Cassettes/CDs/DVDs", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_77", - "message": "Welding of Metal", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_78", - "message": "Welding Set", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_79", - "message": "Wool", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_8", - "message": "Candles,Dhoop,Aggarbatti etc", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_80", - "message": "X-ray", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_81", - "message": "Yarn other than waste yarn", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACC_9", - "message": "Carbide of calcium", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_TRADETYPE_INTERSTATE", - "message": "MP Inter District Pass", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_TRADETYPE_SERVICES_NGBS_TST_220", - "message": "workshop", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADE_LICENCE", - "message": "Trade Licence", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRADE_LICENSE", - "message": "Trade License", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TRANSGENDER", - "message": "Transgender", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TX.ELECTRICITY_CHUNGI_CGST", - "message": "CGST", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TX.ELECTRICITY_CHUNGI_FIELD_FEE", - "message": "Field Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TX.ELECTRICITY_CHUNGI_SGST", - "message": "SGST", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TX.ELECTRICITY_CHUNGI_TAX", - "message": "Electricity Chungi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TX.NO_DUES_CERTIFICATE_CGST", - "message": "CGST (If applicable):", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TX.NO_DUES_CERTIFICATE_CGST_TAX", - "message": "CGST (If applicable):", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TX.NO_DUES_CERTIFICATE_FIELD_FEE", - "message": "Field Collection Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TX.NO_DUES_CERTIFICATE_SGST", - "message": "SGST (If applicable):", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TX.NO_DUES_CERTIFICATE_SGST_TAX", - "message": "SGST (If applicable):", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TX.NO_DUES_CERTIFICATE_TAX", - "message": "NDC - No Dues Certificate Tax Amount", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TX.TRANSFER_PROPERTY_FEES_CGST", - "message": "CGST", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TX.TRANSFER_PROPERTY_FEES_FIELD_FEE", - "message": "Field Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TX.TRANSFER_PROPERTY_FEES_SGST", - "message": "SGST", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TX.TRANSFER_PROPERTY_FEES_TAX", - "message": "Transfer Property Fees", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TX.TS1_COPY_REGISTER_FOR_OLD_SURVEY_CGST", - "message": "CGST", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TX.TS1_COPY_REGISTER_FOR_OLD_SURVEY_FIELD_FEE", - "message": "Field Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TX.TS1_COPY_REGISTER_FOR_OLD_SURVEY_SGST", - "message": "SGST", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TX.TS1_COPY_REGISTER_FOR_OLD_SURVEY_TAX", - "message": "TS1 Copy register for old survey tax", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TXN_ABRUPTLY_DISCARDED", - "message": "A transaction for this bill has been abruptly discarded, please retry after 30 mins", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TX_NO_DUES_CERTIFICATE_CGST", - "message": "CGST (If applicable):", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TX_NO_DUES_CERTIFICATE_FIELD_FEE", - "message": "Field Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TX_NO_DUES_CERTIFICATE_SGST", - "message": "SGST (If applicable):", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "TX_NO_DUES_CERTIFICATE_TAX", - "message": "Tax", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ToDate", - "message": "Application created to date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "Total Payable", - "message": "TOTAL_PAYABLE", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UC_ACTIVE", - "message": "Active", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UC_AMOUNT_DUE_LABEL", - "message": "Amount Due", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UC_BILL_GENERATED_SUCCESS_MESSAGE", - "message": "Challan Generated Succesfully", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UC_BILL_GENERATION_MESSAGE_SUB", - "message": "A notification regarding above challan/bill has been sent to the registered Mobile No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UC_BILL_NO_LABEL", - "message": "Bill No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UC_BLDG_NAME_LABEL", - "message": "Building Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UC_BLDG_NAME_PLACEHOLDER", - "message": "Enter Building Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UC_BUILDING_NAME_LABEL", - "message": "Building Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UC_BUILDING_NAME_LABEL:", - "message": "Challan Register Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UC_BUTTON_PAY", - "message": "Pay", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UC_CANCELLED", - "message": "Cancelled", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UC_CANCEL_CHALLAN", - "message": "Cancel", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UC_CHALLAN", - "message": "Challan ", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UC_CHALLAN_NO", - "message": "Challan No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UC_CHALLAN_NO_LABEL", - "message": "Challan No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UC_CHALLAN_NO_LABEL_PLACEHOLDER", - "message": "Enter Challan No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UC_CHALLAN_NO_LABEL_PLACEHOLDER ", - "message": "Enter Challan No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UC_CITY_LABEL", - "message": "City*", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UC_CLICK_HERE_TO_SEARCH_LINK", - "message": "Click here to Search", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UC_COMMON_FIELD_ERROR", - "message": "Enter Tax Amount", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UC_COMMON_HEADER_SEARCH", - "message": "Miscellaneous Collection", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UC_COMMON_NOT_PAID", - "message": "Not Paid", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UC_COMMON_TABLE_COL_AMOUNT", - "message": "Amount Paid[INR]", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UC_COMMON_TABLE_COL_DATE", - "message": "Receipt Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UC_COMMON_TABLE_COL_PAYEE_NAME", - "message": "Consumer Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UC_COMMON_TABLE_COL_RECEIPT_NO", - "message": "Receipt No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UC_COMMON_TABLE_COL_STATUS", - "message": "Status", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UC_DOOR_NO_LABEL", - "message": "Door/House No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UC_DOOR_NO_PLACEHOLDER", - "message": "Enter Door No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UC_ECHALLAN", - "message": "eChallan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UC_EDIT_CHALLAN_HEADER", - "message": "Edit Challan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UC_GENERATE_NEW_CHALLAN", - "message": "Generate new Challan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UC_HOME_SEARCH_RESULTS_DESC", - "message": "Searched Results", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UC_LESS_LABEL", - "message": "Less", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UC_MOBILE_NUMBER", - "message": "Mobile number*", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UC_MOHALLA_LABEL", - "message": "Mohalla ", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UC_MOHALLA_PLACEHOLDER", - "message": "Choose Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UC_MY_CHALLANS", - "message": "My Challans", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UC_OWNER_NAME_LABEL", - "message": "Owner Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UC_PAID", - "message": "Paid", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UC_PINCODE_INVALID", - "message": "Invalid Pincode", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UC_PINCODE_LABEL", - "message": "Pincode", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UC_PINCODE_PLACEHOLDER", - "message": "Enter Pincode", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UC_PRINT_CHALLAN_LABEL", - "message": "Print", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UC_SEARCHANDPAY_LABEL", - "message": "Search And Pay", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UC_SEARCH_AND_PAY", - "message": "Search and Pay", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UC_SEARCH_CHALLAN_LABEL", - "message": "Search Challan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UC_SEARCH_MOBILE_NO_LABEL", - "message": "Mobile Number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UC_SERVICE_TYPE_LABEL", - "message": "Service Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UC_SRT_NAME_LABEL", - "message": "Street Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UC_SRT_NAME_PLACEHOLDER", - "message": "Enter Street Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UC_STREET_NAME_LABEL", - "message": "Street Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UC_STREET_NAME_LABEL:", - "message": "Collection Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UC_UPDATE_CHALLAN", - "message": "Update", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UC_VIEWBILL_DETAILS_HEADER", - "message": "View Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ULB", - "message": "ULB", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ULBGRADE_B", - "message": "MUNICIPAL CORPORATION", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ULBGRADE_B+", - "message": "MUNICIPAL CORPORATION", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ULBGRADE_MC1", - "message": "MUNICIPAL CORPORATION", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ULBGRADE_MC_1", - "message": "MUNICIPAL CORPORATION", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ULBGRADE_MC_CLASS", - "message": "MUNICIPAL COUNCIL", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ULBGRADE_MC_CLASS_I", - "message": "MUNICIPAL COUNCIL", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ULBGRADE_MC_CLASS_II", - "message": "MUNICIPAL CORPORATION", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ULBGRADE_MC_CLASS_III", - "message": "MUNICIPAL CORPORATION", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ULBGRADE_MUNICIPAL_CORPORATION", - "message": "MUNICIPAL CORPORATION", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ULBGRADE_MUNICIPAL_CORPORATION ", - "message": "MUNICIPAL CORPORATION", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ULBGRADE_NAGAR_NIGAM", - "message": "MUNICIPAL CORPORATION", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ULBGRADE_NP", - "message": "NAGAR PANCHAYAT", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ULBGRADE_ST", - "message": "STATE", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ULBREPORT", - "message": "ULB Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ULB_MC_CLASS", - "message": "MUNICIPAL COUNCIL", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ULB_MUNICIPAL_CORPORATION", - "message": "MUNICIPAL CORPORATION", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ULB_MUNICIPAL_CORPORATION ", - "message": "MUNICIPAL CORPORATION", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "ULB_NP", - "message": "NAGAR PANCHAYAT", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UNKNOWN_ERROR", - "message": "Unknown error", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UNSKILLED", - "message": "Unskilled", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UNSKILLED.CHAIN_MAN", - "message": "Unskilled - Chain Man", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UNSKILLED.FEMALE_MULIA", - "message": "Unskilled - Female Mulia", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UNSKILLED.MALE_MULIA", - "message": "Unskilled - Male Mulia", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UNSKILLED.SCAVENGER", - "message": "Unskilled - Scavenger", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UNSKILLED_CHAIN_MAN", - "message": "Unskilled - Chain Man", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UNSKILLED_FEMALE_MULIA", - "message": "Unskilled - Female mulia", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UNSKILLED_MALE_MULIA", - "message": "Unskilled - Male mulia", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UNSKILLED_MULIA", - "message": "Unskilled Mulia", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UNSKILLED_PLUMBER", - "message": "Unskilled Plumber", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UNSKILLED_SCAVENGER", - "message": "Unskilled - Scavanger", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UPDATE_EVENT_LABEL", - "message": "Update Event", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "UPDATE_PUBLIC_MESSAGE", - "message": "Update Public Message", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "USAGECATEGORYMAJOR_REQUIRED ", - "message": "Required", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "VACANT", - "message": "Vacant Land", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "VALIDITY_OF_CHALLAN_IS", - "message": "Validity of challan is", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "VERIFIED", - "message": "Verified", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "VIEW_ON_MAP", - "message": "View on Map", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "VIEW_TEST_DETAILS", - "message": "View Test Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "VIL10_SL010", - "message": "Angaragadia Rameswar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "VIL10_SL011", - "message": "Angargadia DIC Office", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "VIL10_SL012", - "message": "Angargadia Rameswar Nagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "VIL14_SL013", - "message": "Bateswar Sweeper Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "VIL16_SL014", - "message": "Nua Bazar Adi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "VIL18_SL015", - "message": "Arad bazar-3", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "VIL18_SL016", - "message": "Nua Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "VIL18_SL017", - "message": "Aradbazar 2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "VIL18_SL018", - "message": "Arad Bazar-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "VIL19_SL019", - "message": "Bhaskarganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "VIL1_SL001", - "message": "Mahammadpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "VIL1_SL002", - "message": "Kanhu Behera Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "VIL20_SL020", - "message": "Tail basa", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "VIL20_SL021", - "message": "Chudakutasahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "VIL20_SL022", - "message": "Telenga Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "VIL21_SL023", - "message": "Gudipada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "VIL21_SL024", - "message": "Sweeper Colony Bhaskarganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "VIL22_SL025", - "message": "Godhibasa", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "VIL22_SL026", - "message": "Ananda Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "VIL22_SL027", - "message": "Railway Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "VIL23_SL028", - "message": "Bhalia dang", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "VIL23_SL029", - "message": "Chhachina Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "VIL23_SL030", - "message": "Gosalapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "VIL24_SL031", - "message": "Balighat", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "VIL24_SL032", - "message": "Sweeper Colony Olondaz Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "VIL26_SL033", - "message": "Adibasi Sahi Town Hall", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "VIL26_SL034", - "message": "Congress gali baula pokhari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "VIL27_SL035", - "message": "Gopalgaon Tala Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "VIL28_SL036", - "message": "Mirzapokhari Sweeper Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "VIL28_SL037", - "message": "Darzi Pokhari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "VIL29_SL038", - "message": "Mahila College Back side Adibasi Sahi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "VIL2_SL003", - "message": "Munipada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "VIL2_SL004", - "message": "Malik Sahi-1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "VIL2_SL005", - "message": "Malik Sahi-2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "VIL30_SL039", - "message": "Jadav Pur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "VIL31_SL040", - "message": "Lepracy Colony", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "VIL31_SL041", - "message": "Golapolo", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "VIL3_SL006", - "message": "Uchhapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "VIL5_SL007", - "message": "Mansing Bazar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "VIL8_SL008", - "message": "Khaparapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "VIL9_SL009", - "message": "Angaragadia Cold Store", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "W&S", - "message": "Water & Sewerage", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WAGE_SEEKER_SKILL", - "message": "Skill", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WAGE_SEEKER_SKILL_CAT", - "message": "Skill Category", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WARDCOMMITTEEMEETING", - "message": "Ward Committee Meeting", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WARD_IS_REQUIRED", - "message": "Ward is required", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WATER", - "message": "Water", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WATER_APPLICATIONTYPE_DISCONNECT_SEWERAGE_CONNECTION", - "message": "sewerage", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WATER_APPLICATIONTYPE_DISCONNECT_WATER_CONNECTION", - "message": "water", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WATER_BILL_GENERATION", - "message": "Water Bill Generation", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WATER_CONNECTION", - "message": "Water Connection", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WATER_CONNECTION_BILL_GENERATION_MESSAGE", - "message": "Dear {Owner Name},Your{Service} Bill for {Billing Period} has been generated. Please pay the amount due: {bill amount} by due date {Due Date}. Following is the link to your bill: {Link to Bill}", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_ACTION_CANCELLED", - "message": "Action has been cancelled", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_ADD_HOC_CHARGES_POPUP_COMMENT_LABEL", - "message": "Enter Comments", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_AIRPORT_NOC_OFFLINE_AUTO_APPROVE", - "message": "Approve", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_AIRPORT_NOC_OFFLINE_INITIATED", - "message": "Initiated", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_AIRPORT_NOC_OFFLINE_VOID", - "message": "VOID", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_APPROVAL_UPLOAD_HEAD", - "message": "Supporting Documents", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_APPROVAL_UPLOAD_SUBHEAD", - "message": "Only .jpg and .pdf files. 5MB max file size.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_APPROVE_APPLICATION", - "message": "Approve Application", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_ASMT_APPLIED", - "message": "Property Assessment Applied", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_ASSIGNEE_NAME_LABEL", - "message": "Assignee Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_ASSIGNEE_NAME_PLACEHOLDER", - "message": "Select assignee Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_APPROVAL_INPROGRESS", - "message": "Approval In Progress", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_APPROVE", - "message": "APPROVE", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_APPROVED", - "message": "Approved", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_BACK_FROM_DOC_VERIFICATION", - "message": "Back From Document Verification", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_BACK_FROM_FI_VERIFICATION", - "message": "Back From FI Verification", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_BACK_FROM_NOC_VERIFICATION", - "message": "Back From NOC Verification", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_BUILDING_OC_PLAN_SCRUTINY", - "message": "Occupancy Certificate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_BUILDING_PLAN_SCRUTINY", - "message": "Permit Application", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_CANCELLED", - "message": "Cancelled", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_CITIZEN_ACTION_PENDING_AT_DOC_VERIF", - "message": "Citizen Action Pending At Document Verification", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_CITIZEN_ACTION_PENDING_AT_FI_VERIF", - "message": "Citizen Action Pending At FI Verification", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_CITIZEN_ACTION_PENDING_AT_NOC_VERIF", - "message": "Citizen Action Pending At NOC Verification", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_CITIZEN_APPROVAL_INPROCESS", - "message": "Citizen Approval Inprogress", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_CITIZEN_APPROVAL_PENDING", - "message": "Citizen Approval Pending", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_DOC_VERIFICATION_INPROGRESS", - "message": "Document Verification In Progress", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_DOC_VERIFICATION_PENDING", - "message": "Document Verification Pending", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_FIELDINSPECTION_INPROGRESS", - "message": "Field Inspection InProgress", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_FIELDINSPECTION_PENDING", - "message": "Field Inspection Pending", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_FORWARD", - "message": "VERIFY AND FORWARD", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_HIGH", - "message": "High", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_INITIATED", - "message": "Pending for Stakeholders update", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_INPROGRESS", - "message": "Stakeholders’s submission pending", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_LOW", - "message": "Low", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_LOW_APPROVAL_INPROGRESS", - "message": "Approval Inprogess", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_LOW_APPROVED", - "message": "Approved", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_LOW_CITIZEN_APPROVAL_INPROCESS", - "message": "Citizen Approval Inprogress", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_LOW_CITIZEN_APPROVAL_PENDING", - "message": "Citizen Approval Pending", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_LOW_DOC_VERIFICATION_INPROGRESS", - "message": "Document Verification Inprogress", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_LOW_DOC_VERIFICATION_PENDING", - "message": "Document Verification Pending", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_LOW_FIELDINSPECTION_INPROGRESS", - "message": "Field Inspection Inprogress", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_LOW_FIELDINSPECTION_PENDING", - "message": "Field Inspection Pending", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_LOW_FIELDINSPECTION_PENDING1", - "message": "Field Inspection Pending", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_LOW_INITIATED", - "message": "Pending for Stakeholders update", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_LOW_INPROGRESS", - "message": "Stakeholders’s submission pending", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_LOW_NOC_VERIFICATION_INPROGRESS", - "message": "NOC Verification Inprogress", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_LOW_NOC_VERIFICATION_PENDING", - "message": "NOC Verification Pending", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_LOW_PENDINGAPPROVAL", - "message": "Pending Approval", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_LOW_PENDING_FEE", - "message": "Pending Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_LOW_PENDING_FEE_PAYMENT", - "message": "Pending Fee Payment", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_LOW_REVOCATED", - "message": "Revocated", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_MEDIUM", - "message": "Medium", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_NEW_CONSTRUCTION", - "message": "New Construction", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_NOC_VERIFICATION_INPROGRESS", - "message": "NOC Verification Is InProgress", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_NOC_VERIFICATION_PENDING", - "message": "NOC Verification Pending", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_OC_APPROVED", - "message": "Approved", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_OC_BACK_FROM_DOC_VERIFICATION", - "message": "Back From Document Verification", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_OC_BACK_FROM_FI_VERIFICATION", - "message": "Back From FI Verification", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_OC_BACK_FROM_NOC_VERIFICATION", - "message": "Back From NOC Verification", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_OC_CITIZEN_ACTION_PENDING_AT_DOC_VERIF", - "message": "Citizen Action Pending At Document Verification", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_OC_CITIZEN_ACTION_PENDING_AT_FI_VERIF", - "message": "Citizen Action Pending At FI Verification", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_OC_CITIZEN_ACTION_PENDING_AT_NOC_VERIF", - "message": "Citizen Action Pending At NOV Verification", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_OC_CITIZEN_APPROVAL_INPROCESS", - "message": "Citizen Approval Inprogress", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_OC_CITIZEN_APPROVAL_PENDING", - "message": "Citizen Approval Pending", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_OC_DOC_VERIFICATION_INPROGRESS", - "message": "Document Verification In Progress", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_OC_DOC_VERIFICATION_PENDING", - "message": "Document Verification Pending", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_OC_FIELDINSPECTION_INPROGRESS", - "message": "Field Inspection InProgress", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_OC_FIELDINSPECTION_PENDING", - "message": "Field Inspection Pending", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_OC_INITIATED", - "message": "Pending for Stakeholders update", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_OC_INPROGRESS", - "message": "Stakeholders’s submission pending", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_OC_NOC_VERIFICATION_INPROGRESS", - "message": "NOC Verification Is InProgress", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_OC_NOC_VERIFICATION_PENDING", - "message": "NOC Verification Pending", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_OC_PAY", - "message": "PAY", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_OC_PENDINGAPPROVAL", - "message": "Pending For Approval", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_OC_PENDING_APPL_FEE", - "message": "Pending Application Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_OC_PENDING_APPL_FEE_PAYMENT", - "message": "Pending For Application Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_OC_PENDING_FEE", - "message": "Pending Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_OC_PENDING_SANC_FEE_PAYMENT", - "message": "Pending Sanction Fee Payment", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_OC_REJECTED", - "message": "REJECTED", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_OC_SKIP_PAYMENT", - "message": "Skip Payment", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_PAID", - "message": "Paid", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_PENDINGAPPROVAL", - "message": "Pending For Approval", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_PENDINGPAYMENT", - "message": "Pending For Payment", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_PENDING_APPL_FEE", - "message": "Pending Application Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_PENDING_APPL_FEE_PAYMENT", - "message": "Pending For Application Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_PENDING_FEE", - "message": "Pending For Payment", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_PENDING_SANC_FEE_PAYMENT", - "message": "Pending Sanction Fee Payment", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_PERMIT REVOCATION", - "message": "Permit Revocation", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_PERMIT_REVOCATION", - "message": "Permit Revocation", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_REJECT", - "message": "REJECT", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_REJECTED", - "message": "Rejected", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_REVOCATED", - "message": "Revocated", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_SKIP_PAYMENT", - "message": "Skip Payment", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_BPA_SYSTEM", - "message": "System", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_CITIZEN_FIRENOC_APPLY", - "message": "Apply", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_CITIZEN_FIRENOC_PAY", - "message": "Pay", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_CITIZEN_NEWTL_CANCEL", - "message": "CANCEL", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_CITIZEN_PT.MUTATION_PAY", - "message": "PAY", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_COMMON_COMMENTS", - "message": "Comments", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_CONTRACT_ACTION_CREATE_PURCHASE_BILL", - "message": "Create Purchase Bill", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_DEACTIVATE-NEWSW1_INITIATED", - "message": "Initiated", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_DEACTIVATE-NEWWS1 _INITIATED", - "message": "Initiated", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_DIRECTRENEWAL_APPROVED", - "message": "Approved", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_DIRECTRENEWAL_PENDINGPAYMENT", - "message": "Pending Payment", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_EDITRENEWAL_APPLIED", - "message": "Pending for Document verification", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_EDITRENEWAL_APPROVED", - "message": "Approved", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_EDITRENEWAL_CITIZENACTIONREQUIRED", - "message": "Citizen Action Required", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_EDITRENEWAL_FIELDINSPECTION", - "message": "Pending for Field inspection", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_EDITRENEWAL_INITIATED", - "message": "Pending Application", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_EDITRENEWAL_PENDINGAPPROVAL", - "message": "Pending approval", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_EDITRENEWAL_PENDINGPAYMENT", - "message": "Pending for Payment", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_EDITRENEWAL_SENDBACK", - "message": "SEND BACK", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_EDITRENEWAL_SENDBACKTOCITIZEN", - "message": "SEND BACK TO CITIZEN", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_EMPLOYEE_AIRPORT_NOC_OFFLINE_AUTO_APPROVE", - "message": "Approve", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_EMPLOYEE_AIRPORT_NOC_OFFLINE_VOID", - "message": "VOID", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_EMPLOYEE_BPA_LOW_SKIP_PAYMENT", - "message": "SKIP PAYMENT", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_EMPLOYEE_BPA_OC_SKIP_PAYMENT", - "message": "SKIP PAYMENT", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_EMPLOYEE_BPA_SKIP_PAYMENT", - "message": "SKIP PAYMENT", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_EMPLOYEE_DIRECTRENEWAL_APPLY", - "message": "Apply", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_EMPLOYEE_DIRECTRENEWAL_INITIATE", - "message": "Initiate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_EMPLOYEE_EDITRENEWAL_APPLY", - "message": "Apply", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_EMPLOYEE_EDITRENEWAL_INITIATE", - "message": "Initiate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_EMPLOYEE_EDITRENEWAL_RESUBMIT", - "message": "RE-SUBMIT", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_EMPLOYEE_EDITRENEWAL_SENDBACK", - "message": "SEND BACK", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_EMPLOYEE_EDITRENEWAL_SENDBACKTOCITIZEN", - "message": "SEND BACK TO CITIZEN", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_EMPLOYEE_FIRENOC_CANCEL", - "message": "Cancel", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_EMPLOYEE_FIRE_NOC_SRV_VOID", - "message": "Void", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_EMPLOYEE_PT.CREATE_APPROVE", - "message": "APPROVE", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_EMPLOYEE_PT.CREATE_FORWARD", - "message": "FORWARD", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_EMPLOYEE_PT.CREATE_REJECT", - "message": "REJECT", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_EMPLOYEE_PT.CREATE_VERIFY", - "message": "VERIFY", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_EMPLOYEE_PT.UPDATE_FORWARD", - "message": "FORWARD", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_EMPLOYEE_PT.UPDATE_VERIFY", - "message": "VERIFY", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_ESCALATED_SLA", - "message": "SLA Breached", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_FIRENOC_APPROVE", - "message": "Approve", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_FIRENOC_APPROVED", - "message": "Approved", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_FIRENOC_CANCELLED", - "message": "Cancelled", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_FIRENOC_CITIZENACTIONREQUIRED", - "message": "Citizen Action Required", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_FIRENOC_CITIZENACTIONREQUIRED-DV", - "message": "Citizen Action Required", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_FIRENOC_CITIZENACTIONREQUIRED_DV", - "message": "Citizen Action Required", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_FIRENOC_DOCUMENTVERIFY", - "message": "Pending for Document Verification", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_FIRENOC_FIELDINSPECTION", - "message": "Pending for Field Inspection", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_FIRENOC_INITIATED", - "message": "Initiated", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_FIRENOC_PENDINGAPPROVAL", - "message": "Pending for Approval", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_FIRENOC_PENDINGPAYMENT", - "message": "Pending for Payment", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_FIRE_NOC_SRV_INITIATED", - "message": "Initiated", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_FIRE_NOC_SRV_VOID", - "message": "VOID", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_FORWARD_APPLICATION", - "message": "Forward Application", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_FSM_ASSING_DSO", - "message": "Pending for DSO Assignment", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_FSM_CREATED", - "message": "Created", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_FSM_DSO_INPROGRESS", - "message": "DSO InProgress", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_FSM_DSO_REJECTED", - "message": "DSO Rejected", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_FSM_PENDING_APPL_FEE_PAYMENT", - "message": "Pending for Payment", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_FSM_PENDING_DSO_APPROVAL", - "message": "Pending for DSO Approval", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_INBOX_HEADER_APPLICATION_NO", - "message": "Application No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_INBOX_HEADER_ASSIGNED_BY", - "message": "Assigned By", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_INBOX_HEADER_ASSIGNED_TO", - "message": "Assigned To", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_INBOX_HEADER_CURRENT_OWNER", - "message": "Current Owner", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_INBOX_HEADER_LOCALITY", - "message": "Locality", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_INBOX_HEADER_MODULE_SERVICE", - "message": "Module/Service", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_INBOX_HEADER_SLA_DAYS_REMAINING", - "message": "SLA (Days Remaining)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_INBOX_HEADER_STATUS", - "message": "Status", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_INBOX_HEADER_TASK_ID", - "message": "Task ID", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_MODAL_APPROVER", - "message": "Assignee Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_MODAL_CANCEL", - "message": "Cancel", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_MODAL_COMMENTS", - "message": "Comments", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_MODIFYSWCONNECTION_INITIATED", - "message": "Modify Sewerage Connection-Initiated", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_MODIFYSWCONNECTION_PENDING_FOR_APPROVAL", - "message": "Pending For Approval", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_MODIFYWSCONNECTION_INITIATED", - "message": "Modify Water Connection-Initiated", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_MODIFYWSCONNECTION_PENDING_FOR_APPROVAL", - "message": "Pending For Approval", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_MODIFYWSCONNECTION_REJECTED", - "message": "Rejected", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_MUSTOR_SUBMITTED", - "message": "Pending for Verification", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_MY_WORKLIST", - "message": "My Worklist", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_NEWBPA_LOW_INPROGRESS", - "message": "Stakeholders’s submission pending", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_NEWSW1_INITIATED", - "message": "Initiated", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_NEWSW1_PENDING_FOR_CITIZEN_ACTION", - "message": "Pending For Citizen Action", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_NEWSW1_PENDING_FOR_CONNECTION_ACTIVATION", - "message": "Pending For Connection Activation", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_NEWSW1_PENDING_FOR_DOCUMENT_VERIFICATION", - "message": "Pending for Document Verification", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_NEWSW1_PENDING_FOR_PAYMENT", - "message": "Pending For Payment", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_NEWTL_APPLIED", - "message": "Pending for Document verification", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_NEWTL_APPROVED", - "message": "Approved", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_NEWTL_CITIZENACTIONREQUIRED", - "message": "Pending for Citizen Action", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_NEWTL_EDIT", - "message": "Edit", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_NEWTL_FIELDINSPECTION", - "message": "Pending for Field inspection", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_NEWTL_INITIATE", - "message": "Initiate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_NEWTL_INITIATED", - "message": "Initiated", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_NEWTL_PENDINGAPPROVAL", - "message": "Pending For Approval", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_NEWTL_PENDINGPAYMENT", - "message": "Pending payment", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_NEWTL_REJECT", - "message": "Reject", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_NEWTL_REJECTED", - "message": "Rejected", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_NEWTL_RESUBMIT", - "message": "Re-Submit", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_NEWTL_SENDBACK", - "message": "SendBack", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_NEWWS1_INITIATED", - "message": "Initiated", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_NEWWS1_PENDING_APPROVAL_FOR_CONNECTION", - "message": "Pending for Approval", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_NEWWS1_PENDING_FOR_CITIZEN_ACTION", - "message": "Pending For Citizen Action", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_NEWWS1_PENDING_FOR_CONNECTION_ACTIVATION", - "message": "Pending For Connection Activation", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_NEWWS1_PENDING_FOR_DOCUMENT_VERIFICATION", - "message": "Pending for Document Verification", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_NEWWS1_PENDING_FOR_FIELD_INSPECTION", - "message": "Pending for Field inspection", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_NEWWS1_PENDING_FOR_PAYMENT", - "message": "Pending For Payment", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_PGR_CLOSEDAFTERRESOLUTION", - "message": "Close After Resolution", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_PGR_PENDINGATLME", - "message": "Pending at LME", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_PGR_PENDINGATSUPERVISOR", - "message": "Pending at Supervisor", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_PGR_PENDINGFORASSIGNMENT", - "message": "Pending for Assignement", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_PGR_PENDINGFORREASSIGNMENT", - "message": "Pending for Reassignment", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_PGR_REJECTED", - "message": "Rejected", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_PGR_RESOLVED", - "message": "Resolved", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_PT.CREATE_CORRECTIONPENDING", - "message": "Correction Pending", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_PT.CREATE_DOCVERIFIED", - "message": "Pending Field Inspection", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_PT.CREATE_FIELDVERIFIED", - "message": "Pending Approval", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_PT.CREATE_OPEN", - "message": "Open", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_PT.CREATE_PENDINGPAYMENT", - "message": "PT Pending Payment", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_PT.CREATE_VERIFIED", - "message": "Property Verified", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_PT.LEGACY_APPROVALPENDING", - "message": "Pending for Approval", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_PT.MUTATION_APPROVED", - "message": "Approved", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_PT.MUTATION_CORRECTIONPENDING", - "message": "Correction Pending", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_PT.MUTATION_FIELDVERIFIED", - "message": "Pending Payment", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_PT.MUTATION_OPEN", - "message": "Property Mutation Open", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_PT.MUTATION_PAID", - "message": "Pending Approval", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_PT.MUTATION_PENDINGPAYMENT", - "message": "Mutation Pending Payment", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_PT.MUTATION_VERIFIED", - "message": "Mutation Verified", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_PT.UPDATE_APPROVED", - "message": "Approved", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_PT.UPDATE_CORRECTIONPENDING", - "message": "Pending for Citizen Action", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_PT.UPDATE_DOCVERIFIED", - "message": "Pending for Field Verification", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_PT.UPDATE_FIELDVERIFIED", - "message": "Pending for Approval", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_PT.UPDATE_OPEN", - "message": "Open", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_REFER_APPLICATION", - "message": "Refer Application", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_REJECT_APPLICATION", - "message": "Reject Application", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_RESUBMIT_APPLICATION", - "message": "Re-Submit Application", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_SENDBACKTOCITIZEN_APPLICATION", - "message": "SEND BACK TO CITIZEN", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_SENDBACK_APPLICATION", - "message": "Send Back Application", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_SEND_BACK_TO_CITIZEN_APPLICATION", - "message": "Application has Sent Back To Citizen", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_SERVICE_STATE_FIELDVERIFIED", - "message": "Sample Text", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_SERVICE_STATUS_EDIT", - "message": "Sample Text", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_SKIP_PAYMENT_APPLICATION", - "message": "Forward Application", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_TAKE_ACTION", - "message": "TAKE ACTION", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_TOTAL_NEARING_SLA", - "message": "Nearing Escalation", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_TOTAL_OVER_SLA", - "message": "Over SLA", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_TOTAL_TASK", - "message": "Total", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_WORK_ORDER_STATE_ACCEPTED", - "message": "Accepted", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WF_WORK_ORDER_STATE_PENDING_FOR_ACCEPTANCE", - "message": "Approved", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WHAT DATA DO WE COLLECT? / WHAT IS ‘DATA’ UNDER THIS ‘PROGRAM’?", - "message": "We adhere to the principles of accountability, transparency, purposeful and proportional collection, usage, storage and disclosure of personally identifiable information (“PII”).", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WHATSAPP_CHOOSE_CITY", - "message": "Choose City", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WHATSAPP_CHOOSE_LOCALITY", - "message": "Choose locality", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WHATSAPP_CONTINUE_MOBILE", - "message": "CONTINUE WITH WHATSAPP", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WHATSAPP_SCAN_QR_CODE", - "message": "Scan the QR code to file/track complaints", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WHATSAPP_SEARCH_CITY", - "message": "Search City", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WHATSAPP_SEARCH_LOCALITY", - "message": "Search locality", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WHO_RESPONDED", - "message": "Who has Responded", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WIDOW", - "message": "Widow", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WINCH_OPERATOR", - "message": "Winch operator", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WNSCOLLECTIONREGISTERREPORT", - "message": "Collection Register", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WNSDEFAULTERREPORT", - "message": "Defaulter Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WNSRECEIPTREGISTERREPORT", - "message": "Register report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WNS_COMMON_TABLE_COL_AMT_DUE_LABEL", - "message": "Amount Due", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKBENCH_HOME", - "message": "Home", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKFLOW_IN_PROGRESS", - "message": "For the given connection an application is already in progress", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKFLOW_MODAL_UPLOAD_FILES", - "message": "Attach Supporting Documents", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKFLOW_MODAL_UPLOAD_HINT_TEXT", - "message": "Only .jpg and.pdf Files. 5 MB max file size", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS", - "message": "MUKTA", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_ACTIONS", - "message": "Actions", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_ADD_ITEM", - "message": "Add Line Item", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_AMOUNT_ERR", - "message": "Enter amount upto 2 decimals", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_ASSIGNEE_NAME", - "message": "Assignee Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_BUDGET_HEAD", - "message": "Budget Head", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_CANCEL", - "message": "Cancel", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_CITY", - "message": "City", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_CLEAR_SEARCH", - "message": "Clear", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_CLOSURE_REQUESTS", - "message": "Closer Request", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_COMMENT_LENGTH_EXCEEDED_1024", - "message": "Comment character limit exceeded 1024", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_COMMENT_LENGTH_EXCEEDED_512", - "message": "Comment character limit exceeded:512", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_COMMON_APPLY", - "message": "Apply", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_COMMON_FROM_DATE_LABEL", - "message": "From Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_COMMON_SEARCH", - "message": "Search", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_COMMON_TO_DATE_LABEL", - "message": "To Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_COMPLETION_PERIOD", - "message": "Completion Period", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_CONTRACTS", - "message": "Work Orders", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_DASHBOARD", - "message": "Dashboard", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_DATE_PROPOSAL", - "message": "Project sanction date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_DOC_UPLOAD_HINT", - "message": "Only pdf, xls and doc files are allowed. Max File size allowed is 5MB", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_DUE_DATE", - "message": "Due Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_END_DATE", - "message": "Work End Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_ESTIMATED_AMOUNT", - "message": "Estimated Amount (in Rs)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_ESTIMATES", - "message": "Estimates", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_ESTIMATE_TYPE", - "message": "Estimate Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_FILE_UPLOAD_CUSTOM_ERROR_MSG", - "message": "Only pdf, xls, jpeg, and doc files are allowed. Max file size allowed is 5MB", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_FINANCIAL_DETAILS", - "message": "Financial Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_FORWARD", - "message": "Forward", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_FUNCTION", - "message": "Function", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_FUND", - "message": "Fund", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_GEO_LOCATION", - "message": "Geo Location", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_HEAD_OF_ACCOUNTS", - "message": "Head of Accounts", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_INBOX", - "message": "Inbox", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_INFO", - "message": "Info", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_KICKOFF_CHECKLIST", - "message": "Checklist", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_LOCALITY", - "message": "Locality", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_LOCATION_DETAILS", - "message": "Location Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_LOR", - "message": "File Reference Number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_MASTERS", - "message": "Organization", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_MUKTA", - "message": "Home", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_MUSTERROLLS", - "message": "Muster Rolls", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_MY_BILLS", - "message": "My Bills", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_NO_FILE_SELECTED", - "message": "No File Selected", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_ORDER_NO", - "message": "Work order number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_OVERHEAD", - "message": "Overhead", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_PATTERN_ERR", - "message": "One or more entered characters are not allowed", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_PERCENT", - "message": "%", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_PROJECT", - "message": "Projects", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_PROJECT_CLOSURE", - "message": "Project Closure", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_PROJECT_DETAILS", - "message": "Project Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_PROJECT_ID", - "message": "Project ID", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_PROJECT_NAME", - "message": "Project Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_PROJECT_TYPE", - "message": "Project Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_QT_ERR", - "message": "Enter quantity upto 2 decimals", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_RELEVANT_DOCS", - "message": "Relevant Documents", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_RELEVANT_DOCUMENTS", - "message": "Relevant Documents", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_REQUIRED_ERR", - "message": "This field is mandatory", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_SCHEME", - "message": "Scheme", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_SEARCH_ORGANISATION", - "message": "Search Organization", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_SEARCH_PROJECTS", - "message": "Search Projects", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_SEARCH_WAGESEEKERS", - "message": "Search Wage Seeker", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_SNO", - "message": "S.NO", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_START_DATE", - "message": "Work Start Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_SUB_PROJECT_INFO_MSG", - "message": "Please enter details of project breakdown in the sub-projects section", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_SUB_SCHEME", - "message": "Sub Scheme", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_TABLE_TOTAL_AMOUNT", - "message": "Total Amount", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_UPLOAD_DOCS", - "message": "Upload Documents", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_UPLOAD_FILES", - "message": "Upload Files", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_WAGESEEKERS", - "message": "Wage Seekers", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_WARD", - "message": "Ward", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_WMS", - "message": "WMS", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_WORKFLOW_HISTORY", - "message": "Workflow History", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_WORKFLOW_TIMELINE", - "message": "Workflow Timeline", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_WORK_DETAILS", - "message": "Work Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORKS_WORK_NATURE", - "message": "Nature of Work", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORK_ORDER_CONDITIONS_FOR_IMPLEMENTATION_AGENCY", - "message": "Conditions for Implementation Agency (IA)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORK_ORDER_CONDITIONS_FOR_IMPLEMENTATION_PARTNER", - "message": "Conditions for Implementation Partner (IP)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORK_ORDER_CONDITIONS_FOR_NON_COMPLETION", - "message": "Conditions for non-completion", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORK_ORDER_EXECUTION_OF_WORK", - "message": "Execution of work", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORK_ORDER_GENERAL_CONDITIONS", - "message": "General Conditions", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORK_ORDER_INFO", - "message": "Date of acceptance is considered as start date of the project", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORK_ORDER_SIR", - "message": "Sir", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORK_ORDER_SUBJECT", - "message": "Subject", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORK_ORDER_TERMS_AND_CONDITIONS", - "message": "Terms and Conditions", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORK_ORDER_TO", - "message": "To", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WORK_ORDER_YOURS_FAITHFULLY", - "message": "Yours Faithfully", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WP_BPA_APPLIED", - "message": "Applied", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WRR_WORKFLOW_ERROR", - "message": "Workflow returned empty object !", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS-SERVICES-MASTERS_WATERSOURCETYPE_LABEL", - "message": "Water Source", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS-SERVICES-MASTERS_WATERSOURCETYPE_PLACEHOLDER", - "message": "Select Water Source", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS-SERVICES-MASTERS_WATERSUBSOURCE_LABEL", - "message": "Water Sub Source", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS-SERVICES-MASTERS_WATERSUBSOURCE_PLACEHOLDER", - "message": "Select Water Sub Source", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS.ONE_TIME_FEE", - "message": "One Time Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_ADHOC_PENALTY_TOOLTIP", - "message": "To increase in bill amount is treated adhoc penalty.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_ADHOC_REBATE_TOOLTIP", - "message": "To reduce in bill amount is treated adhoc rebate.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_ADVANCE_CARRYFORWARD", - "message": "Advance Carry Forward", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_APPLICATION_MODIFY_CONNECTION_HEADER", - "message": "Modify Water Connection", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_APPLICATION_NEW_CONNECTION_HEADERWS_APPLICATION_NEW_CONNECTION_HEADER", - "message": "Water and Severage Application", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_APPLY_NEW_CONNECTION_HOME_CARD_LABEL", - "message": "Apply for Connection", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_APPLY_SEWERAGE", - "message": "Sewerage", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_APPLY_WATER", - "message": "Water", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_BILL_AMENDMENT_BUTTON", - "message": "Bill Amendment", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_BILL_AMEND_EDIT_APP", - "message": "Bill Amendment Edit Application", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_CHARGE", - "message": "Water Charges", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_CLICK_ON_INFO_LABEL", - "message": "to unmask the field details. Please note that this action will be recorded and stored in our database for security reasons.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_CLICK_ON_LABEL ", - "message": "Click on", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_COMMON_ADDITIONAL_DETAILS_HEADER", - "message": "Additional Details (filled by Municipal Employee)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_COMMON_APPLICATION_DISCONNECTION", - "message": "Application for Disconnection", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_COMMON_CONNECTION_DETAIL", - "message": "Connection Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_COMMON_CONNECTION_DETAILS", - "message": "Connection Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_COMMON_DISCONNECTION_DETAIL", - "message": "Disconnection Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_COMMON_DOCUMENTS_DETAILS", - "message": "Attachments", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_COMMON_DOCUMENT_DETAILS", - "message": "Document Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_COMMON_FROM_DATE_LABEL", - "message": "Date effective from", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_COMMON_INBOX_MODIFYWSCONNECTION", - "message": "Modify Water Connection", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_COMMON_INBOX_NEWWS1", - "message": "New Water Connection", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_COMMON_PAID_LABEL", - "message": "PAID", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_COMMON_PAY_NOW_LABEL", - "message": "PAY NOW", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_COMMON_ROAD_CUTTING_DETAILS", - "message": "Road Cutting Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_COMMON_SUMMARY", - "message": "Summary", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_COMMON_TABLE_COL_ACTION", - "message": "Action", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_COMMON_TABLE_COL_ACTION_LABEL", - "message": "Action", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_COMMON_TABLE_COL_ADDRESS", - "message": "Address", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_COMMON_TABLE_COL_AMT_DUE_LABEL", - "message": "Amount Due", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_COMMON_TABLE_COL_APPLICATION_STATUS", - "message": "Status", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_COMMON_TABLE_COL_APP_NO_LABEL", - "message": "Application No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_COMMON_TABLE_COL_APP_TYPE_LABEL", - "message": "Application Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_COMMON_TABLE_COL_CONSUMER_NO_LABEL", - "message": "Consumer No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_COMMON_TABLE_COL_DUE_DATE_LABEL", - "message": "Due Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_COMMON_TABLE_COL_OWN_NAME_LABEL", - "message": "Owner Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_COMMON_TABLE_COL_SERVICE_LABEL", - "message": "Service", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_COMMON_TABLE_COL_SLA", - "message": "SLA", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_COMMON_TABLE_COL_STATUS_LABEL", - "message": "Connection Status", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_COMMON_TABLE_COL_TASK_OWNER", - "message": "Task Owner", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_COMMON_TO_DATE_LABEL", - "message": "Date effective to", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_CONSUMPTION_DETAILS_ERRO_MSG", - "message": "Current Meter Reading should be equal or greater than Last Meter Reading", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_COURT_ORDER_NO", - "message": "Court Order No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_CURRENT_DEMAND", - "message": "Current Demand", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_DISCONNECTION_DETAILS", - "message": "Disconnection Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_FAQ_ANS_ONE", - "message": "To avail new water or sewerage connection, application can be submitted online through citizen account as well as by visiting to Urban Local Body.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_FAQ_ANS_THREE", - "message": "To know the status of application applicant need to login into account and then go to my application to see the detail and status of application.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_FAQ_ANS_TWO", - "message": "No, It is not at all mandatory to apply for both the connection, applicant can apply for only any one of them also.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_FAQ_QUES_ONE", - "message": "How do I apply for a new water connection?", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_FAQ_QUES_THREE", - "message": "How do I know the status of my application?", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_FAQ_QUES_TWO", - "message": "Is it must to apply for sewerage connection along with water connection?", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_FAQ_S", - "message": "FAQs", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_FEE_ROUND_OFF", - "message": "Fee Round Off", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_FORM_FEE", - "message": "Form Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_GOVTNOTIFICATION", - "message": "Government Notification", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_INBOX_HEADER", - "message": "Inbox", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_INFO_VALIDATION", - "message": "Provide at least one parameter to search for an application", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_LOAD_MORE_MSG", - "message": "Load More?", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_METER_CHARGE", - "message": "Meter Charge", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_MODIFICATIONS_EFFECTIVE_DATE", - "message": "Modification Effective Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_MODIFY_CONNECTION_BUTTON", - "message": "Modify Connection", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_MODIFY_SEWERAGE_CONNECTION", - "message": "Modify Sewerage Connection", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_MODIFY_WATER_CONNECTION", - "message": "Modify Water Connection", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_NA", - "message": "NA", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_NEW_SEWERAGE_CONNECTION", - "message": "New Sewerage Connection", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_NEW_WATER_CONNECTION", - "message": "New Water Connection", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_NO_APP_FOUND_MSG", - "message": "No connections found", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_OFFICENOTEORDER", - "message": "Office note order", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_ONE_TIME_FEE", - "message": "One Time Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_OTHER_CHARGE", - "message": "Other Charge", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_OWNER.ADDRESSPROOF.ELECTRICITYBILL", - "message": "Address Proof Electricity Bill", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_OWNER.IDENTITYPROOF.VOTERID", - "message": "Identity Proof Voter ID", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_PENALTY_HEAD", - "message": "Additional Amount", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_PLUMBER_SELF", - "message": "Self", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_PROPERTY_ID", - "message": "Property ID", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_REBATE_HEAD", - "message": "Reduced Amount", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_REBATE_PENALTY", - "message": "Adhoc Rebate/Penalty", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_REVISED_DEMAND", - "message": "Revised Demand", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_ROAD_CUTTING_CHARGE", - "message": "Road Cutting Charge", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_ROAD_CUTTING_CHARGE_DETAILS", - "message": "Road Cutting Charges", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_Round_Off", - "message": "Round Off", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_SCRUTINY_FEE", - "message": "Scrutiny Fee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_SECURITY_CHARGE", - "message": "Security Charge", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_SERVICES_MASTERS_ WATERSOURCE_BULKSUPPLY", - "message": "Bulk Supply", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_SERVICES_MASTERS_WATERSOURCE_", - "message": "NA", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_SERVICES_MASTERS_WATERSOURCE_BULKSUPPLY", - "message": "BULKSUPPLY", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_SERVICES_MASTERS_WATERSOURCE_BULKSUPPLY_RAW", - "message": "RAW", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_SERVICES_MASTERS_WATERSOURCE_BULKSUPPLY_TREATED", - "message": "TREATED", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_SERVICES_MASTERS_WATERSOURCE_GROUND", - "message": "Ground", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_SERVICES_MASTERS_WATERSOURCE_GROUND_BOREWELL", - "message": "BOREWELL", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_SERVICES_MASTERS_WATERSOURCE_GROUND_HANDPUMP", - "message": "HANDPUMP", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_SERVICES_MASTERS_WATERSOURCE_GROUND_WELL", - "message": "WELL", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_SERVICES_MASTERS_WATERSOURCE_METERED", - "message": "Metered", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_SERVICES_MASTERS_WATERSOURCE_NON_METERED", - "message": "Non Metered", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_SERVICES_MASTERS_WATERSOURCE_SURFACE", - "message": "Surface", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_SERVICES_MASTERS_WATERSOURCE_SURFACE_CANAL", - "message": "CANAL", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_SERVICES_MASTERS_WATERSOURCE_SURFACE_LAKE", - "message": "LAKE", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_SERVICES_MASTERS_WATERSOURCE_SURFACE_POND", - "message": "POND", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_SERVICES_MASTERS_WATERSOURCE_SURFACE_RAINWATER", - "message": "RAINWATER", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_SERVICES_MASTERS_WATERSOURCE_SURFACE_RECYCLEDWATER", - "message": "RECYCLEDWATER", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_SERVICES_MASTERS_WATERSOURCE_SURFACE_RIVER", - "message": "RIVER", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_SERVICE_SEWERAGE", - "message": "SEWERAGE", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_SERVICE_TYPE_undefined", - "message": "Water", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_SERVICE_WATER", - "message": "WATER", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_SERV_DETAIL_PIPE_SIZE", - "message": "Proposed Pipe Size", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_SERV_DETAIL_UNIT_OF_MEASUREMENT", - "message": "Unit of Measurement", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_SEWERAGE_APPLICATION_SEARCH", - "message": "Search Application", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_SEWERAGE_CONNECTION_SEARCH_LABEL", - "message": "Search Connection", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_SEWERAGE_INBOX", - "message": "Inbox", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_SUPPORTINGDOCUMENT", - "message": "Supporting Document", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_TASK_DETAILS_CONN_DETAIL_NO_OF_TAPS_PROPOSED", - "message": "Proposed No. Of taps", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_TAX_AND_CESS", - "message": "Tax and Cess", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_TAX_HEADER", - "message": "Tax", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_TIME_INTEREST", - "message": "Interest", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_TIME_PENALTY", - "message": "Penalty", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_TOTAL_DUE", - "message": "Total Due Amount", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_VIEW_PROPERTY_DETAILS", - "message": "View Property Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_WATER_APPLICATION_SEARCH", - "message": "Search Application", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_WATER_CESS", - "message": "Water Cess", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_WATER_CONNECTION_SEARCH_LABEL", - "message": "Search Connection", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "WS_WATER_INBOX", - "message": "Inbox", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "abc", - "message": "abc", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "abc123", - "message": "abc123", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "murali-testing-key", - "message": "murali-testing-key", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "murali-testing-key1", - "message": "murali-testing-key1", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "murali-testing-key2", - "message": "murali-testing-key2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "murali-testing-key3", - "message": "murali-testing-key3", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od", - "message": "Odisha", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.anandapur", - "message": "Anandapur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.angul", - "message": "Angul", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.aska", - "message": "Aska", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.athagarh", - "message": "Athagarh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.athmallik", - "message": "Athmallik", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.attabira", - "message": "Attabira", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.balangir", - "message": "Balangir", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.balasore", - "message": "Balasore", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.balimela", - "message": "Balimela", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.balliguda", - "message": "Balliguda ", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.balugaon", - "message": "Balugaon", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.banki", - "message": "Banki", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.banpur", - "message": "Banpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.barbil", - "message": "Barbil", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.bargarh", - "message": "Bargarh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.baripada", - "message": "Baripada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.barpali", - "message": "Barpali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.basudevpur", - "message": "Basudevpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.bellaguntha", - "message": "Bellaguntha", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.belpahar", - "message": "Belpahar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.berhampur", - "message": "Berhampur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.berhampurdevelopmentauthority", - "message": "Berhampur Development Authority", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.bhadrak", - "message": "Bhadrak", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.bhanjanagar", - "message": "Bhanjanagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.bhawanipatna", - "message": "Bhawanipatna", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.bhuban", - "message": "Bhuban", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.bhubaneswar", - "message": "Bhubaneswar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.bhubaneswardevelopmentauthority", - "message": "Bhubaneswar Development Authority", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.bijepur", - "message": "Bijepur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.binka", - "message": "Binka", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.birmitrapur", - "message": "Birmitrapur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.boudhgarh", - "message": "Boudhgarh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.brajrajnagar", - "message": "Brajrajnagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.buguda", - "message": "Buguda", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.champua", - "message": "Champua", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.chandbali", - "message": "Chandbali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.chatrapur", - "message": "Chatrapur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.chikiti", - "message": "Chikiti", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.choudwar", - "message": "Choudwar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.cuttack", - "message": "Cuttack", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.cuttackdevelopmentauthority", - "message": "Cuttack Development Authority", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.daspalla", - "message": "Daspalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.deogarh", - "message": "Deogarh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.dhamnagar", - "message": "Dhamnagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.dharamgarh", - "message": "Dharamgarh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.dhenkanal", - "message": "Dhenkanal", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.digapahandi", - "message": "Digapahandi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.ganjam", - "message": "Ganjam", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.gopalpur", - "message": "Gopalpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.gudari", - "message": "Gudari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.gudayagiri", - "message": "G. Udayagiri", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.gunupur", - "message": "Gunupur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.hindol", - "message": "Hindol", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.hinjilicut", - "message": "Hinjilicut", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.jagatsinghpur", - "message": "Jagatsinghpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.jajpur", - "message": "Jajpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.jaleswar", - "message": "Jaleswar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.jatni", - "message": "Jatni", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.jeypore", - "message": "Jeypore", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.jharsuguda", - "message": "Jharsuguda", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.joda", - "message": "Joda", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.junagarh", - "message": "Junagarh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.kabisuryanagar", - "message": "Kabisuryanagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.kalinganagardevelopmentauthority", - "message": "Kalinga Nagar Development Authority", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.kamakhyanagar", - "message": "Kamakhyanagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.kantabanji", - "message": "Kantabanji", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.karanjia", - "message": "Karanjia", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.kashinagar", - "message": "Kashinagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.kendrapara", - "message": "Kendrapara", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.keonjhargarh", - "message": "Keonjhargarh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.kesinga", - "message": "Kesinga", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.khallikote", - "message": "Khallikote", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.khandapada", - "message": "Khandapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.khariar", - "message": "Khariar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.khariarroad", - "message": "Khariar Road", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.khordha", - "message": "Khordha", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.kodala", - "message": "Kodala", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.konark", - "message": "Konark", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.koraput", - "message": "Koraput", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.kotpad", - "message": "Kotpad", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.kuchinda", - "message": "Kuchinda", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.malkangiri", - "message": "Malkangiri", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.nabarangpur", - "message": "Nabarangpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.nayagarh", - "message": "Nayagarh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.nilgiri", - "message": "Nilgiri", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.nimapara", - "message": "Nimapara", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.nuapada", - "message": "Nuapada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.odagaon", - "message": "Odagaon", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.padampur", - "message": "Padampur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.paradeep", - "message": "Paradeep", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.paradipdevelopmentauthority", - "message": "Paradip Development Authority", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.paralakhemundi", - "message": "Paralakhemundi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.patnagarh", - "message": "Patnagarh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.pattamundai", - "message": "Pattamundai", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.phulbani", - "message": "Phulbani", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.pipli", - "message": "Pipli", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.polasara", - "message": "Polasara", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.puri", - "message": "Puri", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.purikonarkdevelopmentauthority", - "message": "Puri Konark Development Authority", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.purushottampur", - "message": "Purushottampur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.rairangpur", - "message": "Rairangpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.rajgangpur", - "message": "Rajgangpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.rambha", - "message": "Rambha", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.ranpur", - "message": "Ranpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.rayagada", - "message": "Rayagada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.redhakhol", - "message": "Redhakhol", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.rourkela", - "message": "Rourkela", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.rourkeladevelopmentauthority", - "message": "Rourkela Development Authority", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.sambalpur", - "message": "Sambalpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.sambalpurdevelopmentauthority", - "message": "Sambalpur Development Authority", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.sonepur", - "message": "Sonepur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.soro", - "message": "Soro", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.sunabeda", - "message": "Sunabeda", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.sundargarh", - "message": "Sundargarh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.surada", - "message": "Surada", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.talcher", - "message": "Talcher", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.talcherangulmeramandalidevelopmentauthority", - "message": "Talcher Angul Meramandali Development Authority", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.tarbha", - "message": "Tarbha", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.testing", - "message": "testing", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.titilagarh", - "message": "Titilagarh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.tusura", - "message": "Tusura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.udala", - "message": "Udala", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.umerkote", - "message": "Umerkote", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "od.vyasanagar", - "message": "Vyasanagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "paymentinstrument", - "message": "Payment Instrument", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "pb", - "message": "Punjab", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "pb.amritsar", - "message": "Amritsar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "pb.derabassi", - "message": "Derabassi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "pb.jalandhar", - "message": "Jalandhar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "pb.nawanshahr", - "message": "Nawanshahr", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "pb.nayagaon", - "message": "Nayagaon", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "pb.phagwara", - "message": "Phagwara", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "pdf.static.label.consolidated.receipt.consumer_id", - "message": "Consumer ID", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "pdf.static.label.consolidated.receipt.logo.header", - "message": "Amritsar Muncipal Corporation", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "pdf.static.label.consolidated.receipt.payer_contact", - "message": "dummy2", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "pdf.static.label.consolidated.receipt.payer_name", - "message": "dummy3", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "pdf.static.label.consolidated.receipt.payment_date", - "message": "dummy4", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "pdf.static.label.consolidated.receipt.payment_receipt", - "message": "Payment Receipt", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "pdf.static.label.consolidated.receipt.receipt_no", - "message": "Receipt No", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "pg.balasore", - "message": "Balasore", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "pg.cityA", - "message": "City A", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "pg.cityB", - "message": "City B", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "pg.cityC", - "message": "City C", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "pg.citya", - "message": "City A", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "pg.cityb", - "message": "City B", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "pg.cityc", - "message": "City C", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "pg.cityd", - "message": "City D", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "pg.citye", - "message": "City E", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "pg.diredawa", - "message": "City H", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "receiptstatus", - "message": "Receipt Status", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "report.obps.applicationnumber", - "message": "Application No..", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "report.obps.applicationtype", - "message": "Application Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "report.obps.bankname", - "message": "Bank Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "report.obps.chequedate", - "message": "Cheque/DD Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "report.obps.chequeno", - "message": "Cheque/DD no.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "report.obps.instrumentstatus", - "message": "Instrumenr Status", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "report.obps.instrumenttype", - "message": "Instrument Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "report.obps.lastfourdigits", - "message": "Last 4 digits of card", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "report.obps.name", - "message": "Applicant Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "report.obps.receiptdate", - "message": "Receipt Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "report.obps.receiptnumber", - "message": "Receipt No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "report.obps.totalamountpaid", - "message": "Amount (Rs)", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "report.obps.transactionid", - "message": "Transaction ID", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "report.tl.applicationchannel", - "message": "Application Channel", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "report.tl.commencementdate", - "message": "Trade Commencement date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "report.tl.currentstatus", - "message": "Current Status", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "report.tl.financialyear", - "message": "License year", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "report.tl.instrumentstatus", - "message": "Status", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "report.tl.issueddate", - "message": "License issued date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "report.tl.licenseexpirydate", - "message": "License Expirydate", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "report.tl.locality", - "message": "Locality", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "report.tl.name", - "message": "Trade Owner Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "report.tl.structuretype", - "message": "Structure type/subtype", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "report.tl.tradeaddress", - "message": "Trade Address", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "report.tl.tradename", - "message": "Trade name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "report.tl.tradesubtype", - "message": "Trade SubType", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "report.tl.tradetype", - "message": "Trade Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "report.tl.tradetypesubtype", - "message": "Trade Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "report.wns.chequeno", - "message": "Cheque/DD no", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "report.wns.consumercode", - "message": "Consumer Number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "report.wns.locality", - "message": "Locality", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "report.wns.name", - "message": "Collector Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "report.wns.payername", - "message": "Payer Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "report.wns.paymentmode", - "message": "Payment Instrument", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "report.wns.receiptdate", - "message": "Receipt Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "report.wns.receiptnumber", - "message": "Receipt No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "report.wns.service", - "message": "Service", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "report.wns.totalamountpaid", - "message": "Amount Collected", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "report.wns.totaldue", - "message": "Due Amount", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "report.wns.totaltransactions", - "message": "Total Transactions", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "report.wns.transactionnumber", - "message": "Transaction No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports-tl-instrumenttype", - "message": "Instrument type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports-tl-instrumenttype_PLACE", - "message": "Instrument type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports-wns-serviceName", - "message": "Service Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports-wns-serviceName_PLACE", - "message": "Service Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.Block.label", - "message": "Block", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.Locality.label", - "message": "Locality", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.Zone.label", - "message": "Zone", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.common.CollectionRegister.card", - "message": "Card", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.common.CollectionRegister.cash", - "message": "Cash", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.common.CollectionRegister.channel", - "message": "Collection Channel", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.common.CollectionRegister.cheque", - "message": "Cheque", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.common.CollectionRegister.dd", - "message": "DD", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.common.CollectionRegister.fromdate", - "message": "From Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.common.CollectionRegister.mode", - "message": "Payment Mode", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.common.CollectionRegister.noofreceipts", - "message": "No of receipts", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.common.CollectionRegister.online", - "message": "Online", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.common.CollectionRegister.service", - "message": "Service Category", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.common.CollectionRegister.service.ulb", - "message": "ULB", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.common.CollectionRegister.serviceResult", - "message": "Service", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.common.CollectionRegister.taxcollector", - "message": "Tax Collector Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.common.CollectionRegister.todate", - "message": "To Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.common.CollectionRegister.total", - "message": "Total", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.common.CollectionRegister.transactions", - "message": "No of Transactions", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.common.CollectionRegister.ulb", - "message": "ULB", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.mcollect.amountcollected", - "message": "Amount Collected", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.mcollect.challannumber", - "message": "Challan No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.mcollect.chequeNo", - "message": "Cheque/DD No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.mcollect.collectorname", - "message": "Collection Agent Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.mcollect.consumername", - "message": "Consumer Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.mcollect.fromDate", - "message": "From Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.mcollect.locality", - "message": "Locality / Mohalla", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.mcollect.payername", - "message": "Payer name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.mcollect.paymentType", - "message": "Payment Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.mcollect.paymentinstrument", - "message": "Payment Instrument", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.mcollect.receiptdate", - "message": "Receipt Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.mcollect.receiptnumber", - "message": "Receipt No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.mcollect.receiptstatus", - "message": "Receipt Status", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.mcollect.service", - "message": "Service Category", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.mcollect.servicedetails", - "message": "Service Details", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.mcollect.status", - "message": "Challan Status", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.mcollect.toDate", - "message": "To Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.mcollect.totalamount", - "message": "Total Amount", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.mcollect.totalchallans", - "message": "Total Challans", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.mcollect.totaltransaction", - "message": "Total Transactions", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.mcollect.transactionnumber", - "message": "Transaction No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.noc.applicationstatusreport.appStatus", - "message": "Application Status ", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.noc.applicationstatusreport.fromDate", - "message": "From Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.noc.applicationstatusreport.noofapplications", - "message": "Number of Applications", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.noc.applicationstatusreport.toDate", - "message": "To Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.noc.applicationstatusreport.ulb", - "message": "ULB", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.noc.channelsreport.applicationNo", - "message": "Number of Applications", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.noc.channelsreport.channel", - "message": "Channels Report", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.noc.channelsreport.fromDate", - "message": "From Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.noc.channelsreport.percentage", - "message": "Percentage of Application", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.noc.channelsreport.toDate", - "message": "To Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.noc.channelsreport.ulb", - "message": "ULB", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.noc.collectionreport.channel", - "message": "Collection Channel", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.noc.collectionreport.fees_counter", - "message": "Fee Collected counter", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.noc.collectionreport.fees_online", - "message": "Fee Collected online", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.noc.collectionreport.fromDate", - "message": "From Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.noc.collectionreport.paymentMode", - "message": "Payment Mode", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.noc.collectionreport.toDate", - "message": "To Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.noc.collectionreport.transactionNumber", - "message": "Total Transaction", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.noc.collectionreport.ulb", - "message": "ULB", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.noc.collectionreport.usagetype", - "message": "Building Usage Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.obps.applicationchannel", - "message": "Application Channel", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.obps.applicationdate", - "message": "Application Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.obps.applicationno", - "message": "Application No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.obps.applicationtype", - "message": "Application Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.obps.currentowner", - "message": "Current Owner", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.obps.name", - "message": "Applicant Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.obps.occupancytype", - "message": "Occupancy Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.obps.permitno", - "message": "Permit / OC number", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.obps.servicetype", - "message": "Service Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.obps.status", - "message": "Application Status", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.pgr.datefrom", - "message": "From Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.pgr.dateto", - "message": "To Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.pgr.dept.name", - "message": "Department", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.pgr.status", - "message": "Nature of complaint", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.pt.amountCollected", - "message": "Amount Collected", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.pt.chequeNo", - "message": "Cheque/DD No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.pt.collectorname", - "message": "Collector Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.pt.consumername", - "message": "Consumer Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.pt.dueamount", - "message": "Due Amount", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.pt.fromDate", - "message": "From Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.pt.locality", - "message": "Locality", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.pt.payerName", - "message": "Payer Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.pt.paymentdate", - "message": "Receipt Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.pt.paymentinstrument", - "message": "Payment Instrument", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.pt.paymentmode", - "message": "Payment Instrument", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.pt.propertyid", - "message": "Property UID", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.pt.propertystatus", - "message": "Property Status", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.pt.receiptnumber", - "message": "Receipt No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.pt.receiptstatus", - "message": "Receipt Status", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.pt.toDate", - "message": "To Date", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.pt.totaltransactions", - "message": "Total Transactions", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.pt.transactionnumber", - "message": "Transaction No.", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.pt.usagetype", - "message": "Usage Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.tl.applicationchannel", - "message": "Application Channel", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.tl.applicationstatus", - "message": "Application Status", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.tl.applicationtype", - "message": "Application Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.tl.instrumentstatus", - "message": "Status", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.tl.workflowstatus", - "message": "Application Status", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.wns.CollectionOperator", - "message": "Collection Operator", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.wns.connectionType", - "message": "Connection Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.wns.connectionType_PLACE", - "message": "Connection Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.wns.locality", - "message": "Locality", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.wns.locality_PLACE", - "message": "Locality", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.wns.paymentmode", - "message": "Payment Mode", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.wns.paymentmode_PLACE", - "message": "Payment Mode", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.wns.receiptStatus", - "message": "Receipt Status", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.wns.receiptStatus_PLACE", - "message": "Receipt Status", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.wns.serviceName", - "message": "Service Name", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.wns.totaltransactions", - "message": "Total Transactions", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.wns.usageType", - "message": "Usage Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "reports.wns.usageType_PLACE", - "message": "Usage Type", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "statea.cityone", - "message": "City one", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "statea.citythree", - "message": "City three", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "statea.citytwo", - "message": "City two", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "test.s.emoji", - "message": "Pending for Assignment 🏠", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "testlocall", - "message": "yoyoyoyo", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.almora", - "message": "Almora", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.augustmuni", - "message": "Augustmuni", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.badrinath", - "message": "Badrinath", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.bageshwar", - "message": "Bageshwar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.banbasa", - "message": "Banbasa", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.barkot", - "message": "Barkot", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.bazpur", - "message": "Bazpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.berinag", - "message": "Berinag", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.bhagwanpur", - "message": "Bhagwanpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.bhikiyasain", - "message": "Bhikiyasain", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.bhimtal", - "message": "Bhimtal", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.bhowali", - "message": "Bhowali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.chamba", - "message": "Chamba", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.chamiyala", - "message": "Chamiyala", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.chamoligopeshwar", - "message": "Chamoli Gopeshwar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.champawat", - "message": "Champawat", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.chinyalisaur", - "message": "Chinyalisaur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.dehradun", - "message": "Dehradun", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.devaprayag", - "message": "Devaprayag", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.dharchula", - "message": "Dharchula ", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.didihat", - "message": "Didihat", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.dineshpur", - "message": "Dineshpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.doiwala", - "message": "Doiwala", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.dugadda", - "message": "Dugadda", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.dwarahat", - "message": "Dwarahat", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.gadarpur", - "message": "Gadarpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.gairsain", - "message": "Gairsain", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.gaja", - "message": "Gaja", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.gangolihat", - "message": "Gangolihat", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.gangotri", - "message": "Gangotri", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.gauchar", - "message": "Gauchar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.ghansali", - "message": "Ghansali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.gularbhoj", - "message": "Gularbhoj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.haldwani", - "message": "Haldwani", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.haridwar", - "message": "Haridwar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.herbertpur", - "message": "Herbertpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.jaspur", - "message": "Jaspur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.jhabrera", - "message": "Jhabrera", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.joshimath", - "message": "Joshimath", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.kaladhungi", - "message": "Kaladhungi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.kapkot", - "message": "Kapkot", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.karnaprayag", - "message": "Karnaprayag", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.kashipur", - "message": "Kashipur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.kedarnath", - "message": "Kedarnath", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.khatima", - "message": "Khatima", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.kichha", - "message": "Kichha", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.kirtinagar", - "message": "Kirtinagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.kotdwar", - "message": "Kotdwar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.laksar", - "message": "Laksar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.lalkuan", - "message": "lalkuan", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.lambgaon", - "message": "Lambgaon", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.landhaura", - "message": "Landhaura", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.lohaghat", - "message": "Lohaghat", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.mahuakheraganj", - "message": "Mahua Kheraganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.mahuwadawara", - "message": "Mahuwadawara", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.manglaur", - "message": "manglaur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.munikireti", - "message": "Munikireti", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.mussorie", - "message": "Mussorie", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.nainital", - "message": "Nainital", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.nanakmatta", - "message": "Nanakmatta", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.nandprayag", - "message": "Nandprayag", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.narendranagar", - "message": "Narendranagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.naugaon", - "message": "Naugaon", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.pauri", - "message": "Pauri", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.pipalkoti", - "message": "PIPALKOTI", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.pirankaliyar", - "message": "Piran kaliyar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.pithoragarh", - "message": "Pithoragarh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.pokhari", - "message": "Pokhari", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.purola", - "message": "Purola", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.ramnagar", - "message": "Ramnagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.rishikesh", - "message": "Rishikesh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.roorkee", - "message": "Roorkee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.rudraprayag", - "message": "Rudraprayag", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.rudrapur", - "message": "Rudrapur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.satpuli", - "message": "Satpuli", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.shaktigarh", - "message": "Shaktigarh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.sitarganj", - "message": "Sitarganj", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.srinagar", - "message": "Srinagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.sultanpur", - "message": "Sultanpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.swargashramjonk", - "message": "swargashram jonk", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.tanakpur", - "message": "Tanakpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.tehri", - "message": "Tehri", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.testing", - "message": "Testing", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.tharali", - "message": "Tharali", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.tilwara", - "message": "Tilwara", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.ukhimath", - "message": "Ukhimath", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.uttarkashi", - "message": "Uttarkashi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.uttarkhand", - "message": "Uttarkhand", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "uk.vikasnagar", - "message": "Vikasnagar", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "up.agra", - "message": "Agra", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "up.aligarh", - "message": "Aligarh", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "up.fatehpur", - "message": "Fatehpur", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "up.ghaziabad", - "message": "Ghaziabad", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "up.lucknow", - "message": "Lucknow", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "up.varanasi", - "message": "Varanasi", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "v3", - "message": "Employee", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "प्रोफ़ाइल संपादित करें", - "message": "EDIT_PROFILE", - "module": "rainmaker-common", - "locale": "en_IN" - }, - { - "code": "प्रोफ़ाइल संपादित करें ", - "message": "Edit Profile", - "module": "rainmaker-common", - "locale": "en_IN" - } -] \ No newline at end of file diff --git a/utilities/default-data-handler/src/main/resources/localisations-dev/en_IN/rainmaker-hr.json b/utilities/default-data-handler/src/main/resources/localisations-dev/en_IN/rainmaker-hr.json deleted file mode 100644 index 9b5f7a5e..00000000 --- a/utilities/default-data-handler/src/main/resources/localisations-dev/en_IN/rainmaker-hr.json +++ /dev/null @@ -1,2072 +0,0 @@ -[ - { - "code": "ACCESSCONTROL_ROLES_ROLES_LOC_ADMIN", - "message": "Localization Admin", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_MDMS_ADMIN", - "message": "Workbench MDMS Admin", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_PGR_VIEWER", - "message": "Complaints Viewer", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_PT_CEMP", - "message": "Property Tax Counter Employee", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_REINDEXING_ROLE", - "message": "Reindexing Role", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_SW_APPROVER", - "message": "SW Approver", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_SW_CEMP", - "message": "SW Counter Employee", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_SW_CLERK", - "message": "SW Clerk", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_SW_DOC_VERIFIER", - "message": "SW Doc Verifier", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_SW_FIELD_INSPECTOR", - "message": "SW Field Inspector", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_TICKET_REPORT_VIEWER", - "message": "Reports Viewer", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_WORKFLOW_ADMIN", - "message": "Workflow Admin", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_WS_APPROVER", - "message": "WS Approver", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_WS_CEMP", - "message": "WS Counter Employee", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_WS_CLERK", - "message": "WS Clerk", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_WS_DOC_VERIFIER", - "message": "WS Doc Verifier", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_WS_FIELD_INSPECTOR", - "message": "WS Field Inspector", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ACTIVATE EMPLOYEE", - "message": "Activate Employee", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ADMIN", - "message": "Admin", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "COMMON_GENDER_NONBINARY", - "message": "Non Binary", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "COMMON_GENDER_PREFERNOTTODISCLOSE", - "message": "Prefer not to disclose", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DEPARTMENT_ACC", - "message": "Accounts", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DEPARTMENT_ADM", - "message": "Administration", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DEPARTMENT_NULM", - "message": "National Urban Livelihood Mission", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DEPARTMENT_PHS", - "message": "Public Health and Sanitation", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DEPARTMENT_PR", - "message": "Public Relations", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DEPARTMENT_REV", - "message": "Tax", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DEPARTMENT_TWP", - "message": "Town Planning", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DEPARTMENT_WRK", - "message": "Works", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "COMMON_RELATION_FATHER", - "message": "FATHER", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "COMMON_RELATION_HUSHBAND", - "message": "HUSHBAND", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "CONTRACT", - "message": "Contract", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_SUB_COMPLAINT_TYPE", - "message": "Complaint Sub-Type", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_LOCALITY", - "message": "Locality", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_SELECT_CITY", - "message": "City", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "DAILYWAGES", - "message": "Dailywages", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "DEPUTATION", - "message": "Deputation", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "EGOV_HRMS_DEACTIVATIONREASON_ORDERBYCOMMISSIONER", - "message": "Order by Commissioner", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "EGOV_HRMS_DEACTIVATIONREASON_OTHERS", - "message": "Others", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "EGOV_HRMS_DEGREE_10+2_EQUIVALENTDIPLOMA", - "message": "10+2/EQUIVALENTDIPLOMA", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "EGOV_HRMS_DEGREE_B_A_B_SC__B_COM_BBA", - "message": "B.A/B.SC./B.COM/BBA", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "EGOV_HRMS_DEGREE_B_E_B_TECH_", - "message": "B.E/B.TECH.", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "EGOV_HRMS_DEGREE_DOCTORATE", - "message": "DOCTORATE", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "EGOV_HRMS_DEGREE_LLB_LLM", - "message": "LLB/LLM", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "EGOV_HRMS_DEGREE_MATRICULATION", - "message": "MATRICULATION", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "EGOV_HRMS_DEGREE_MBA_PGDM", - "message": "MBA/PGDM", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "EGOV_HRMS_DEGREE_M_A_M_COM__M_SC_", - "message": "M.A/M.COM./M.SC.", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "EGOV_HRMS_DEGREE_M_E_M_TECH_", - "message": "M.E/M.TECH.", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "EGOV_HRMS_DEGREE_OTHER", - "message": "OTHER", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "EGOV_HRMS_EMPLOYEESTATUS_DECEASED", - "message": "DECEASED", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "EGOV_HRMS_EMPLOYEESTATUS_EMPLOYED", - "message": "EMPLOYED", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "EGOV_HRMS_EMPLOYEESTATUS_RESIGNED", - "message": "RESIGNED", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "EGOV_HRMS_EMPLOYEESTATUS_RETIRED", - "message": "RETIRED", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "EGOV_HRMS_EMPLOYEESTATUS_SUSPENDED", - "message": "SUSPENDED", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "EGOV_HRMS_EMPLOYEESTATUS_TERMINATED", - "message": "TERMINATED", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "EGOV_HRMS_EMPLOYEESTATUS_TRANSFERRED", - "message": "TRANSFERRED", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "EGOV_HRMS_EMPLOYEETYPE_CONTRACT", - "message": "CONTRACT", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "EGOV_HRMS_EMPLOYEETYPE_DAILYWAGES", - "message": "DAILYWAGES", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "EGOV_HRMS_EMPLOYEETYPE_DEPUTATION", - "message": "DEPUTATION", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "EGOV_HRMS_EMPLOYEETYPE_PERMANENT", - "message": "PERMANENT", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "EGOV_HRMS_EMPLOYEETYPE_TEMPORARY", - "message": "TEMPORARY", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "EGOV_HRMS_EMPLOYMENTTEST_APTITUDETEST", - "message": "APTITUDE TEST", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "EGOV_HRMS_EMPLOYMENTTEST_MAINS", - "message": "MAINS", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "EGOV_HRMS_EMPLOYMENTTEST_PRELIMS", - "message": "PRELIMS", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "EGOV_HRMS_SPECALIZATION_ARTS", - "message": "Arts", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "EGOV_HRMS_SPECALIZATION_SCIENCE", - "message": "Science", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_RESPONSE_ACTIVATION_ACTION", - "message": "Employee Reactivated Successfully", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_RESPONSE_CREATE_ACTION", - "message": "Employee Created Successfully", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_RESPONSE_CREATE_ACTION_ERROR", - "message": "Employee Creation Failed", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_RESPONSE_CREATE_LABEL", - "message": "Employee ID", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_RESPONSE_DEACTIVATION_ACTION", - "message": "Employee Deactivated Successfully", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_RESPONSE_DEACTIVATION_ACTION_ERROR", - "message": "Employee Deactivation Failed", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_RESPONSE_UPDATE_ACTION", - "message": "Employee Details Updated Successfully", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE_RESPONSE_UPDATE_ACTION_ERROR", - "message": "Employee Details Update Failed", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ERR_ALL_MANDATORY_FIELDS", - "message": "Enter data in all mandatory fields", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ERR_BASE_TENANT_MANDATORY", - "message": "Atleast one Jurisdiction should be selected in Parent city", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ERR_HRMS_BULK_CREATE_DUPLICATE_EMPCODE", - "message": "Bulk request has duplicate employee code", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ERR_HRMS_BULK_CREATE_DUPLICATE_MOBILE", - "message": "Bulk request has duplicate mobile number", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ERR_HRMS_GENERATE_ID_ERROR", - "message": "Unable to create ids", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ERR_HRMS_INVALID_ASSIGNMENT_CURRENT_TO_DATE", - "message": "To Date field should be blank for current assignment of the employee.", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ERR_HRMS_INVALID_ASSIGNMENT_DATES", - "message": "Employee period of assignment (From Date or To date) can not be before date of birth.", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ERR_HRMS_INVALID_ASSIGNMENT_DATES_APPOINTMENT", - "message": "Employee period of assignment (From Date or To date) can not be before date of appointment.", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ERR_HRMS_INVALID_ASSIGNMENT_NOT_CURRENT_TO_DATE", - "message": "To date field should not be blank for non current assignment of the employee.", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ERR_HRMS_INVALID_ASSIGNMENT_PERIOD", - "message": "Invalid period of assignment (From date - To date).", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ERR_HRMS_INVALID_BOUNDARY_TYPE_HEIRARCHY", - "message": "Jurisiction boundary type value is invalid.", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ERR_HRMS_INVALID_CURRENT_ASSGN", - "message": "There should be exactly one current assignment for the employee.", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ERR_HRMS_INVALID_DATE_OF_APPOINTMENT", - "message": "Invalid employee date of appointment entered by the user.", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ERR_HRMS_INVALID_DATE_OF_APPOINTMENT_DOB", - "message": "Employee date of appointment can not be before date of birth.", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ERR_HRMS_INVALID_DEACT_REASON", - "message": "Employee deactivation reason is invalid.", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ERR_HRMS_INVALID_DEACT_REQUEST", - "message": "Employee active flag should be set as false during deactivation.", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ERR_HRMS_INVALID_DEPARTMENTAL_TEST", - "message": "Departmental evaluation test of the employee is invalid.", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ERR_HRMS_INVALID_DEPARTMENTAL_TEST_PASSING_YEAR", - "message": "Departmental evaluation test passing year of the employee can not be before date of birth.", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ERR_HRMS_INVALID_DEPT", - "message": "Invalid department of employee entered.", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ERR_HRMS_INVALID_DESG", - "message": "Invalid designation of employee.", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ERR_HRMS_INVALID_DOB", - "message": "Invalid date of birth entered.", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ERR_HRMS_INVALID_EDUCATIONAL_PASSING_YEAR", - "message": "Education year of passing of the employee can not be before date of birth.", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ERR_HRMS_INVALID_EDUCATIONAL_STREAM", - "message": "Education stream of the employee is invalid.", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ERR_HRMS_INVALID_EMP_STATUS_ROLE", - "message": "Invalid employment status entered.", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ERR_HRMS_INVALID_EMP_TYPE", - "message": "Invalid employee type entered.", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ERR_HRMS_INVALID_JURISDICTION_ACTIIEV_NULL", - "message": "Jurisiction should have atleast 1 active data", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ERR_HRMS_INVALID_JURISDICTION_BOUNDARY", - "message": "Jurisiction boundary value is invalid.", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ERR_HRMS_INVALID_JURISDICTION_HEIRARCHY", - "message": "Jurisiction hierarchy value is invalid.", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ERR_HRMS_INVALID_MOB_NO", - "message": "Invalid mobile number entered.", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ERR_HRMS_INVALID_QUALIFICATION", - "message": "Qualification of the employee is invalid.", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ERR_HRMS_INVALID_ROLE", - "message": "Invalid role assigned to the employee.", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ERR_HRMS_INVALID_SEARCH_AOD", - "message": "Along with as on date, atleast one department and designation need to be passed as search criteria.", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ERR_HRMS_INVALID_SEARCH_REQ", - "message": "Open search is disabled for this user.", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ERR_HRMS_INVALID_SEARCH_ROLES", - "message": "For search based on roles, passing of tenant id is mandatory.", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ERR_HRMS_INVALID_SEARCH_USER", - "message": "For search based on phone number and name, passing of tenant id is mandatory.", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ERR_HRMS_INVALID_SERVICE_ASSGN", - "message": "There should be maximum one currently working service for the employee.", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ERR_HRMS_INVALID_SERVICE_CURRENT_TO_DATE", - "message": "To Date of service period should be blank for currently working employees.", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ERR_HRMS_INVALID_SERVICE_DATES", - "message": "Employee service period (From date or To date) can not be before date of birth.", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ERR_HRMS_INVALID_SERVICE_NOT_CURRENT_TO_DATE", - "message": "To Date of service period should not be blank for currently non working employees.", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ERR_HRMS_INVALID_SERVICE_PERIOD", - "message": "Service period (From date or To date) of employee is invalid.", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ERR_HRMS_INVALID_SERVICE_STATUS", - "message": "Service stataus of employee is invalid.", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ERR_HRMS_MISSING_ROLES", - "message": "Invalid mobile number entered.", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ERR_HRMS_OVERLAPPING_ASSGN", - "message": "There should not be overlapping period of assignments for the employee.", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ERR_HRMS_OVERLAPPING_ASSGN_CURRENT", - "message": "Period of assignements of employee should not be after current assignment.", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ERR_HRMS_OVERLAPPING_SERVICEHISTORY_CURRENT", - "message": "Period of service details of employee should not be after current assignment!", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ERR_HRMS_UPDATE_ASSIGNEMENT_INCOSISTENT", - "message": "Assignment data in an update request should contain all previously entered data.", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ERR_HRMS_UPDATE_DEACT_DETAILS_INCORRECT_EFFECTIVEFROM", - "message": "Employee deactivation effective date should not be future date.", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ERR_HRMS_UPDATE_DEACT_DETAILS_INCOSISTENT", - "message": "Employee deactivation data in an update request should contain all previously entered data.", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ERR_HRMS_UPDATE_DOCUMENT_INCOSISTENT", - "message": "Employee document data in an update request should contain all previously entered data.", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ERR_HRMS_UPDATE_EDUCATION_INCOSISTENT", - "message": "Education data in an update request should contain all previously entered data.", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ERR_HRMS_UPDATE_EMPLOYEE_CODE_CHANGE", - "message": "Employee code can not be changed in an update request.", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ERR_HRMS_UPDATE_EMPLOYEE_NOT_EXIST_CODE", - "message": "No employee found for given UUID.", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ERR_HRMS_UPDATE_EXISTING_MOBNO", - "message": "User exist for given mobile no", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ERR_HRMS_UPDATE_JURISDICTION_INCOSISTENT", - "message": "Jurisdiction data in an update request should contain all previously entered data.", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ERR_HRMS_UPDATE_NULL", - "message": "Employee Code in an update request should not be null.", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ERR_HRMS_UPDATE_NULL_ID", - "message": "Employee ID in an update request should not be null.", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ERR_HRMS_UPDATE_NULL_UUID", - "message": "Employee UUID in an update request should not be null.", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ERR_HRMS_UPDATE_SERVICE_HISTORY_INCOSISTENT", - "message": "Service history data in an update request should contain all previously entered data.", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ERR_HRMS_UPDATE_TESTS_INCOSISTENT", - "message": "Employee evaluation test data in an update request should contain all previously entered data.", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ERR_HRMS_USER_CREATION_FAILED", - "message": "User creation failed at the user service.", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ERR_HRMS_USER_EXIST_MOB", - "message": "User already exists for the entered mobile number. Use a different mobile number to proceed.", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ERR_HRMS_USER_EXIST_USERNAME", - "message": "User already exists for the entered user name.", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ERR_HRMS_USER_UPDATION_FAILED", - "message": "User updation failed at the user service.", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ERR_MOBILE_NUMBER_EXISTS_FIELDS", - "message": "Mobile number already in use. Enter another mobile number", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_SEARCH_BY", - "message": "SEARCH BY:", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "ES_SEARCH_APPLICATION_MOBILE_INVALID", - "message": "Please provide a valid mobile number", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HE_NEW_EMPLOYEE_CITY_LABEL", - "message": "New Employee Locality", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HE_NEW_EMPLOYEE_CITY_LABEL ", - "message": "New Employee Locality", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HRMS_CREATE_EMPLOYEE_INFO", - "message": "The login credentials have been shared with the employee via SMS on the registered mobile number.", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HRMS_CREATE_EMPLOYEE_RESPONSE_MESSAGE", - "message": "Employee Created Successfully", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HRMS_SEARCH_RESET_BUTTON", - "message": "Reset", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HRMS_UPDATE_EMPLOYEE_RESPONSE_MESSAGE", - "message": "SUCCESS", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_ACTION_NO_FILEUPLOADED", - "message": "No File Selected", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_ACTIVATE_EMPLOYEE_HEAD", - "message": "Activate Employee", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_ACTIVATE_EMPLOYEE_LABEL", - "message": "Activate Employee", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_ACTIVATE_HEAD", - "message": "Active", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_ACTIVATION_REASON", - "message": "Reason for Re-activation", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_ACTIVATION_REASON_SELECT", - "message": "Select Reason for Re-activation", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_ADD_ASSIGNMENT", - "message": "ADD ASSIGNMENT", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_ADD_JURISDICTION", - "message": "ADD JURISDICTION", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_ADD_NEW_EMPLOYEE_BUTTON", - "message": "Add Employee", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_ADD_QUALIFICATIONS", - "message": "ADD QUALIFICATIONS", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_ADD_SERVICE_ENTRY", - "message": "ADD SERVICE ENTRY", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_ADD_TEST", - "message": "ADD TEST", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_APPOINTMENT_DATE_LABEL", - "message": "Date of Appointment", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_APPROVAL_UPLOAD_HEAD", - "message": "Supporting Documents", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_APPT_DATE_LABEL", - "message": "Date of Appointment", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_APPT_DATE_PLACEHOLDER", - "message": "Enter Date of Appointment", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_ASMT_FROM_DATE_LABEL", - "message": "Assigned From Date", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_ASMT_FROM_DATE_PLACEHOLDER", - "message": "Assigned From Date", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_ASMT_TO_DATE_LABEL", - "message": "Assigned To Date", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_ASMT_TO_DATE_LABEL_PLACEHOLDER", - "message": "Assigned To Date", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_ASMT_TO_DATE_PLACEHOLDER", - "message": "Assigned To Date", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_ASSIGNMENT", - "message": "Assignment", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_ASSIGN_DET_HEADER", - "message": "Assignment Details", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_ASSIGN_DET_SUB_HEADER", - "message": "Verify entered details before submission. Assignment details cannot be edited once submitted.", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_BIRTH_DATE_LABEL", - "message": "Date of Birth", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_BIRTH_DATE_PLACEHOLDER", - "message": "Date of Birth", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_BOUNDARY_LABEL", - "message": "Boundary", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_BOUNDARY_PLACEHOLDER", - "message": "Select Boundary", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_BOUNDARY_TYPE_LABEL", - "message": "Boundary Type", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_BOUNDARY_TYPE_PLACEHOLDER", - "message": "Select Boundary Type", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_CITY_SELECT_LABEL", - "message": "Select", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_CITY_SELECT_LABEL ", - "message": "Select", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_COMMON_APPLY", - "message": "Apply", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_COMMON_APPL_NEW_HEADER", - "message": "Create New Employee", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_COMMON_BUTTON_HOME", - "message": "Home", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_COMMON_BUTTON_NXT_STEP", - "message": "Next Step", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_COMMON_BUTTON_PREV_STEP", - "message": "Previous Step", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_COMMON_BUTTON_SUBMIT", - "message": "Submit", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_COMMON_CLEAR_SEARCH", - "message": "Clear Search", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_COMMON_CREATE_EMPLOYEE_HEADER", - "message": "Create Employee", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_COMMON_DEACTIVATED_EMPLOYEE_HEADER", - "message": "Deactivate Employee", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_COMMON_EDIT_EMPLOYEE_HEADER", - "message": "Edit Employee", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_COMMON_FILTER", - "message": "Filter By", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_COMMON_HEADER", - "message": "Employee Management", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_COMMON_REACTIVATED_EMPLOYEE_HEADER", - "message": "Reactivate Employee", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_COMMON_SEARCH", - "message": "Apply", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_COMMON_TABLE_COL_DEPT", - "message": "Department", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_COMMON_TABLE_COL_DESG", - "message": "Designation", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_COMMON_TABLE_COL_EMP_ID", - "message": "Employee ID", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_COMMON_TABLE_COL_NAME", - "message": "Name", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_COMMON_TABLE_COL_ROLE", - "message": "Role", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_COMMON_TABLE_COL_STATUS", - "message": "Status", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_COMMON_TABLE_COL_TENANT_ID", - "message": "Tenant", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_COMMON_TAKE_ACTION", - "message": "Take Action", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_COMMON_UPDATE_EMPLOYEE_HEADER", - "message": "Employee Update", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_CORRESPONDENCE_ADDRESS_LABEL", - "message": "Correspondence Address", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_CORRESPONDENCE_ADDRESS_PLACEHOLDER", - "message": "Enter Corrospondence Address", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_CREATE_SUCCESS_MESSAGE", - "message": "Employee Created Successfully", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_CREATE_SUCCESS_SUBHEADER", - "message": "A notification has been sent to the created Employee at registered Mobile No.", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_CURRENTLY_ASSIGNED_HERE_SWITCH_LABEL", - "message": "Currently Assigned Here", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_CURRENTLY_WORKING_HERE_SWITCH_LABEL", - "message": "Currently Working Here", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_CURR_ASSIGN_LABEL", - "message": "Currently Assigned Here", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_CURR_WORKING_LABEL", - "message": "Currently Working Here", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_DEACTIVATE", - "message": "DEACTIVATE", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_DEACTIVATE_EMPLOYEE_BUTTON_TEXT", - "message": "Deactivate Employee", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_DEACTIVATE_EMPLOYEE_HEAD", - "message": "Deactivate Employee", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_DEACTIVATE_EMPLOYEE_LABEL", - "message": "DEACTIVATE EMPLOYEE", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_DEACTIVATE_HEAD", - "message": "Inactive", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_DEACTIVATE_SUCCESS_MESSAGE", - "message": "Employee Deactivated Successfully", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_DEACTIVATE_SUCCESS_SUBHEADER", - "message": " ", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_DEACTIVATION_REASON", - "message": "Reason for Deactivation", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_DEACTIVATION_REASON_SELECT", - "message": "Select Reason for Deactivation", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_DEGREE_LABEL", - "message": "Degree", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_DEGREE_PLACEHOLDER", - "message": "Select Degree", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_DEPARTMENT_PLACEHOLDER", - "message": "Select Department", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_DEPT_LABEL", - "message": "Department", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_DEPT_PLACEHOLDER", - "message": "Select Department", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_DEPT_TEST_HEADER", - "message": "Department Test Details", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_DESG_LABEL", - "message": "Designation", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_DESIGNATION_PLACEHOLDER", - "message": "Select Designation", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_DESIG_PLACEHOLDER", - "message": "Select Designation", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_DETAILS_HEADER", - "message": "Adminstrative Details", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_DOB_LABEL", - "message": "DOB", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_EDIT_DETAILS_LABEL", - "message": "EDIT DETAILS", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_ED_QUAL_HEADER", - "message": "Education Qualification", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_EFFECTIVE_DATE", - "message": "Effective Date", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_EMAIL_LABEL", - "message": "Email", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_EMAIL_PLACEHOLDER", - "message": "Enter Email", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_EMPLOYEE_ID_LABEL", - "message": "Employee ID", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_EMPLOYEE_ID_PLACEHOLDER", - "message": "Enter Employee ID", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_EMPLOYMENT_TYPE_LABEL", - "message": "Employement Type", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_EMPLOYMENT_TYPE_PLACEHOLDER", - "message": "Select Employment Type", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_EMP_ID_ERR_MSG", - "message": "Invalid Employee ID", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_EMP_ID_LABEL", - "message": "Employee ID", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_EMP_ID_MESSAGE", - "message": "ID assigned to employee by the municipality. Incase there is no ID assigned, leave the column blank for the system to generate the Employee ID.", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_EMP_ID_PLACEHOLDER", - "message": "Enter Employee ID", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_EMP_MOBILE_ERR_MSG", - "message": "Invalid Mobile Number", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_EMP_MOBILE_LABEL", - "message": "Employee Mobile No.", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_EMP_MOBILE_PLACEHOLDER", - "message": "Enter Employee Mobile No.", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_EMP_NAME_ERR_MSG", - "message": "Invalid Name", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_EMP_NAME_LABEL", - "message": "Employee Name", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_EMP_NAME_PLACEHOLDER", - "message": "Enter Employee Name", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_EMP_STATUS_LABEL", - "message": "Employment Status", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_EMP_TYPE_LABEL", - "message": "Employee Type", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_EMP_TYPE_PLACEHOLDER", - "message": "Select Employee Type", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_ENTER_ORDER_NO", - "message": "Enter Order No.", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_ENTER_REMARKS", - "message": "Enter Remarks", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_FATHER_HUSBANDS_NAME_LABEL", - "message": "Father/Husband's Name", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_FATHER_HUSBAND_NAME_LABEL", - "message": "Father/Husband's Name", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_FATHER_HUSBAND_NAME_PLACEHOLDER", - "message": "Enter Employee Name", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_GENDER_LABEL", - "message": "Gender", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_GENDER_PLACEHOLDER", - "message": "Select Gender", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_GUARDIAN_NAME_LABEL", - "message": "Guardian Name", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_GUARDIAN_NAME_PLACEHOLDER", - "message": "Enter Guardian Name", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_HIERARCHY_LABEL", - "message": "Hierarchy", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_HIERARCHY_PLACEHOLDER", - "message": "Select Hierarchy", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_HOD_LABEL", - "message": "Head of Department", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_HOD_SWITCH_LABEL", - "message": "Head Of Department", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_HOME_SEARCH_RESULTS_DESC", - "message": "Provide at least one parameter to search for an employee", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_HOME_SEARCH_RESULTS_HEADING", - "message": "Search Employe", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_HOME_SEARCH_RESULTS_TABLE_HEADING", - "message": "Search Results for Employee", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_JURISDICTION", - "message": "Jurisdiction", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_JURISDICTION_DETAILS_HEADER", - "message": "Jurisdiction Details", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_JURIS_DET_HEADER", - "message": "Jurisdiction Details", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_LOCATION_LABEL", - "message": "Location", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_LOCATION_PLACEHOLDER", - "message": "Select Location", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_MOBILE_NO_CHECK", - "message": "Please enter a 10 digit number starting with 6/7/8/9", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_MOB_NO_LABEL", - "message": "Mobile Number", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_MOB_NO_PLACEHOLDER", - "message": "Enter Mobile No.", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_NAME_LABEL", - "message": "Employee Name", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_NAME_PLACEHOLDER", - "message": "Enter Employee Name", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_NEW_EMPLOYEE_FORM_HEADER", - "message": "Employee Details", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_NEW_EMP_NAME_PLACEHOLDER", - "message": "Enter Employee Name", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_ORDER_NO", - "message": "Order No.", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_ORDER_NO_LABEL", - "message": "Order No", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_ORDER_NO_PLACEHOLDER", - "message": "Enter Order No", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_OTHER_DET_HEADER", - "message": "Other Details", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_PERSONAL_DETAILS_FORM_HEADER", - "message": "Personal Details", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_PICK_YOUR_CITY_LABEL", - "message": "Pick Your City", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_PROFESSIONAL_DETAILS_FORM_HEADER", - "message": "Employee Details", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_RACTIVATE_SUCCESS_MESSAGE", - "message": "Employee Reactivated Successfully", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_REACTIVATE_SUCCESS_SUBHEADER", - "message": " ", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_RELATIONSHIP_LABEL", - "message": "Relationship", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_RELATIONSHIP_PLACEHOLDER", - "message": "Select Relationship", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_REMARKS", - "message": "Remarks", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_REMARKS_LABEL", - "message": "Remarks", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_REMARKS_PLACEHOLDER", - "message": "Enter Remarks", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_REP_TO_LABEL", - "message": "Reporting To", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_ROLE_LABEL", - "message": "Role", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_ROLE_NO_LABEL", - "message": "No of Roles", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_ROLE_PLACEHOLDER", - "message": "Select Role", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_SELECT_CITY_PLACEHOLDER", - "message": "Select Locality", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_SELECT_CITY_PLACEHOLDER ", - "message": "Select Locality", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_SELECT_ULB_PLACEHOLDER", - "message": "Select Locality", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_SER_DET_HEADER", - "message": "Service Details", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_SER_DET_SUB_HEADER", - "message": "Verify entered details before submission. Service details cannot be edited once submitted.", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_SER_FROM_DATE_LABEL", - "message": "Service From Date", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_SER_TO_DATE_LABEL", - "message": "Service To Date", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_STATUS_LABEL", - "message": "Status", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_STATUS_PLACEHOLDER", - "message": "Select Status", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_STREAM_LABEL", - "message": "Stream", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_STREAM_PLACEHOLDER", - "message": "Select Stream", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_SUBMIT_LABEL", - "message": "SUBMIT", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_SUMMARY_DEPT_TEST_DEATILS_SUBHEADER", - "message": "Test Details", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_SUMMARY_DETAILS", - "message": "Summary", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_SUMMARY_EDIT", - "message": "Edit", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_SUMMARY_EDUCATION_DEATILS_SUBHEADER", - "message": "Education Details", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_SUMMARY_HEADER", - "message": "Create New Employee - Summary", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_SUMMARY_PERSONAL_DEATILS_SUBHEADER", - "message": "Personal Details", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_SUMMARY_PROFESSIONAL_DEATILS_SUBHEADER", - "message": "Professional Details", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_TEST_NAME_LABEL", - "message": "Test Name", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_TEST_NAME_PLACEHOLDER", - "message": "Select Test Name", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_ULB_LABEL", - "message": "Locality", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_UNIVERSITY_LABEL", - "message": "University", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_UNIVERSITY_PLACEHOLDER", - "message": "Select University", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_UPDATE_SUCCESS_MESSAGE", - "message": "Employee Updated Successfully", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_UPDATE_SUCCESS_SUBHEADER", - "message": " ", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_UPLOAD_FILES_BUTTON_LABEL", - "message": "Upload Files", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_UPLOAD_FILES_LABEL", - "message": "UPLOAD FILES", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_VIEW_HEADER", - "message": "View Employee Information", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_YEAR_LABEL", - "message": "Year", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "HR_YEAR_PLACEHOLDER", - "message": "Select Year", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "PERMANENT", - "message": "Permanent", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "REVENUE", - "message": "Revenue", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "TEMPORARY", - "message": "Temporary", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PB_CITYA", - "message": "Victoria", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "TL_ADD_ASSIGNMENT", - "message": "ADD ASSIGNMENT", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "TL_ADD_JURISDICTION", - "message": "ADD JURISDICTION", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "TL_ADD_QUALIFICATIONS", - "message": "ADD QUALIFICATIONS", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "TL_ADD_SERVICE_ENTRY", - "message": "ADD SERVICE ENTRY", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "TL_ADD_TEST", - "message": "ADD TEST", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "TL_COMMON_BUTTON_HOME", - "message": "GO TO HOME", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "TL_HOME_SEARCH_RESULTS_BUTTON_SEARCH", - "message": "Search", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "reports.hrms.department", - "message": "Employee Department", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "reports.hrms.designation", - "message": "Employee Designation", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "reports.hrms.id", - "message": "Employee Id", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "reports.hrms.name", - "message": "Employee Name", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "reports.hrms.role", - "message": "Employee Roles", - "module": "rainmaker-hr", - "locale": "en_IN" - }, - { - "code": "reports.hrms.status", - "message": "Employee Status", - "module": "rainmaker-hr", - "locale": "en_IN" - } -] \ No newline at end of file diff --git a/utilities/default-data-handler/src/main/resources/localisations-dev/en_IN/rainmaker-pgr.json b/utilities/default-data-handler/src/main/resources/localisations-dev/en_IN/rainmaker-pgr.json deleted file mode 100644 index d2156fe9..00000000 --- a/utilities/default-data-handler/src/main/resources/localisations-dev/en_IN/rainmaker-pgr.json +++ /dev/null @@ -1,31250 +0,0 @@ -[ - { - "code": "ADMIN_Locality", - "message": "Locality", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ANOTHER_USER", - "message": "Another User", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ASSIGN", - "message": "Assign", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ASSIGNED_TO_ALL", - "message": "Assigned to All", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ASSIGNED_TO_ME", - "message": "Assigned to Me", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ASSIGN_SUCCESSFULLY", - "message": "Assigned Successfully", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "COMMON_BOTTOM_NAVIGATION_COMPLAINTS", - "message": "Citizen Complaint Resolution System", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "COMMON_BOTTOM_NAVIGATION_INFORMATION", - "message": "Information", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "COMMON_BOTTOM_NAVIGATION_PAYMENTS", - "message": "Payments", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "COMMON_FEVERS_DENGUE_MALARIA", - "message": "Fevers - Dengue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_AC01", - "message": "Additional Commissioner", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_AMO01", - "message": "Asst. Medical Officer", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_CM01", - "message": "City manager", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_CME01", - "message": "Chief Municipal Engineer", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DC01", - "message": "Deputy Commissioner", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_HDC01", - "message": "Higher Division Clerk", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_HSI01", - "message": "Head Sanitary Inspector", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_MC01", - "message": "Municipal Commissioner", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_SS01", - "message": "Sanitory Supervisor", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_TC01", - "message": "Tax Collector", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_TI01", - "message": "Tax Inspector", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "COMMON_REPAIRS_TO_FLYOVERS_BRIDGES_CULVERTS", - "message": "Repairs to Flyovers", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "COMMON_UNHYGIENIC_IMPROPER_TRANSFER_OF_MEAT_LIVESTOCK", - "message": "Unhygienic", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "COMPLAINTS_COMPLAINANT_CONTACT_NUMBER", - "message": "Complainant Phone No.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "COMPLAINTS_COMPLAINANT_NAME", - "message": "Complainant Name", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "COMPLAINTS_SUPERVISOR_CONTACT_NUMBER", - "message": "Supervisor Contact No.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "COMPLAINTS_SUPERVISOR_NAME", - "message": "Supervisor Name", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_CLOSE", - "message": "CLOSE", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_NAME_VALIDMSG", - "message": "Please enter a valid Name", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_OPEN", - "message": "OPEN", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_PHONENO_INVALIDMSG", - "message": "Invalid Mobile Number", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_PHONENO_REGISTREDMSG", - "message": "Mobile Number is already Registered", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_PHONE_NUMBER", - "message": "Phone Number", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_PHONE_NUMBER_PLACEHOLDER", - "message": "Enter your mobile number", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_PICK", - "message": "Pick", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_PINCODE", - "message": "Pincode", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_PINCODE_INVALID", - "message": "Provide Valid Pin code", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_PINCODE_NOT_ENTERED", - "message": "Enter Pincode", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_PINCODE_NOT_SERVICEABLE", - "message": "Sorry we are not providing service in this city", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_REQUIRED_ERRMSG", - "message": "Required", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_SEARCH_COMPLAINT", - "message": "Search Complaint", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_SKIP_CONTINUE", - "message": "Skip and continue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_TAKE_ACTION", - "message": "__entermesage_____", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_USERNAME_INVALIDMSG", - "message": "Please enter a valid user name", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CORE_EMPLOYEE_OTP_CHECK_MESSAGE", - "message": "Please check your messages for the OTP & then set a new password.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CORE_LOGIN_CONFIRM_NEW_PASSWORD", - "message": "Confirm New Password ", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CORE_LOGIN_CONNFIRM_NEW_PASSWORD_PLACEHOLDER", - "message": "Confirm new password ", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CORE_LOGIN_NEW_PASSWORD", - "message": "New Password ", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CORE_LOGIN_NEW_PASSWORD_PLACEHOLDER", - "message": "Enter your new password", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CORE_LOGIN_NO_ACCOUNT", - "message": "Don’t have an account?", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CORE_LOGIN_PASSWORD", - "message": "Password", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CORE_LOGIN_PASSWORD_ERRORMSG", - "message": "Password is Incorrect", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CORE_LOGIN_PASSWORD_PLACEHOLDER", - "message": "Enter your Password", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CORE_LOGIN_USERNAME", - "message": "User Name", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CORE_LOGIN_USERNAME_PLACEHOLDER", - "message": "Enter your Employee ID", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CORE_LOGOUTPOPUP_CANCEL", - "message": "CANCEL", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CORE_LOGOUTPOPUP_CONFIRM", - "message": "Are you sure you want to logout?", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CORE_LOGOUTPOPUP_LOGOUT", - "message": "LOGOUT", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CORE_LOGOUTPOPUP_NO", - "message": "No", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CORE_LOGOUTPOPUP_YES", - "message": "Yes", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CORE_OTP_ERRORMSG", - "message": "Invalid OTP", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CORE_OTP_GET_STARTED", - "message": "GET STARTED", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CORE_OTP_HEADING", - "message": "ENTER OTP", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CORE_OTP_NOT_RECEIVE", - "message": "Didn’t receive OTP?", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CORE_OTP_OTP", - "message": "OTP", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CORE_OTP_PLACEHOLDER", - "message": "Enter OTP", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CORE_OTP_RESEND", - "message": "RESEND", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CORE_OTP_SENT_MESSAGE", - "message": "An OTP has been sent to :", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CORE_POPUP_OK", - "message": "OK", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CORE_POPUP_SEND", - "message": "SEND", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CORE_REGISTER_HAVE_ACCOUNT", - "message": "Have an account?", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CORE_REGISTER_HEADING", - "message": "REGISTER", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_ACTION_ASSIGN", - "message": "Assign Complaint", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_ACTION_ASSIGN_TEXT", - "message": "Complaint Assigned Successfully", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_ACTION_FILEUPLOADED", - "message": "File Uploaded", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_ACTION_FORWARD", - "message": "Forward", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_ACTION_NO_FILEUPLOADED", - "message": "No file uploaded", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_ACTION_REASSIGN", - "message": "Re-assign Complaint", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_ACTION_REASSIGN_TEXT", - "message": "Complaint Reassigned Succesfully", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_ACTION_REJECT", - "message": "Reject Complaint", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_ACTION_REJECT_TEXT", - "message": "Complaint Rejected Succesfully", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_ACTION_REOPEN", - "message": "Re-open", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_ACTION_REOPEN_TEXT", - "message": "Complaint Reopened Successfully", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_ACTION_RESOLVE", - "message": "Resolve", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_ACTION_RESOLVE_TEXT", - "message": "Complaint Resolved Successfully", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_ACTION_Re-open", - "message": "Re-open", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_ACTION_SUPPORTING_DOCUMENTS", - "message": "Supporting Documents", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_ADDCOMPLAINT_ADDITIONAL_DETAILS", - "message": "Additional Address Information", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_ADDCOMPLAINT_ADDITIONAL_DETAILS_PLACEHOLDER", - "message": "Enter WARD and address", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_ADDCOMPLAINT_ADDITIONAL_DETAILS_SUBMIT_COMPLAINT", - "message": "Submit Complaint", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_ADDCOMPLAINT_ADDITIONAL_DETAILS_TEXT", - "message": "If you think apart from information provided till now additional details are required to resolve complaint, provide it below:", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_ADDCOMPLAINT_ADDRESSINFO", - "message": "Address Info:", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_ADDCOMPLAINT_CHANGE_PINCODE_TEXT", - "message": "If you know the pincode of the complaint address, provide below. It will help us identify complaint location easily or you can skip and continue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_ADDCOMPLAINT_CITY_MOHALLA_TEXT", - "message": "Choose the locality of the complaint from the list given below.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_ADDCOMPLAINT_COMPLAINT_DETAILS", - "message": "Complaint Additional Details", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_ADDCOMPLAINT_COMPLAINT_DETAILS_PLACEHOLDER", - "message": "Enter Complaint additional details", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_ADDCOMPLAINT_COMPLAINT_LOCATION", - "message": "Complaint's Location", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_ADDCOMPLAINT_COMPLAINT_SUBTYPE", - "message": "Complaint Sub-Type ", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_ADDCOMPLAINT_COMPLAINT_SUBTYPE_PLACEHOLDER", - "message": "Choose Complaint Sub-Type", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_ADDCOMPLAINT_COMPLAINT_SUB_TYPE", - "message": "Complaint Sub-Type", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_ADDCOMPLAINT_COMPLAINT_TYPE", - "message": "Complaint Type", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_ADDCOMPLAINT_COMPLAINT_TYPE_PLACEHOLDER", - "message": "Select complaint type", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_ADDCOMPLAINT_ERROR_COMPLAINT_SUBTYPE", - "message": "Select the complaint sub-type", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_ADDCOMPLAINT_ERROR_COMPLAINT_TYPE", - "message": "Select the complaint type", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_ADDCOMPLAINT_ERROR_FAILURE", - "message": "Sorry, there is a problem with the service. Try again later.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_ADDCOMPLAINT_ERROR_MESSAGE", - "message": "Complaint Not Submitted", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_ADDCOMPLAINT_ERROR_REOPEN_REASON", - "message": "Select reason to re-open complaint", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_ADDCOMPLAINT_HOUSE_NO", - "message": "House No. and Street Name", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_ADDCOMPLAINT_HOUSE_NO_PLACEHOLDER", - "message": "Enter House No. and Street Name", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_ADDCOMPLAINT_LANDMARK", - "message": "Landmark", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_ADDCOMPLAINT_LANDMARK_ERROR", - "message": "Enter Landmark", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_ADDCOMPLAINT_LANDMARK_PLACEHOLDER", - "message": "Enter landmark", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_ADDCOMPLAINT_LOCATION", - "message": "Complaint Location", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_ADDCOMPLAINT_LOCATION_ERROR", - "message": "Select City and Locality", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_ADDCOMPLAINT_LOCATION_ERRORMSG", - "message": "Address doesn’t exist", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_ADDCOMPLAINT_PINCODE", - "message": "Do you know the pincode ?", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_ADDCOMPLAINT_PIN_LOCATION", - "message": "Pin Complaint location", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_ADDCOMPLAINT_PIN_LOCATION_TEXT", - "message": "If you know the pincode of the complaint address, provide below. It will help us identify complaint location easily or you can skip and continue.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_ADDCOMPLAINT_PROVIDE_ADDITIONAL_DETAILS", - "message": "Provide Additional Details", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_ADDCOMPLAINT_PROVIDE_COMPLAINT_ADDRESS", - "message": "Provide Complaint address", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_ADDCOMPLAINT_PROVIDE_LANDMARK", - "message": "Provide Landmark", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_ADDCOMPLAINT_PROVIDE_LANDMARK_TEXT", - "message": "Provide the landmark to help us reach the complaint location easily.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_ADDCOMPLAINT_SELECT_GEOLOCATION_HEADER", - "message": "Pin Complaint Location", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_ADDCOMPLAINT_SELECT_GEOLOCATION_TEXT", - "message": "Click and hold to drop the pin to complaint location. If you are not able to pin the location you can skip the continue for next step.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_ADDCOMPLAINT_UPLOAD_ERROR_MESSAGE", - "message": "Upload Image", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_ADDCOMPLAINT_UPLOAD_PHOTO", - "message": "Upload complaint photos", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_ADDCOMPLAINT_UPLOAD_PHOTO_TEXT", - "message": "Click on the icon below to upload the complaint photos as evidence. You can capture photos directly through your camera or upload from your Gallery. If you do not have complaint photo, you can skip the continue for next step.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_ADDCOMPLAINT_YOU_RATED", - "message": "You Rated ", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_ADD_COMPLAINT_COMPLAINT_SUBMISSION", - "message": "Complaint Submission", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_ACCUMULATION_LITTER", - "message": "Accumulation of Litter", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_ASSIGN", - "message": "Assign", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_ASSIGNED", - "message": "Assigned", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_ASSIGNED_TO", - "message": "Assigned to ", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_ATTACHMENTS", - "message": "Attachments", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_BACK", - "message": "Back", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_BLOCKAGE_OF_DRAINS", - "message": "Blockage Of Drains", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_BROKEN_FOOTPATHS", - "message": "Broken Footpaths", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_CALL_BUTTON", - "message": "CALL", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_CANCEL", - "message": "Cancel", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_CANCELLED", - "message": "Cancelled", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_CHOOSE_FILE", - "message": "Choose File", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_CITIZEN_FEEDBACK", - "message": "Citizen Feedback", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_CITIZEN_REQUEST_REASSIGN", - "message": "Being Re-assigned", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_CLEAR_ALL", - "message": "CLEAR ALL", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_CLEAR_SEARCH", - "message": "CLEAR SEARCH", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_CLOSED", - "message": "Closed", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_CLOSEDAFTERREJECTION", - "message": "Closed after rejection", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_CLOSEDAFTERRESOLUTION", - "message": "Closed after resolution", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_CLOSED_UCASE", - "message": "CLOSED", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_COMMENTS", - "message": "Comments", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_COMMENTS_PLACEHOLDER", - "message": "Type your comments", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_COMMENTS_PLACEHOLDER2", - "message": "Write your comments...", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_COMPLAINT", - "message": "Complaint", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_COMPLAINT_ASSIGNED_TO", - "message": "Complaint assigned to", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_COMPLAINT_DATE", - "message": "ComplaintDate", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_COMPLAINT_FILED", - "message": "Complaint filed", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_COMPLAINT_NO", - "message": "Complaint No", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_COMPLAINT_PENDINGFORASSINMENT", - "message": "Pending for Assignment", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_COMPLAINT_REJECTED", - "message": "Rejected", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_COMPLAINT_REOPENED", - "message": "Complaint Re-opened", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_COMPLAINT_RESOLVED", - "message": "Complaint resolved", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_COMPLAINT_STATUS", - "message": "Complaint status", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_COMPLAINT_SUBMITTED", - "message": "Complaint Submitted", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_DAY", - "message": "day", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_DAYS", - "message": "days", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_DAYS_LEFT", - "message": "days left", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_DAY_LEFT", - "message": "day left", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_EMPLOYEE_COMMENTS", - "message": "Comments", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_EMPLOYEE_NAME", - "message": "Employee Name", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_ERROR_LOADING_RESULTS", - "message": "Error while loading results", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_ERROR_SCREEN_MESSAGE", - "message": "The page you are looking for cannot be found", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_FILE_A_COMPLAINT", - "message": "File a Complaint", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_FILTER", - "message": "Filter", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_GARBAGE_BIN_ABSENT", - "message": "Garbage Bin Absent", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_HOME", - "message": "Home", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_INBOX", - "message": "Inbox", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_LOGOUT", - "message": "Logout", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_MOBILE_NO", - "message": "Mobile No", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_MOBILE_NO.", - "message": "Mobile No", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_NEXT", - "message": "Next", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_OPEN", - "message": "Open", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_OPENED", - "message": "Opened", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_OPEN_UCASE", - "message": "OPEN", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_OVERDUE_BY", - "message": "Overdue by", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_OVERFLOWING_BINS", - "message": "Overflowing Garbage Bins", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_PATHOLES", - "message": "Patholes", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_PENDINGATLME", - "message": "Pending at LME", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_PENDINGATSUPERVISOR", - "message": "Pending At Supervisor", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_PENDINGFORASSIGNMENT", - "message": "Pending for assignment", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_PENDINGFORREASSIGNMENT", - "message": "Pending for reassignment", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_PGR_STATE_CLOSEDAFTERREJECTION", - "message": "Closed after rejection", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_PGR_STATE_CLOSEDAFTERRESOLUTION", - "message": "Closed after resolution", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_PGR_STATE_PENDINGATLME", - "message": "Pending at last mile employee", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_PGR_STATE_PENDINGFORASSIGNMENT", - "message": "Pending for assignment", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_PGR_STATE_PENDINGFORREASSIGNMENT", - "message": "Pending for re-assignment", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_PGR_STATE_REJECTED", - "message": "Rejected", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_PGR_STATE_RESOLVED", - "message": "Resolved", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_PINCODE_NOT_SERVICABLE", - "message": "Sorry we are not providing service in this city", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_RATING_SUBMIT_TEXT", - "message": "By making your voice heard, you help us improve mSeva.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_RE-ASSIGN REQUESTED", - "message": "Re-assign Requested", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_REASSIGNED", - "message": "Re-assigned", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_REASSIGNED_TO", - "message": "Re-Assigned to ", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_REJECT", - "message": "Reject", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_REJECTED", - "message": "Rejected", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_REJECTED_UCASE", - "message": "REJECTED", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_REOPENED", - "message": "Re-opened", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_REQUIRED_FIELDS_MISSING", - "message": "Required fields missing", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_RESOLVE", - "message": "Resolve", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_RESOLVED", - "message": "Resolved", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_RESOLVEDBYSUPERVISOR", - "message": "Resolved By Supervisor", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_RESOLVED_UCASE", - "message": "RESOLVED", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_RE_ASSIGNED", - "message": "Re-Assigned", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_SEARCH_BY", - "message": "SEARCH BY", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_SELECT_EMPLOYEE", - "message": "Select Employee", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_SKIP", - "message": "Skip and Continue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_STATUS_ASSIGNED", - "message": "Assigned", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_STATUS_BEING_REASSIGNED", - "message": "Complaint is being Re-Assigned", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_STATUS_CLOSED", - "message": "Your Complaint has been Closed", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_STATUS_REASSIGNED", - "message": "Your Complaint has been Re-assigned", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_STATUS_REASSIGN_REQUESTED", - "message": "Your Complaint is being Re-Assigned", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_STATUS_REJECTED", - "message": "Your Complaint has been Rejected", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_STATUS_REOPENED", - "message": "Your Complaint has been Re-opened", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_STATUS_RESOLVED", - "message": "Your Complaint has been Resolved", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_STATUS_SUBMITTED", - "message": "Your Complaint has been Filed", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_STATUS_UNASSIGNED", - "message": "Unassigned", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_SUBMIT", - "message": "SUBMIT", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_SUBMITTED", - "message": "Filed", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_SWEEPERS_ABSENT", - "message": "Absenteeism of Sweepers", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_THANK_YOU", - "message": "Thank You", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_TRACK_COMPLAINT_TEXT", - "message": "The notification along with complaint number is sent to your registered mobile number. You can track the complaint status using mobile or web app.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_UPLOAD_PHOTOS", - "message": "UPLOAD PHOTOS", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINTDETAILS_HOUSE", - "message": "House/Street No", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINTDETAILS_LANDMARK", - "message": "Landmark", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINTDETAILS_MOHALLA", - "message": "Mohalla/City", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_ADDTIONAL_DETAILS", - "message": "Additional Details", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_COMMENT_SUCCESS", - "message": "Comment Successful", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_COMPLAINT_ADDTIONAL_DETAILS", - "message": "Additional Details", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_ACCUMULATION_LITTER", - "message": "Accumulation of Litter", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_ADDITIONAL_DETAILS", - "message": "Additional Details", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_ADDITIONAL_DETAILS_DESCRIPTION", - "message": "Description", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_ADDRESS_1_DETAILS", - "message": "Address", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_ADDRESS_2_DETAILS", - "message": "Address Line 1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_ADDRESS_DETAILS", - "message": "Address Details", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_APPLICATION_STATUS", - "message": "Application Status", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_AREA", - "message": "Locality", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_ASSIGN", - "message": "Assign", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_ASSIGNED", - "message": "Assigned", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_ASSIGNED_TO", - "message": "Assigned to ", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_ATTACHMENTS", - "message": "Attachments", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_BACK", - "message": "Back", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_BEING_REASSIGNED", - "message": "Complaint is being re-assigned by", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_BLOCKAGE_OF_DRAINS", - "message": "Blockage Of Drains", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_BROKEN_FOOTPATHS", - "message": "Broken Footpaths", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_BUILDING_NAME", - "message": "Build Name", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_CALL_BUTTON", - "message": "CALL", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_CANCEL", - "message": "Cancel", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_CANCELLED", - "message": "Cancelled", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_CHOOSE_FILE", - "message": "Choose File", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_CITIZEN_FEEDBACK", - "message": "Citizen Feedback", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_CITIZEN_REQUEST_REASSIGN", - "message": "Being Re-assigned", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_CITY", - "message": "City", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_CLEAR_ALL", - "message": "CLEAR ALL", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_CLEAR_SEARCH", - "message": "CLEAR SEARCH", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_CLOSED", - "message": "Closed", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_CLOSEDAFTERREJECTION", - "message": "Closed after rejection", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_CLOSEDAFTERRESOLUTION", - "message": "Closed after resolution", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_CLOSED_UCASE", - "message": "CLOSED", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_COMMENTS", - "message": "Too much garbage lying on the road, its very dificult to cross the area.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_COMMENTS_PLACEHOLDER", - "message": "Type your comments", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_COMMENTS_PLACEHOLDER2", - "message": "Write your comments...", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_COMPLAINT", - "message": "Complaint", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_COMPLAINT_ASSIGNED_TO", - "message": "Complaint assigned to", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_COMPLAINT_DATE", - "message": "Complaint Date", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_COMPLAINT_DESCRIPTION", - "message": "Complaint Description", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_COMPLAINT_DETAILS", - "message": "Complaint Details", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_COMPLAINT_FILED", - "message": "Complaint Filed", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_COMPLAINT_NO", - "message": "Complaint No.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_COMPLAINT_PENDINGFORASSINMENT", - "message": "Pending for Assignment", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_COMPLAINT_REJECTED", - "message": "Rejected", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_COMPLAINT_REOPENED", - "message": "Complaint Re-opened", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_COMPLAINT_RESOLVED", - "message": "Complaint Resolved", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_COMPLAINT_STATUS", - "message": "Complaint status", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_COMPLAINT_SUBMITTED", - "message": "Complaint Submitted", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_COMPLAINT_SUBTYPE", - "message": "Complaint Subtype", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_COMPLAINT_TIMELINE", - "message": "Complaint Timeline", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_COMPLAINT_TYPE", - "message": "Complaint Type", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_CURRENT_STATUS", - "message": "Current Status", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_DAY", - "message": "day", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_DAYS", - "message": "days", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_DAYS_LEFT", - "message": "days left", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_DAY_LEFT", - "message": "day left", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_DOOR", - "message": "Door", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_EMPLOYEE_COMMENTS", - "message": "Comments", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_EMPLOYEE_NAME", - "message": "Employee Name", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_ERROR_LOADING_RESULTS", - "message": "Error while loading results", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_ERROR_SCREEN_MESSAGE", - "message": "The page you are looking for cannot be found", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_FILE_A_COMPLAINT", - "message": "File a Complaint", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_FILTER", - "message": "Filter", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_GARBAGE_BIN_ABSENT", - "message": "Garbage Bin Absent", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_GEOLOCATION", - "message": "Geolocation", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_HOME", - "message": "Home", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_INBOX", - "message": "Inbox", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_LANDMARK", - "message": "Landmark", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_LOCALITY", - "message": "Locality", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_LOCATION", - "message": "Enter Complaint Location", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_LOGOUT", - "message": "Logout", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_MOBILE_NO", - "message": "Mobile No", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_MOBILE_NO.", - "message": "Mobile No", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_NEXT", - "message": "Next", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_OPEN", - "message": "Open", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_OPENED", - "message": "Opened", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_OPEN_UCASE", - "message": "OPEN", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_OVERDUE_BY", - "message": "Overdue by", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_OVERFLOWING_BINS", - "message": "Overflowing Garbage Bins", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_PATHOLES", - "message": "Patholes", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_PENDINGATLME", - "message": "Pending at LME", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_PENDINGATSUPERVISOR", - "message": "Pending At Supervisor", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_PENDINGFORASSIGNMENT", - "message": "Pending for assignment", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_PENDINGFORREASSIGNMENT", - "message": "Pending for reassignment", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_PENDING_STATUS", - "message": "Complaint pending at GRO", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_PINCODE_NOT_SERVICABLE", - "message": "Sorry we are not providing service in this city", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_PLOT_NO", - "message": "Plot No.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_RATE", - "message": "RATE", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_RATING_SUBMIT_TEXT", - "message": "By making your voice heard, you help us improve mSeva.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_RE-ASSIGN REQUESTED", - "message": "Re-assign Requested", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_REASSIGNED", - "message": "Re-assigned", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_REASSIGNED_TO", - "message": "Re-Assigned to ", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_REASSIGN_REQUESTED", - "message": "Re-Assign requested", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_REJECT", - "message": "Reject", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_REJECTED", - "message": "Rejected", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_REJECTED_UCASE", - "message": "REJECTED", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_REOPEN", - "message": "RE-OPEN", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_REOPENED", - "message": "Re-opened", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_RESOLUTION_EVIDENCE", - "message": "Resolution Evidence", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_RESOLVE", - "message": "Resolve", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_RESOLVED", - "message": "Resolved", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_RESOLVEDBYSUPERVISOR", - "message": "Resolved By Supervisor", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_RESOLVED_UCASE", - "message": "RESOLVED", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_RE_ASSIGNED", - "message": "Re-Assigned", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_SEARCH_BY", - "message": "SEARCH BY", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_SKIP", - "message": "Skip and Continue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_STATUS_ASSIGNED", - "message": "Assigned", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_STATUS_BEING_REASSIGNED", - "message": "Complaint is being Re-Assigned", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_STATUS_CLOSED", - "message": "Your Complaint has been Closed", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_STATUS_REASSIGNED", - "message": "Your Complaint has been Re-assigned", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_STATUS_REASSIGN_REQUESTED", - "message": "Your Complaint is being Re-Assigned", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_STATUS_REJECTED", - "message": "Your Complaint has been Rejected", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_STATUS_REOPENED", - "message": "Your Complaint has been Re-opened", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_STATUS_RESOLVED", - "message": "Your Complaint has been Resolved", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_STATUS_SUBMITTED", - "message": "Your Complaint has been Filed", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_STATUS_UNASSIGNED", - "message": "Unassigned", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_STREET", - "message": "Street", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_SUBMISSION_DATE", - "message": "Filed Date", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_SUBMIT", - "message": "SUBMIT", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_SUBMITTED", - "message": "Filed", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_SUB_COMPLAINT_TYPE", - "message": "Complaint Sub-Type", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_SWEEPERS_ABSENT", - "message": "Absenteeism of Sweepers", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_THANK_YOU", - "message": "Thank You", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_TRACK_COMPLAINT_TEXT", - "message": "The notification along with complaint number is sent to your registered mobile number. You can track the complaint status using mobile or web app.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_DETAILS_UPLOAD_PHOTOS", - "message": "UPLOAD PHOTOS", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_FILED_DATE", - "message": "Filed Date", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_LANDMARK__DETAILS", - "message": "Landmark", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_LOCALITY", - "message": "Locality", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_LOCATION_DETAILS", - "message": "Location Details", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_NO_ERROR_TEXT", - "message": "Complaint No should be minimum 6 digits", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_PIN_COMPLAINT_LOCATION_TEXT", - "message": "Click and hold to drop the pin to complaint location. If you are not able to pin the location you can skip the continue for next step.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_POSTALCODE__DETAILS", - "message": "Postal Code", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_RATE_HELP_TEXT", - "message": "How would you rate your experience with us?", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_RATE_TEXT", - "message": "How would you rate your experience with us?", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_SELECT_CITY", - "message": "City", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_SUBMITTED_COMPLAINT_NO", - "message": "Complaint No.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_SUBMITTED_LABEL1", - "message": "Complaint Registered Successfully", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_SUBMITTED_LABEL2", - "message": "You can track the status of your complaint on this app anytime!", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_SUBMITTED_THANKYOU", - "message": "Thank You!", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_SUBTYPE_TEXT", - "message": "The complaint type you have chosen has following complaint sub-types. Select the option of your choice from the list given below.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_TYPE_DRAINS", - "message": "Drains", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_TYPE_GARBAGE", - "message": "Garbage", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_TYPE_OTHERS", - "message": "Others", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_TYPE_PUBLIC_HEALTH_HYGIENE", - "message": "Public Health & Hygiene", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_TYPE_PUBLIC_LAND_PROPERTY", - "message": "Public Land & Property", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_TYPE_SEARCH_PLACEHOLDER", - "message": "Search", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_TYPE_STREET_LIGHTS", - "message": "Street Lights", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_TYPE_TEXT", - "message": "Select the option related to your complaint from the list given below. If the complaint type you are looking for is not listed select others.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_COMPLAINT_TYPE_WATER", - "message": "Water", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_CONTACTUS_OPEN_MAP", - "message": "Open Map", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_CONTACTUS_WEEKDAY", - "message": "Mon – Fri", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_CONTACTUS_WEEKEND", - "message": "Sat", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_CREATECOMPLAINT_MOHALLA", - "message": "Locality", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_CREATECOMPLAINT_MOHALLA_PLACEHOLDER", - "message": "Choose Locality", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_DAYS_LEFT", - "message": "{0} days left", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_DAY_LEFT", - "message": "{0} day left", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_FEEDBACK_ENTER_RATING_ERROR", - "message": "Please rate your experience between 1-5 stars", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_FEEDBACK_OTHERS", - "message": "Others", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_FEEDBACK_QUALITY_OF_WORK", - "message": "Quality of Work", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_FEEDBACK_RATE_HELP_TEXT", - "message": "Help Us Help You", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_FEEDBACK_RATE_TEXT", - "message": "How would you rate your experience with us?", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_FEEDBACK_RESOLUTION_TIME", - "message": "Resolution Time", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_FEEDBACK_SERVICES", - "message": "Services", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_FEEDBACK_SUCCESS", - "message": "Thank You for your feedback!", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_FEEDBACK_WHAT_WAS_GOOD", - "message": "What was good ?", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_FILE_APPLICATION_PROPERTY_LOCATION_PROVIDE_LANDMARK_TITLE_TEXT", - "message": "Provide the landmark to help us reach the complaint location easily.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_HEADER_ADD_COMPLAINT", - "message": "Add Complaint", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_HEADER_ALL_COMPLAINTS", - "message": "All Complaints", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_HEADER_ASSIGN_COMPLAINT", - "message": "Assign Complaint", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_HEADER_COMPLAINT_SUBMITTED", - "message": "Complaint Filed", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_HEADER_COMPLAINT_SUMMARY", - "message": "Complaint Summary", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_HEADER_FEEDBACK", - "message": "Feedback", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_HEADER_FEEDBACK_ACKNOWLEDGEMENT", - "message": "Feddback Submitted", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_HEADER_REASSIGN_COMPLAINT", - "message": "Re-Assign Complaint", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_HEADER_REOPEN_COMPLAINT", - "message": "Reopen Complaint", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_HEADER_REQUEST_REASSIGN", - "message": "Request Re-Assign", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_HEADER_TRACK_LOCATION", - "message": "Track Location", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_HOME_FILE_COMPLAINT", - "message": "File Complaint", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_HOME_HEADER_CONTACT_US", - "message": "Contact Us", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_HOME_HEADER_HOME", - "message": "Home", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_HOME_HEADER_HOW_IT_WORKS", - "message": "How it Works", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_HOME_HEADER_LANGUAGE", - "message": "Language", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_HOME_HEADER_PROFILE", - "message": "Edit Profile", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_HOME_HOMEHEADER", - "message": "Home", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_HOME_MY_COMPLAINTS", - "message": "My Complaints", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_HOME_MY_COMPLAINTS_CARD_LABEL", - "message": "My Complaints", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_HOME_STATUS_PREFIX", - "message": "Your complaint has been", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_HOME_STATUS_REASSIGN_PREFIX", - "message": "Your complaint is", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_HOME_UPDATES", - "message": "Filed Complaints", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_HOWITWORKS_CONNECT_OFFICER", - "message": "Connect to Concerned Officer", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_HOWITWORKS_DESCRIPTION", - "message": "We have made connecting with us easier than ever before. Once you raise the complaint, we will assign it to the responsible officer. You can track the status of your complaint on our web-site under “ My Complaints “ till your complaint is resolved.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_HOWITWORKS_RAISE_COMPLAINT", - "message": "Raise a Complaint", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_HOWITWORKS_TRACK_STATUS", - "message": "Track Status", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_LANDING_PAGE_COMPLAINTS_DESCRIPTION", - "message": "mSeva Complaints offers an easy to use interface which enables you to lodge civic works related complaints. It also lets you track the status of your complaint and facilitates direct interaction with your municipality till its resolution.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_LANDING_PAGE_PROPERTY_TAX_DESCRIPTION", - "message": "Assess, pay and track your Property Taxes online with mSeva Property Tax.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_LANDING_PAGE_TRADE_LICENSE_DESCRIPTION", - "message": "A licensed trade will always enjoy a greater goodwill and attract more customers and investors than unregistered entities. Help your city to plan and support your business. Apply for your Trade License Now!", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_LANDING_PAGE_WELCOME_TEXT", - "message": "Welcome", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_MANDATORY_COMMENTS", - "message": "Comments are mandatory", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_MAP_MOVE_PIN", - "message": "Move pin to adjust", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_MAP_PICK", - "message": "Pick", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_MYCOMPLAINTS_CLOSED", - "message": "Complaint Resolved. Please rate", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_MYCOMPLAINTS_COMPLAINT_HEADER", - "message": "ComplaintHeader", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_MYCOMPLAINTS_COMPLAINT_PREFIX", - "message": "Complaint has been", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_MYCOMPLAINTS_ESCALATED_TO", - "message": "Escalated To:", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_MYCOMPLAINTS_NO_COMPLAINTS", - "message": "You haven't logged any complaints yet. \nStart with one, make a change.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_MYCOMPLAINTS_NO_COMPLAINTS_EMPLOYEE", - "message": "No Records Found", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_MYCOMPLAINTS_RATE", - "message": ". Please rate", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_MYCOMPLAINTS_REASSIGN_MESSAGE1", - "message": "requested for re-assign", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_MYCOMPLAINTS_REASSIGN_MESSAGE2", - "message": "You have", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_MYCOMPLAINTS_REJECTED", - "message": "Complaint has been Rejected", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_MYCOMPLAINTS_RE_ASSIGNED", - "message": "Complaint Re-assigned to", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_MYCOMPLAINTS_TO", - "message": "to", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_MYCOMPLAINTS_TRACK", - "message": "TRACK", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_OVERDUE_BY_DAY", - "message": "Overdue by {0} day", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_OVERDUE_BY_DAYS", - "message": "Overdue by {0} days", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_OVERDUE_BY_DAY_TESTING", - "message": "Overdue by {0} and {1} week", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_PGR_COMPLAINT_DETAILS", - "message": "Complaint Details", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_PGR_COMPLAINT_NUMBER", - "message": "Complaint No.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_PGR_CREATE_COMPLAINT", - "message": "Create Complaint", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_PGR_LOCALITY", - "message": "Locality", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_PGR_REPORTS_HEADER", - "message": "Citizen Complaint Resolution System Reports", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_PGR_RESPONSE", - "message": "Response", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_PGR_SEND_COMMENT", - "message": "Send", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_PROFILE_EMAIL", - "message": "Email Id", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_PROFILE_EMAIL_ERRORMSG", - "message": "Invalid Email Id", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_PROFILE_EMAIL_PLACEHOLDER", - "message": "Enter Your Email Id", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_PROFILE_SAVE", - "message": "Save", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_REJECT_COMPLAINT", - "message": "Employee Name", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_REOPEN_COMPLAINT", - "message": "Choose Reason to Re-open the Complaint", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_REOPEN_COMPLAINT_WHY", - "message": "Why do you want to Re-Open your Complaint?", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_REOPEN_OPTION_FOUR", - "message": "No permanent solution", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_REOPEN_OPTION_ONE", - "message": "No work was done", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_REOPEN_OPTION_THREE", - "message": "Employee did not turn up", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_REOPEN_OPTION_TWO", - "message": "Only partial work was done", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_REOPEN_SUCCESS_MESSAGE", - "message": "Your complaint has been Re-opened", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_SELECT_CITY_AMRITSAR", - "message": "Amritsar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_SELECT_CITY_BHATINDA", - "message": "Bhatinda", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_SELECT_CITY_CHANDIGARH", - "message": "Chandigarh", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_SELECT_CITY_CHOOSE_CITY", - "message": "Choose City", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_SELECT_CITY_FARIDKOT", - "message": "Faridkot", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_SELECT_CITY_JALANDHAR", - "message": "Jalandhar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_SELECT_CITY_LUDHIYAA", - "message": "Ludhiana", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_SELECT_CITY_MOHALI", - "message": "Mohali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_SORT_OPTION_ONE", - "message": "Complaint Date - Old to New", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_SORT_OPTION_THREE", - "message": "Days Remaining to SLA", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_SORT_OPTION_TWO", - "message": "Complaint Date - New to old", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "CS_UPLOAD_RESTRICTIONS", - "message": "**Upload restrictions", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "DASHBOARD_CITIZEN_SERVICES_LABEL", - "message": "Citizen Services", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "DASHBOARD_TITLE_PGR", - "message": "Dashboard", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "DASHBOARD_WHATS_NEW_LABEL", - "message": "Whats New", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "DEPARTMENT_DEPT_1", - "message": "Street Lights", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "DEPARTMENT_DEPT_3", - "message": "Garbage", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "DEPT_1", - "message": "Street Lights", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "DEPT_3", - "message": "Garbage", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE.ASSIGNMENT.TITLE", - "message": "ASSIGNMENT DETAILS", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE.EMPLOYEE.TITLE", - "message": "EMPLOYEE DETAILS", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE.JURISDICTION.TITLE", - "message": "JURISDICTION LIST", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE.OTHER.TITLE", - "message": "OTHER DETAILS", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "EMPLOYEE.SERVICE.TITLE", - "message": "SERVICE SECTION", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ERR_COMPLAINT_NUMBER_SEARCH", - "message": "Enter at least last 6 digit of complaint No", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_ALL_COMPLAINTS_ASSIGNED_TAB_LABEL", - "message": "ASSIGNED", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_ALL_COMPLAINTS_ASSIGNED_TO", - "message": "Assigned to:", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_ALL_COMPLAINTS_HEADER", - "message": "All Complaints", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_ALL_COMPLAINTS_SUBMITTED_BY", - "message": "Submitted By :", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_ALL_COMPLAINTS_UNASSIGNED_TAB_LABEL", - "message": "UNASSIGNED", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_ASSIGN_STATUS_ASSIGN", - "message": "Choose Employee to assign complaint to from the list", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_ASSIGN_STATUS_REASSIGN", - "message": "Choose Employee to Re-assign complaint to from the list", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_ASSIGN_TO_EMPLOYEE_HEADER", - "message": "Assign to Employee", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_CLOSED_COMPLAINTS_HEADER", - "message": "Closed Complaints", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_ASSIGN", - "message": "ASSIGN", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_CLEAR_SEARCH", - "message": "Clear Search", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_FILED_BY", - "message": "Filed By", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_FILED_VIA_MOBILE", - "message": "Filed Via Mobile App", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_FILED_VIA_WEB", - "message": "Filed Via Web", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_FILED_VIA_WHATSAPP", - "message": "Filed via Whatsapp", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_FILTER", - "message": "Filter By", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_FILTER_BY", - "message": "Filter By", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_INBOX", - "message": "Inbox", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_REASSIGN", - "message": "RE-ASSIGN", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_SEARCH", - "message": "Search", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_SEARCH_COMPLAINT", - "message": "Search Complaint", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_SEARCH_EMPLOYEE", - "message": "Search Employee", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_TRACK_COMPLAINT_TEXT", - "message": "The notification along with complaint number is sent to your applicant’s mobile number. Applicant can track the complaint status using mobile or web app.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_COMPLAINTS_COUNT_RATIO_LABEL", - "message": "Showing {0} of {1} complaints", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_COMPLAINT_ASSIGNED_HEADER", - "message": "Complaint Assigned", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_COMPLAINT_DETAILS_ASSIGNED_BY", - "message": "Assigned By", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_COMPLAINT_DETAILS_REASSIGNED_BY", - "message": "Re-Assigned By", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_COMPLAINT_FILED_BY_CSR", - "message": "Complaint Filed at Citizen Service Desk", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_COMPLAINT_REASSIGNED_HEADER", - "message": "Complaint Re-Assigned", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_COMPLAINT_REJECTED_HEADER", - "message": "Complaint Rejected", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_COMPLAINT_REJECT_SUCCESS_MESSAGE", - "message": "You have Rejected this complaint.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_COMPLAINT_RESOLVED_SUCCESS_MESSAGE", - "message": "You have marked the complaint as", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_COMPLAINT_SUCCESS_LASTLABEL", - "message": "Please share the complaint no. with the citizen", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_COMPLAINT_SUMMARY_MAP", - "message": "MAP", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_CREATECOMPLAINT_ADDITIONAL_DETAILS", - "message": "Additional Complaint Details", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_CREATECOMPLAINT_ADDITIONAL_DETAILS_PLACEHOLDER", - "message": "Add complaint description", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_CREATECOMPLAINT_ADDRESS", - "message": "Address", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_CREATECOMPLAINT_ADDRESS_PLACEHOLDER", - "message": "Enter complaint address", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_CREATECOMPLAINT_COMPLAINT_NAME", - "message": "Citizen Name", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_CREATECOMPLAINT_COMPLAINT_NAME_PLACEHOLDER", - "message": "Enter citizen name", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_CREATECOMPLAINT_FOR", - "message": "Complaint For", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_CREATECOMPLAINT_MOBILE_NUMBER", - "message": "Citizen Mobile No.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_CREATECOMPLAINT_MOBILE_NUMBER_PLACEHOLDER", - "message": "Enter citizen mobile no.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_CREATECOMPLAINT_MOHALLA", - "message": "Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_CREATECOMPLAINT_MOHALLA_PLACEHOLDER", - "message": "Select your Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_CREATECOMPLAINT_NEW_COMPLAINT", - "message": "New Complaint", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_CREATECOMPLAINT_PROVIDE_COMPLAINANT_DETAILS", - "message": "Complainant Details", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_CREATECOMPLAINT_SELECT_PLACEHOLDER", - "message": "Select", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_CREATE_COMPLAINT", - "message": "Create Complaint", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_DIALOG_SORT_BY", - "message": "Sort By", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_EMPLOYEE_DIRECTORY_HEADER", - "message": "Employee Directory", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_MYCOMPLAINTS_CLEAR_SEARCH_BUTTON", - "message": "CLEAR SEARCH", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_MYCOMPLAINTS_COMPLAINT_NO", - "message": "Enter last 6 digits of Complaint No", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_MYCOMPLAINTS_NO_ASSIGNED_COMPLAINTS", - "message": "No assigned complaints", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_MYCOMPLAINTS_NO_COMPLAINTS_ASSIGNED", - "message": "No complaints to show", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_MYCOMPLAINTS_NO_COMPLAINTS_TO_ASSIGN", - "message": "No complaints to Assign", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_MYCOMPLAINTS_SEARCH_BUTTON", - "message": "SEARCH", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_NO_SEARCH_RESULTS", - "message": "No search results found", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_OPEN_COMPLAINTS_HEADER", - "message": "Open Complaints", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_PGR_FILTER_STATUS", - "message": "Status", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_PGR_HEADER_COMPLAINT", - "message": "Citizen Complaint Resolution System", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_PGR_INBOX", - "message": "Inbox", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_PGR_NEW_COMPLAINT", - "message": "New Complaint", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_REASON_TO_REJECT_HEADER", - "message": "Reason to Reject", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_REASSIGN_OPTION_FOUR", - "message": "Other", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_REASSIGN_OPTION_ONE", - "message": "Not a valid complaint", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_REASSIGN_OPTION_THREE", - "message": "Absent or on leave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_REASSIGN_OPTION_TWO", - "message": "Not my responsibility", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_REASSIGN_REQUEST_QUESTION", - "message": "Why do you want this complaint to be Re-Assigned?", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_REASSIGN_REQUEST_SUCCESS_MESSAGE", - "message": "Your Re-Assign request has been sent.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_REASSIGN_TO_EMPLOYEE_HEADER", - "message": "Re-Assign to Employee", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_REJECT_BUTTON", - "message": "REJECT", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_REJECT_COMPLAINT_QUESTION", - "message": "Why do you want to Reject this Complaint?", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_REJECT_OPTION_FOUR", - "message": "Other", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_REJECT_OPTION_THREE", - "message": "Operation already underway", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_REJECT_OPTION_TWO", - "message": "Out of operational scope", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_REQUEST_REQUEST_RE_ASSIGN", - "message": "REQUEST RE-ASSIGN", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_RESOLVE_MARK_RESOLVED", - "message": "MARK RESOLVED", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_SEARCH_BOTTON", - "message": "SEARCH", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_SEARCH_BUTTON", - "message": "SEARCH", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_SORT_BOTTON", - "message": "SORT", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "ES_SORT_BUTTON", - "message": "SORT", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "FAILED_TO_UPDATE_COMPLAINT", - "message": "Failed to update the complaint, please try again later.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "FILTER_BY", - "message": "FILTER BY", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "HR_COMMON_TABLE_COL_DEPT", - "message": "Department", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "HR_SUMMARY_DEPT_TEST_DEATILS_SUBHEADER", - "message": "Department Test Details", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "HR_SUMMARY_EDUCATION_DEATILS_SUBHEADER", - "message": "Education Details", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "HR_SUMMARY_PERSONAL_DEATILS_SUBHEADER", - "message": "Personal Details", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "HR_SUMMARY_PROFESSIONAL_DEATILS_SUBHEADER", - "message": "Professional Details", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "MYSELF", - "message": "Myself", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "NO_RESULTS_FOUND", - "message": "No Results Found", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PGR_ACTION_ASSIGN", - "message": "Assign Complaint", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PGR_ACTION_REASSIGN", - "message": "Re-Assign Complaint", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PGR_ACTION_REJECT", - "message": "Reject Complaint", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PGR_ACTION_REOPEN", - "message": "Reopen Complaint", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PGR_ACTION_RESOLVE", - "message": "Resolve Complaint", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PGR_APPLY_PENDINGFORASSIGNMENT_SMS_MESSAGE", - "message": "Dear Citizen, Your complaint for {complaint_type} has been submitted with ID {id} on {date}. You can track your complaint status on the web portal.\n\nEGOVS", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PGR_ASSIGN_CITIZEN_PENDINGATLME_SMS_MESSAGE", - "message": "Dear Citizen, Your complaint for {complaint_type} with ID {id} submitted on {date} has been assigned to {emp_name}, {emp_designation}, {emp_department}. You can track your complaint status and connect with our officials on the web portal.\n\nEGOVS", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PGR_ASSIGN_EMPLOYEE_PENDINGATLME_SMS_MESSAGE", - "message": "Shri {emp_name}, Complaint for {complaint_type} with ID {id} has been assigned to you. Please take appropriate action. {ao_designation} - {ulb}.\n\nEGOVS", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PGR_CITIZEN_APPLY_PENDINGFORASSIGNMENT_SMS_MESSAGE", - "message": "Dear Citizen, Your complaint for {complaint_type} has been submitted with ID {id} on {date}. You can track your complaint status on the web portal.\n\nEGOVS", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PGR_CITIZEN_ASSIGN_PENDINGATLME_SMS_MESSAGE", - "message": "Dear Citizen, Your complaint for {complaint_type} with ID {id} submitted on {date} has been assigned to {emp_name}, {emp_designation}, {emp_department}. You can track your complaint status and connect with our officials on the web portal.\n\nEGOVS", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PGR_CITIZEN_REASSIGN_PENDINGATLME_SMS_MESSAGE", - "message": "Dear Citizen, Your complaint for {complaint_type} with ID {id} submitted on {date} has been re-assigned to {emp_name}, {emp_designation}, {emp_department}. You can track your complaint status and connect with our officials on the web portal. \n\nEGOVS", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PGR_CITIZEN_REASSIGN_PENDINGFORREASSIGNMENT_SMS_MESSAGE", - "message": "Dear Citizen, Your complaint for {complaint_type} with ID {id} submitted on {date} has been re-assigned to {emp_name}, {emp_designation}, {emp_department}. You can track your complaint status and connect with our officials on the web portal.\n\nEGOVS", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PGR_CITIZEN_REJECT_REJECTED_SMS_MESSAGE", - "message": "Dear Citizen, Your complaint for {complaint_type} with ID {id} submitted on {date} has been rejected. Reason for Rejection: {additional_comments} If you wish to re-open the complaint, you can visit the web portal.\n\nEGOVS", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PGR_CITIZEN_REOPEN_PENDINGFORASSIGNMENT_SMS_MESSAGE", - "message": "Dear Citizen, Your complaint for {complaint_type} with ID {id} submitted on {date} has been Re-opened as per your request. You can track your complaint status and connect with our officials on the web portal.\n\nEGOVS", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PGR_CITIZEN_RESOLVE_RESOLVED_SMS_MESSAGE", - "message": "Dear Citizen, Your complaint for {complaint_type} with ID {id} submitted on {date} has been resolved by {emp_name}. If you are not satisfied with service you can RE-OPEN complaint through web portal or by calling your nearest municipal office.\n\nEGOVS", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PGR_CLOSE_EMPLOYEE_CLOSEDAFTERRESOLUTION_SMS_MESSAGE", - "message": "Shri {emp_name}, Complaint for {complaint_type} with ID {id} has received {rating}/5 feedback from the citizen. Thank you for your service.\n\nEGOVS", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PGR_DEFAULT_CITIZEN_SMS_MESSAGE", - "message": "Your current complaint status is {status}. You can track your complaint status on the mSeva app or your local government web portal.\n\nEGOVS", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PGR_DEFAULT_SMS_MESSAGE", - "message": "Your complaint has been {status}. You can track your complaint status on the mSeva app or your local government web portal.\n\nEGOVS", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PGR_EMPLOYEE_ASSIGN_PENDINGATLME_SMS_MESSAGE", - "message": "Shri {emp_name}, Complaint for '{complaint_type}' with ID {id} has been assigned to you. Please take appropriate action. {ao_designation} - {ulb}.\n\nEGOVS", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PGR_EMPLOYEE_RATE_CLOSEDAFTERREJECTION_SMS_MESSAGE", - "message": "Shri {emp_name}, Complaint for {complaint_type} with ID {id} has received {rating}/5 feedback from the citizen. Thank you for your service.\n\nEGOVS", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PGR_EMPLOYEE_RATE_CLOSEDAFTERRESOLUTION_SMS_MESSAGE", - "message": "Shri {emp_name}, Complaint for {complaint_type} with ID {id} has received {rating}/5 feedback from the citizen. Thank you for your service.\n\nEGOVS", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PGR_EMPLOYEE_REASSIGN_PENDINGATLME_SMS_MESSAGE", - "message": "Shri {emp_name}, Complaint for '{complaint_type}' with ID {id} has been re-assigned as per your request. {ao_designation} - {ulb} \n\nEGOVS", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PGR_EMPLOYEE_REASSIGN_PENDINGFORREASSIGNMENT_SMS_MESSAGE", - "message": "Shri {emp_name}, Complaint for {complaint_type} with ID {id} has been re-assigned as per your request. {ao_designation} - {ulb}.\n\nEGOVS", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PGR_EMPLOYEE_REOPEN_PENDINGFORASSIGNMENT_SMS_MESSAGE", - "message": "Shri {emp_name}, Complaint for {complaint_type} with ID {id} has been Re-opened by the citizen. It is being reviewed by Assigning officer - {ulb}.\n\nEGOVS", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PGR_REASSIGN_CITIZEN_PENDINGATLME_SMS_MESSAGE", - "message": "Dear Citizen, Your complaint for {complaint_type} with ID {id} submitted on {date} has been re-assigned to {emp_name}, {emp_designation}, {emp_department}. You can track your complaint status and connect with our officials on the web portal.\n\nEGOVS", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PGR_REASSIGN_EMPLOYEE_PENDINGATLME_SMS_MESSAGE", - "message": "Shri {emp_name}, Complaint for {complaint_type} with ID {id} has been re-assigned as per your request. {ao_designation} - {ulb}.\n\nEGOVS", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PGR_REASSIGN_PENDINGATLME_SMS_MESSAGE", - "message": "Dear Citizen, Your complaint for {complaint_type} with ID {id} submitted on {date} has been re-assigned to {reassign_emp_name}, {emp_designation}, {emp_department}. You can track your complaint status and connect with our officials on the web portal.\n\nEGOVS", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PGR_REJECT_CITIZEN_REJECTED_SMS_MESSAGE", - "message": "Dear Citizen, Your complaint for {complaint_type} with ID {id} submitted on {date} has been rejected. Reason for Rejection: {reason}, Additional Comments: {additional_comments} If you wish to re-open the complaint, you can visit the web portal.\n\nEGOVS", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PGR_REJECT_REJECTED_SMS_MESSAGE", - "message": "Dear Citizen, Your complaint for {complaint_type} with ID {id} submitted on {date} has been rejected. Reason for Rejection: {reason}, Additional Comments: {additional_comments} If you wish to re-open the complaint, you can visit the web portal.\n\nEGOVS", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PGR_REOPEN_CITIZEN_PENDINGFORASSIGNMENT_SMS_MESSAGE", - "message": "Dear Citizen, Your complaint for {complaint_type} with ID {id} submitted on {date} has been RE-OPEN as per your request. You can track your complaint status and connect with our officials on the web portal.\n\nEGOVS", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PGR_REOPEN_EMPLOYEE_PENDINGFORASSIGNMENT_SMS_MESSAGE", - "message": "Shri {emp_name}, Complaint for {complaint_type} with ID {id} has been re-opened by the citizen. It is being reviewed by Assigning officer - {ulb}.\n\nEGOVS", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PGR_REOPEN_PENDINGFORASSIGNMENT_SMS_MESSAGE", - "message": "Dear Citizen, Your complaint for {complaint_type} with ID {id} submitted on {date} has been RE-OPEN as per your request. You can track your complaint status and connect with our officials on the web portal.\n\nEGOVS", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PGR_RESOLVE_CITIZEN_RESOLVED_SMS_MESSAGE", - "message": "Dear Citizen, Your complaint for {complaint_type} with ID {id} submitted on {date} has been resolved by {emp_name}. If you are not satisfied with service you can RE-OPEN complaint through web portal or by calling your nearest municipal office\n\nEGOVS", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PGR_RESOLVE_RESOLVED_SMS_MESSAGE", - "message": "Dear Citizen,\n Your complaint for with ID submitted on has been resolved by . If you are not satisfied with service you can REOPEN complaint through web portal or by calling our CSR.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PPT_COMMON_ASSESSMENT_FORM_HEADER", - "message": "Assessment Form", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PROFILE_UPDATED", - "message": "Profile is successfully updated", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_ADDITIONAL_CHARGES", - "message": "Additional Charges", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_ADDITIONAL_REBATE", - "message": "Additional Rebate", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_ADDRESS_ERROR_MESSAGE", - "message": "Enter valid address", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_ADD_NEW_PROPERTY", - "message": "Add New Property", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_ADD_UNIT", - "message": "ADD ONE MORE UNIT", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_ADHOC_PENALTY", - "message": "Additional Penalty", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_ADHOC_REBATE", - "message": "Additional Rebate", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_ADVANCE_CARRYFORWARD", - "message": "Amount Paid", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_AGREE_CONTINUE", - "message": "AGREE & CONTINUE", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_AMOUNT_PAID_HINT_TEXT", - "message": "Enter the amount paid", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_AMOUNT_TO_PAY_INR", - "message": "Amount to pay (INR)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_ASSESMENT1_NUMBER_OF_FLOORS", - "message": "No. of floors", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_ASSESMENT1_PLOT_SIZE", - "message": "Plot Size(sq yards)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_ASSESMENT1_PLOT_SIZE_ERROR_MESSAGE", - "message": "Please enter a valid plot size", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_ASSESMENT1_PROPERTY_TYPE", - "message": "Type of Property", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_ASSESPAY_SELECTPROPERTY", - "message": "Assess & Pay : Select Property", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_ASSESSMENT1_FORM_HEADING", - "message": "Tax Assessment Details - 1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_ASSESSMENT_ID", - "message": "Property Tax Assesssment ID", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_ASSESSMENT_ID_PLACEHOLDER", - "message": "Enter property tax assesssment ID", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_ASSESSMENT_INFORMATION_FORM_HEADING", - "message": "Assessment Information", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_BANK_BRANCH", - "message": "Bank Branch", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_BUILT_AREA", - "message": "Built Area", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_BUILT_AREA_ERROR_MESSAGE", - "message": "Enter a valid built area size", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_BUILT_UP_AREA_TOOLTIP_MESSAGE", - "message": "Carpet Area + balcony area + thickness of outer walls", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_CALCULATION_DETAILS", - "message": "CALCULATION DETAILS", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_CALCULATION_LOGIC", - "message": "Calculation Logic", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_CALCULATION_LOGIC_TEXT", - "message": "Property Tax = Built up area on GF*Rates per unit of GF-built up empty land on GF * Rate per unit of GF-empty land 𝝨(built-up on nth floor*Rate per unit of nth floor-built up)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_CANCER_CESS", - "message": "Cancer Cess", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_CHARGE_SLABS", - "message": "Applicable Charge Slabs", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_CHECK_DECLARATION_BOX", - "message": "Please check the declaration box to proceed futher", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_CHECK_DECLATION_BOX", - "message": "Please check the declaration box to proceed futher", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_CHEQUE_NUMBER_ERROR_MESSAGE", - "message": "Check no. should be minimum 6 digits", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_COMMONS_GO_BACK", - "message": "GO BACK", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_COMMONS_NEXT", - "message": "NEXT", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_COMMONS_PROPERTY_TYPE", - "message": "Property Type", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_COMMONS_PROPERTY_USAGE_TYPE", - "message": "Property Usage Type", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_COMMONS_SELECT_PLACEHOLDER", - "message": "Select", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_COMMON_ASSESSMENT_FORM_HEADER", - "message": "Assessment Form", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_COMMON_ASSESSMENT_FORM_HEADERS", - "message": "Assessment Form", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_COMMON_GO_BACK", - "message": "GO BACK", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_COMMON_NEXT", - "message": "Next", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_COMMON_PLEASE_SELECT", - "message": "-- Please Select --", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_COMMON_SELECT_PLACEHOLDER", - "message": "Select", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_COMMON_SQFT_PLACEHOLDER", - "message": "Mention in sq ft", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_COMPLAINT_DETAILS_ERROR_MESSAGE", - "message": "Complaint Details should be less than 300 characters", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_COMPLETED_ASSESSMENTS", - "message": "Completed Assessments", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_DATE_HINT_TEXT", - "message": "dd/mm/yy", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_DD_NUMBER_ERROR_MESSAGE", - "message": "DD should be minimum 6 digits", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_DECIMAL_CEILING_CREDIT", - "message": "Round off", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_DECIMAL_CEILING_DEBIT", - "message": "Round off", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_DESCRIPTION_FLOATING_LABEL", - "message": "Description", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_DESCRIPTION_HINT_TEXT", - "message": "Enter a description of the reason", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_DOCUMENT_ID_TOOLTIP_MESSAGE", - "message": "ID No. for selected Special Category", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_DOCUMENT_ID_TYPE_TOOLTIP_MESSAGE", - "message": "ID proof for selected Special Category", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_EDIT", - "message": "EDIT", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_EDIT_TEXT", - "message": "EDIT", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_EMAIL_ID_ERROR_MESSAGE", - "message": "Enter valid email id", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_EMP_FORM1_HEADER_MESSAGE", - "message": "Collect information from the citizen to identify the property.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_EMP_FORM2_HEADER_MESSAGE", - "message": "Collect information from the citizen to define his/her property.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_EMP_FORM3_HEADER_MESSAGE", - "message": "Collect information from the citizen regarding the owner(s) of the property.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_EMP_FORM4_HEADER_MESSAGE", - "message": "Verify the data provided by the citizen and add charges/rebate if required.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_EMP_FORM5_HEADER_MESSAGE", - "message": "Collect payment from the citizen and enter the payment details.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_ENTER_AMOUNT", - "message": "Enter amount", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_EXAMPLE", - "message": "Examples", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_EXAMPLES", - "message": "Examples", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_FAQ", - "message": "FAQ's", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_FAQs", - "message": "Frequently Asked Questions", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_FINAL_DECLARATION", - "message": "Declaration", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_FINAL_DECLARATION_MESSAGE", - "message": "I hereby declare and affirm that the above-furnished information is true and correct and nothing has been concealed therefrom. I am also aware of the fact that in case this information is found false/incorrect, the authorities are at liberty to initiate recovery of amount/interest/penalty/fine as provided in Punjab Municipal Act 1911 or Punjab Municipal Corporation Act 1976.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_FIRE_CESS", - "message": "Fire Cess", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_FLOOR_DETAILS_ADD_ONE_MORE_UNIT_INFO", - "message": "In a floor, each portion with a different usage or occupancy is a different unit", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_FORM1_HEADER_MESSAGE", - "message": "Please provide information to identify the property.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_FORM1_INFORMATION_MESSAGE", - "message": "If you do not have an existing Property ID, please visit your Municipal office with your Payment Receipt after you complete this assessment and you will be provided one.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_FORM2_BUILT_AREA", - "message": "Built-up area (sq ft)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_FORM2_BUILT_AREA_PLACEHOLDER", - "message": "Enter built-up area", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_FORM2_BUILT_UP_AREA_PLACEHOLDER", - "message": "Enter built-up area", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_FORM2_HEADER_MESSAGE", - "message": "Please provide information to define the property. The Property Tax will be calculated based on this.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_FORM2_NUMBER_OF_FLOORS", - "message": "No. of Floors", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_FORM2_OCCUPANCY", - "message": "Occupancy", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_FORM2_PLOT_SIZE", - "message": "Plot Size(sq yards)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_FORM2_PLOT_SIZE_PLACEHOLDER", - "message": "Enter plot size", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_FORM2_SELECT_FLOOR", - "message": "Select Floor", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_FORM2_SUB_USAGE_TYPE", - "message": "Sub Usage Type", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_FORM2_TOTAL_ANNUAL_RENT", - "message": "Total Annual Rent (INR)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_FORM2_TOTAL_ANNUAL_RENT_PLACEHOLDER", - "message": "Enter annual rent", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_FORM2_TOTAL_BUILT_AREA", - "message": "Total Super Built-up Area (sq ft)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_FORM2_TOTAL_BUILT_AREA_PLACEHOLDER", - "message": "Enter Super Built-up Area", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_FORM2_USAGE_TYPE", - "message": "Unit Usage Type", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_FORM3_ADDRESS_CHECKBOX", - "message": "Same as property address", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_FORM3_CORRESPONDENCE_ADDRESS", - "message": "Correspondence Address", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_FORM3_CORRESPONDENCE_ADDRESS_PLACEHOLDER", - "message": "Enter correspondence address", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_FORM3_DOCUMENT_ID_NO", - "message": "Document ID no.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_FORM3_DOCUMENT_ID_NO_PLACEHOLDER", - "message": "Enter identification no.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_FORM3_DOCUMENT_ID_TYPE", - "message": "Document ID Type", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_FORM3_DOCUMENT_ID_TYPE_PLACEHOLDER", - "message": "Enter identification no.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_FORM3_EMAIL_ID", - "message": "Email ID", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_FORM3_EMAIL_ID_PLACEHOLDER", - "message": "Enter email ID", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_FORM3_FEMALE", - "message": "Female", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_FORM3_GENDER", - "message": "Gender", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_FORM3_GUARDIAN", - "message": "Father's/Husband's Name", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_FORM3_GUARDIAN_PLACEHOLDER", - "message": "Enter name", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_FORM3_HEADER_MESSAGE", - "message": "Please provide information regarding the owner(s) of the property.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_FORM3_MALE", - "message": "Male", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_FORM3_MOBILE_NO", - "message": "Mobile No.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_FORM3_MOBILE_NO_PLACEHOLDER", - "message": "Enter Mobile No.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_FORM3_OWNERSHIP_TYPE", - "message": "Type of Ownership", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_FORM3_OWNERSHIP_TYPE_PLACEHOLDER", - "message": "Select Ownership Type", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_FORM3_OWNER_NAME_PLACEHOLDER", - "message": "Enter Owner's Name", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_FORM3_PAYER_MOBILE_NO", - "message": "Payer Mobile No", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_FORM3_RELATIONSHIP", - "message": "Relationship", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_FORM3_SPECIAL_CATEGORY", - "message": "Special Category", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_FORM3_TRANSGENDER", - "message": "Transgender", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_FORM4_DETAILED_BILL", - "message": "Detailed Bill", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_FORM4_HEADER_MESSAGE", - "message": "Verify the information you have provided and let us know how much you would like to pay against your bill.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_FORM4_IMPORTANT_DATES", - "message": "Important Dates", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_FORM4_PT_DUE", - "message": "Property Tax Dues:", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_FORM4_TOTAL", - "message": "Total", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_FORM5_HEADER_MESSAGE", - "message": "Collect payment from the citizen and enter the payment details.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_FOUR_DIGIT_ERROR_MESSAGE", - "message": "Enter 4 digits", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_FULL_AMOUNT", - "message": "Full Amount", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_HOME_COMPLAINT", - "message": "Citizen Complaint Resolution System", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_HOME_PAY", - "message": "PAY", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_HOME_PAY1", - "message": "PAY", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_HOUSE_NO_ERROR_MESSAGE", - "message": "House no should be less than 100 characters", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_HOW_IT_WORK", - "message": "How it works", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_HOW_IT_WORKS", - "message": "How it works", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_IFSC_ERROR_MESSAGE", - "message": "Please enter a valid IFSC", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_IFSC_FLOATING_LABEL", - "message": "IFSC", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_IFSC_HINT_TEXT", - "message": "Enter bank IFSC", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_INCOMPLETE_ASSESSMENT", - "message": "Incomplete Assessments", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_INCOMPLETE_ASSESSMENTS", - "message": "Incomplete Assessments", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_INDIVIDUAL_EXCEMPTION", - "message": "Individiual Exemption Category (if applicable)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_INSTITUTION_NAME", - "message": "Name of Institution", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_INSTITUTION_NAME_HINT_TEXT", - "message": "Enter Institute's name", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_INSTITUTION_TYPE", - "message": "Type of Institution", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_LANDLINE_NUMBER_FLOATING_LABEL", - "message": "Landline No.(with STD code)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_LANDLINE_NUMBER_HINT_TEXT", - "message": "Enter Landline No.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_LANDMARK_ERROR_MESSAGE", - "message": "Landmark should be less than 100 characters", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_LAND_NUMBER_ERROR_MESSAGE", - "message": "Enter valid landline number", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_MAKE_PAYMENT_DETAILED_BILL", - "message": "Detailed Bill", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_MAKE_PAYMENT_IMPORTANT_DATES", - "message": "Important Dates", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_MAKE_PAYMENT_PT_DUE", - "message": "Property Tax Dues:", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_MAKE_PAYMENT_TOTAL", - "message": "Total", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_MISPLACED_RECEIPT_FLOATING_LABEL", - "message": "Misplaced Receipt", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_MOBILE_NUMBER_ERROR_MESSAGE", - "message": "Enter valid mobile number", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_MODE_OF_PAYMENT", - "message": "Mode of payment", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_MOHALLA_TOOLTIP_MESSAGE", - "message": "Name of the area in which the property is located", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_MY_PROPERTIES", - "message": "My Properties", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_MY_PROPERTY", - "message": "My Properties", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_NAME_ERROR_MESSAGE", - "message": "Enter valid name (max length 64)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_NEW_PROPERTY_HEADER", - "message": "New Property", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_NOTIFICATIONS_COMPLAINT_ASSIGNED", - "message": "Your complaint has been assigned to the concerned department.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_NOTIFICATIONS_HEADER", - "message": "Notifications", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_NOTIFICATIONS_PROPERTY_TAX_PAID", - "message": "Your property tax has been assessed and paid successfully.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_NOTIFICATIONS_WATER_SEWERAGE_TAX_PAID", - "message": "Your Water & Sewerage tax has been paid successfully.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_NO_ASSESSMENT_BUTTON", - "message": "New Property Assessment", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_NO_ASSESSMENT_MESSAGE1", - "message": "You have no complete assessments.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_NO_ASSESSMENT_MESSAGE2", - "message": "You have no incomplete assessments!", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_NO_ASSESSMENT_MESSAGE3", - "message": "You have yet to assess for a property. Start Now:", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_NUMBER_OF_FLOORS_TOOLTIP_MESSAGE", - "message": "Total number of built floors in the property", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_OK", - "message": "OK", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_OLDPID_TOOLTIP_MESSAGE", - "message": "Unique ID assigned to the property by your Municipality", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_OOPS", - "message": "OOPS!", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_OWNER_EXEMPTION", - "message": "Special Category Exemption", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_OWNER_INFORMATION_FORM_HEADING", - "message": "Owner Information", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_OWNER_MOBILE_NUMBER", - "message": "Owner Mobile No.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_OWNER_MOBILE_NUMBER_PLACEHOLDER", - "message": "Enter owner mobile no.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_OWNER_NAME", - "message": "Name", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_OWNER_NAME_RECEIPT", - "message": "Owner {0} Name", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_PARTIAL_AMOUNT", - "message": "Partial Amount", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_PAYMENT_ABOUT", - "message": "About", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_PAYMENT_ACCESSANDPAY", - "message": "Assess & Pay", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_PAYMENT_ACCESS_AND_PAY", - "message": "Access & Pay", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_PAYMENT_ASSESS_AND_PAY", - "message": "Assess & Pay", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_PAYMENT_DETAILS", - "message": "Payment Details", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_PAYMENT_DRAFTS", - "message": "Drafts", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_PAYMENT_EXAMPLES", - "message": "Examples", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_PAYMENT_HOW_IT_WORKS", - "message": "How it works", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_PAYMENT_METHOD_BHIM_UPI", - "message": "BHIM UPI", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_PAYMENT_METHOD_CARD", - "message": "Credit /Debit Card", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_PAYMENT_METHOD_CARD_NUMBER", - "message": "Card Number", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_PAYMENT_METHOD_CARD_NUMBER_PLACEHOLDER", - "message": "Enter the card number", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_PAYMENT_METHOD_CASH", - "message": "Cash", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_PAYMENT_METHOD_CVV", - "message": "CVV", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_PAYMENT_METHOD_CVV_DESC", - "message": "Last 3 digits printed on the back of the card", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_PAYMENT_METHOD_EXPIRES_ON", - "message": "Expires on", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_PAYMENT_METHOD_MM", - "message": "MM", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_PAYMENT_METHOD_NAME_ON_CARD", - "message": "Name on Card", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_PAYMENT_METHOD_NAME_ON_CARD_PLACEHOLDER", - "message": "Enter the name on card", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_PAYMENT_METHOD_NET_BANKING", - "message": "Net Banking", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_PAYMENT_METHOD_PAYTM", - "message": "Paytm", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_PAYMENT_METHOD_YY", - "message": "YY", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_PAYMENT_MY_RECEIPTS", - "message": "My Receipts", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_PAYMENT_NEW_ASSEMENTS", - "message": "New Property Assessment", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_PAYMENT_PAID_ASSESSMENTS", - "message": "Paid Assessments", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_PAYMENT_PENDING_ASSESSMENTS", - "message": "Pending Assessments", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_PAYMENT_STEP_HEADER", - "message": "Property Tax", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_PAYMENT_STEP_HEADER1", - "message": "Property Tax", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_PAY_PROPERTY_TAX", - "message": "Pay Property Tax", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_PINCODE_ERROR_MESSAGE", - "message": "Pincode should be 6 digits", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_PLOT_SIZE_ERROR_MESSAGE", - "message": "Enter a valid Plot Size", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_POLICE_STATION_HEADER", - "message": "Police Stations", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_PROPERTY_ADDRESS_EXISTING_PID", - "message": "Existing Property ID", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_PROPERTY_ADDRESS_EXISTING_PID_PLACEHOLDER", - "message": "Enter existing property ID", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_PROPERTY_ADDRESS_OLDPID", - "message": "Old Property ID", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_PROPERTY_ADDRESS_OLDPID_ERRORMESSAGE", - "message": "Enter a valid property ID", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_PROPERTY_ADDRESS_OLDPID_PLACEHOLDER", - "message": "Enter old property ID", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_PROPERTY_ASSESSMENT_HEADER", - "message": "Property Assessment", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_PROPERTY_ASSESSMENT_HISTORY", - "message": "Assessment History", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_PROPERTY_ASSESSMENT_ID", - "message": "Property Tax Unique ID.:", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_PROPERTY_DETAILS_BUILDING_COLONY_NAME", - "message": "Building/Colony Name", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_PROPERTY_DETAILS_BUILDING_COLONY_NAME_PLACEHOLDER", - "message": "Enter buiding/colony name", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_PROPERTY_DETAILS_COLONY_NAME", - "message": "Building/Colony Name", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_PROPERTY_DETAILS_COLONY_NAME_ERRORMSG", - "message": "Enter building/colony name", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_PROPERTY_DETAILS_COLONY_NAME_PLACEHOLDER", - "message": "Enter building/colony name", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_PROPERTY_DETAILS_DOOR_NUMBER", - "message": "House/Shop No.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_PROPERTY_DETAILS_DOOR_NUMBER_ERRORMSG", - "message": "Enter a valid house no.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_PROPERTY_DETAILS_DOOR_NUMBER_PLACEHOLDER", - "message": "Enter house no.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_PROPERTY_DETAILS_FORM_HEADING", - "message": "Property Address", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_PROPERTY_DETAILS_MOHALLA", - "message": "Locality", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_PROPERTY_DETAILS_MOHALLA_ERRORMESSAGE", - "message": "Select a valid mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_PROPERTY_DETAILS_PINCODE", - "message": "Pincode", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_PROPERTY_DETAILS_PINCODE_ERRORMESSAGE", - "message": "Enter a valid area pincode", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_PROPERTY_DETAILS_PINCODE_ERRORMSG", - "message": "Existing property id should be less than 64 characters", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_PROPERTY_DETAILS_PINCODE_PLACEHOLDER", - "message": "Enter area pincode", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_PROPERTY_DETAILS_STREET", - "message": "Street Name", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_PROPERTY_DETAILS_STREET_ERRORMSG", - "message": "Enter a valid street name", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_PROPERTY_DETAILS_STREET_NAME", - "message": "Street Name", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_PROPERTY_DETAILS_STREET_NAME_PLACEHOLDER", - "message": "Enter Street Name", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_PROPERTY_DETAILS_STREET_PLACEHOLDER", - "message": "Enter street name", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_PROPERTY_DETAIL_FORM_HEADING", - "message": "Property Address", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_PROPERTY_INFORMATION", - "message": "Property Information", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_PROPERTY_TAX_WHICH_YEAR_QUESTION", - "message": "Which year’s taxes would you like to pay?", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_PROPERTY_TAX_WHICH_YEAR_QUESTIONS", - "message": "Which year’s taxes would you like to pay?", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_PROPERTY_VIEW_ALL_ASSESSMENTS", - "message": "VIEW ALL ASSESSMENTS", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_REASON_FOR_CHARGES", - "message": "Reason for Charges", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_REASON_FOR_REBATE", - "message": "Reason for rebate", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_RECEIPTS_SUCCESS_MESSAGE", - "message": "Payment has been made successfully!", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_RECEIPTS_SUCCESS_MESSAGE4", - "message": "Payment has recorded successfully", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_RECEIPTS_SUCCESS_MESSAGE5", - "message": "Please direct the citizen to collect his/her existing property", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_RECEIPT_FAILURE_MESSAGE", - "message": "Your transaction has failed!", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_RECEIPT_FAILURE_MESSAGE1", - "message": "Your payment of INR", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_RECEIPT_FAILURE_MESSAGE2", - "message": "has failed", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_RECEIPT_FAILURE_MESSAGE3", - "message": "Please try again!", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_RECEIPT_NUMBER_HINT_TEXT", - "message": "Enter receipt no.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_RECEIPT_SUCCESS_MESSAGE", - "message": "Payment has been made successfully!", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_RECEIPT_THANKYOU", - "message": "Thank you!", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_REVIEW_PAY_FORM_HEADING", - "message": "Review & Pay", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_SEARCH_BUTTON", - "message": "SEARCH", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_SEARCH_PROPERTY", - "message": "Search Property", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_SEARCH_PROPERTY_TABLE_HEADER", - "message": "Property Search Result", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_SEARCH_PROPERTY_TABLE_HEADERS", - "message": "Property Search Result", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_SELECT_ACTION", - "message": "Select action", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_SELECT_PAYMENT_MODE", - "message": "Select payment mode", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_SUPER_AREA_ERROR_MESSAGE", - "message": "Enter a valid super area size", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_TAX", - "message": "Property Tax", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_TIME_INTEREST", - "message": "Interest", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_TIME_PENALTY", - "message": "Penalty", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_TIME_REBATE", - "message": "Rebate", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_TOTAL_ANNUAL_RENT_TOOLTIP_MESSAGE", - "message": "Total Rent collected on the property over a year", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_TOTAL_AREA_TOOLTIP_MESSAGE", - "message": "Total Carpet Area + Total balcony area + Total thickness of outer walls + Total common area (lift, stairs, lobby etc.)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_TYPE_OF_BUILDING", - "message": "Type of Buiding", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_TYPE_OF_USAGE", - "message": "Type of usage", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_Tax", - "message": "Property Tax (PT)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_UNIQUE_ID", - "message": "Property Tax Unique ID", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_UNIQUE_ID_PLACEHOLDER", - "message": "Enter property tax unique ID", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_UNIT", - "message": "Unit", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_UNIT_USAGE_EXEMPTION", - "message": "Usage Exemption", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_USAGE_EXCEMPTION", - "message": "Usage Exemption Category (if applicable)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "PT_VALID_DETAILS", - "message": "Enter valid details", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "REASSIGN", - "message": "Re-assign", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "REASSIGN_SUCCESSFULLY", - "message": "Re-assigned Successfully", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "REJECT", - "message": "Reject", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "REJECT_SUCCESSFULLY", - "message": "Rejected Successfully", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "REOPEN", - "message": "Re-Open", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "REOPEN_SUCCESSFULLY", - "message": "Reopened Successfully", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "REPORTS_RESULT_HEADER_DATE_RANGE", - "message": "Showing data for", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "REPORTS_RESULT_HEADER_DATE_UPTO", - "message": "Showing data upto", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "REPORTS_SEARCHFORM_APPLY", - "message": "Showing data upto", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "REPORTS_SEARCHFORM_MODIFY_DATE_HEADER", - "message": "Modify report by date range", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "REPORT_SEARCHFORM_DATE_GREATER", - "message": "To Date is Lesser than From Date", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "REPORT_SEARCHFORM_DATE_LESSER", - "message": "From Date is Greater than To Date", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "RESOLVE", - "message": "Resolve", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "RESOLVE_SUCCESSFULLY", - "message": "Resolved Successfully", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.ANIMALS", - "message": "Animals", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.BADSTREETLIGHT", - "message": "Bad Streetlight", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.BADSUPPLY", - "message": "Bad Supply", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.BADTRAFFICLIGHT", - "message": "Bad Traffic Light", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.BINNOTEMPTY", - "message": "Bin Not Empty", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.BINS", - "message": "Bins", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.BLOCK/OVERFLOWINGSEWAGE", - "message": "Block / Overflowing sewage", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.BLOCKED", - "message": "Blocked", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.BLOCKEDDRAIN", - "message": "Blocked Drain", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.BLOCKOROVERFLOWINGSEWAGE", - "message": "Block/Overflowing sewage", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.BLOCKOROVERFLOWINGSEWAGE.DEPT_4", - "message": "Block / Overflowing sewage", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.BLOCKOVERFLOWINGSEWAGE", - "message": "Block/Overflowing sewage", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.BOUNDARYSTRUCTUREIDENTITY", - "message": "Boundary, Structure & Identity", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.BROKEN", - "message": "Broken", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.BROKENBIN", - "message": "Broken Bin", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.BROKENGARBAGEBIN", - "message": "Broken Garbage Bin", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.BROKENGUARD", - "message": "Broken Guard", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.BROKENHANDPUMP", - "message": "Broken Handpump", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.BROKENORDAMAGEDPIPE", - "message": "Broken Or Damaged Pipe", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.BROKENORLEAKINGSEWAGEPIPE", - "message": "Borken or Leaking Sewage pipe", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.BROKENPIPEORTAP", - "message": "Broken Pipe Or Tap", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.BROKENWATERPIPEORLEAKAGE", - "message": "Broken water pipe / Leakage", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.BROKENWATERPIPEORLEAKAGE.DEPT_4", - "message": "Broken water pipe / Leakage", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.BROKENWATERPIPEORTAP", - "message": "Broken Water Pipe or Tap", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.BURNING", - "message": "Burning", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.BURNINGOFGARBAGE", - "message": "Burning of garbage", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.BURNINGOFGARBAGE.DEPT_3", - "message": "Burning of garbage", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.COMPENSATION", - "message": "Compensation(Redevelopment & Damaged Property)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.CONSTRUCTIONMATERIALLYINGONTHEROAD", - "message": "Construction material lying on the road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.CONSTRUCTIONMATERIALLYINGONTHEROAD.DEPT_4", - "message": "Construction material lying on the road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.CUSTOMS", - "message": "Customs Duty", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.CUSTOMSDUTY", - "message": "Compensation(Redevelopment & Damaged Property)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.CUTTINGORTRIMMINGOFTREEREQUIRED", - "message": "Cutting/trimming of tree required", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.CUTTINGORTRIMMINGOFTREEREQUIRED.DEPT_5", - "message": "Cutting/trimming of tree required", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.DAMAGED", - "message": "Damaged", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.DAMAGED/BLOCKEDFOOTPATH", - "message": "Damaged/blocked footpath", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.DAMAGEDBLOCKEDFOOTPATH", - "message": "Damaged/blocked footpath", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.DAMAGEDDRAIN", - "message": "Damaged Drain", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.DAMAGEDFOOTPATH", - "message": "Damaged Footpath", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.DAMAGEDGARBAGEBIN", - "message": "Damaged garbage bin", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.DAMAGEDGARBAGEBIN.DEPT_3", - "message": "Damaged garbage bin", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.DAMAGEDORBLOCKEDFOOTPATH", - "message": "Damaged/blocked footpath", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.DAMAGEDORBLOCKEDFOOTPATH.DEPT_4", - "message": "Damaged/blocked footpath", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.DAMAGEDROAD", - "message": "Damaged road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.DAMAGEDROAD.DEPT_4", - "message": "Damaged road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.DAMAGEDSTREETLIGHT", - "message": "Damaged Streetlights", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.DEADANIMALS", - "message": "Dead animals", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.DEADANIMALS.DEPT_3", - "message": "Dead animals", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.DEADBODY", - "message": "Dead Body", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.DEBRISORSILT", - "message": "Debris Or Silt", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.DIRTYORSMELLY", - "message": "Dirty Or Smelly", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.DIRTYORSMELLYPUBLICTOILETS", - "message": "Dirty/smelly public toilet", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.DIRTYORSMELLYPUBLICTOILETS.DEPT_3", - "message": "Dirty/smelly public toilet", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.DIRTYWATERSUPPLY", - "message": "Dirty water supply", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.DIRTYWATERSUPPLY.DEPT_4", - "message": "Dirty water supply", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.DISPLACEMENT", - "message": "Displacement (Insecurity)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.DRAINS", - "message": "Drains", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.DUMPING", - "message": "Dumping", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.EMPLOYEEABSENT", - "message": "Employee Absent", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.ENCROACHMENT", - "message": "Encroachment", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.ENCROACHMENTONPUBLICPROPERTY", - "message": "Enroachment on Public Property", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.FINANCE", - "message": "Tax Rate", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.FOOTPATHS", - "message": "Footpaths", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.GARBAGE", - "message": "Garbage", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.GARBAGEBINNOTEMPTY", - "message": "Garbage Bin not empty", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.GARBAGEBINNOTTHERE", - "message": "Garbage Bin not there", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.GARBAGENEEDSTOBECLEANED", - "message": "Garbage needs to be cleaned", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.GARBAGENEEDSTOBECLEARED", - "message": "Garbage needs to be cleared", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.GARBAGENEEDSTOBECLEARED.DEPT_3", - "message": "Garbage needs to be cleared", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.GOODGOVERNANCE", - "message": "Good Governance", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.GOVERNANCE", - "message": "Good Governance", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.HOUSEDEBATE", - "message": "Displacement (Insecurity)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.HOUSING", - "message": "House Debate (Kebele House & Proclamation 47/67)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.ILLEGALCONSTRUCTION", - "message": "Illegal Construction", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.ILLEGALCONSTRUCTIONS", - "message": "Illegal constructions", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.ILLEGALCONSTRUCTIONS.DEPT_6", - "message": "Illegal constructions", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.ILLEGALCUTTING", - "message": "Illegal Cutting", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.ILLEGALCUTTINGOFTREES", - "message": "Illegal Cutting of trees", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.ILLEGALCUTTINGOFTREES.DEPT_5", - "message": "Illegal Cutting of trees", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.ILLEGALDISCHARGE", - "message": "Illegal discharge of sewage", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.ILLEGALDISCHARGEOFSEWAGE", - "message": "Ilegal Discharge of Sewage", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.ILLEGALDISCHARGEOFSEWAGE.DEPT_4", - "message": "Illegal discharge of sewage", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.ILLEGALFOOTPATHSHOP", - "message": "Illegal Footpath Shop", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.ILLEGALHOARDING", - "message": "Illegal Hoarding", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.ILLEGALPARKING", - "message": "Illegal parking", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.ILLEGALPARKING.DEPT_6", - "message": "Illegal parking", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.ILLEGALSHOPS", - "message": "Illegal Shops", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.ILLEGALSHOPSONFOOTPATH", - "message": "Illegal shops on footpath", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.ILLEGALSHOPSONFOOTPATH.DEPT_6", - "message": "Illegal shops on footpath", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.ILLEGALSHOPSONTHEFOOTPATH", - "message": "Illegal Shops on the Footpath", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.INFRASTRUCTURE", - "message": "Boundary, Structure & Identity", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.JUSTICE", - "message": "Justice", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.LABOR", - "message": "Labor Dispute", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.LABORDISPUTE", - "message": "Labor Dispute", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.LANDVIOLATION", - "message": "Land Violation", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.LANDVIOLATIONS", - "message": "Land Violations", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.LEGAL", - "message": "Justice", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.LIGHTS", - "message": "Lights", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.MANHOLECOVERMISSINGORDAMAGED", - "message": "Manhole cover is missing/damaged", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.MANHOLECOVERMISSINGORDAMAGED.DEPT_4", - "message": "Manhole cover is missing/damaged", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.MANHOLEISSUE", - "message": "Manhole Issue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.MISUSE", - "message": "Misuse", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.MOSQUITOES", - "message": "Mosquitoes", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.MOSQUITOS", - "message": "Mosquitoes", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.NONSWEEPINGOFROAD", - "message": "Road needs Sweeping", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.NONSWEEPINGOFROAD.DEPT_3", - "message": "Non sweeping of road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.NOSTREETLIGHT", - "message": "No streetlight", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.NOSTREETLIGHT.DEPT_1", - "message": "No streetlight", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.NOTFUNCTIONAL", - "message": "Not Functional", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.NOTWATERSUPPLY", - "message": "Not Water Supply", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.NOWATERORELECTRICITY", - "message": "No Water Or Electricity", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.NOWATERORELECTRICITYINPUBLICTOILET", - "message": "No water/electricity in public toilet", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.NOWATERORELECTRICITYINPUBLICTOILET.DEPT_3", - "message": "No water/electricity in public toilet", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.NOWATERSUPPLY", - "message": "No Water Supply", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.NOWATERSUPPLY.DEPT_4", - "message": "No water supply", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.NonSweepingOfRoad", - "message": "Non Sweeping Of Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.OPENDEFACATION", - "message": "Open Defecation", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.OPENDEFECATION", - "message": "Open Defecation", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.OPENDEFECATION.DEPT_3", - "message": "Open Defecation", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.OPENLAND", - "message": "Open Land", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.OTHERS", - "message": "Others", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.OTHERS.DEPT_10", - "message": "Others", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.OVERFLOWING", - "message": "Overflowing", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.OVERFLOWING/BLOCKEDDRAIN", - "message": "Overflowing/Blocked drain", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.OVERFLOWINGBLOCKEDDRAIN", - "message": "Overflowing/Blocked drain", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.OVERFLOWINGDRAIN", - "message": "Owerflowing Drain", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.OVERFLOWINGORBLOCKEDDRAIN", - "message": "Overflowing/Blocked drain", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.OVERFLOWINGORBLOCKEDDRAIN.DEPT_4", - "message": "Overflowing/Blocked drain", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.OVERFLOWINGSEWAGE", - "message": "Overflowing Sewage", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.PARKREQUIRESMAINTENANCE", - "message": "Park requires maintenance", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.PARKREQUIRESMAINTENANCE.DEPT_5", - "message": "Park requires maintenance", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.PARKS", - "message": "Parks", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.PENSIONS", - "message": "Retirement", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.POLEORLIGHTDAMAGE", - "message": "Pole Or Light Damage", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.POORSWEEPING", - "message": "Poor Sweeping", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.POSSESSIONDISPUTE", - "message": "Possession Dispute", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.POTHOLES", - "message": "Potholes", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.POTHOLESONTHEROAD", - "message": "Potholes on the Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.PROPERTY", - "message": "Possession Dispute", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.PROPOSAL", - "message": "Customs Duty", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.PROPOSALS", - "message": "Proposal", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.PUBLICTOILETISDAMAGED", - "message": "Public toilet damaged", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.PUBLICTOILETISDAMAGED.DEPT_3", - "message": "Public toilet damaged", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.PUBLICTOILETISNOTWORKINGPROPERLY", - "message": "Public Toilet is not working properly", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.PUBLICTOILETS", - "message": "Public Toilets", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.REMOVEGARBAGEORWATER", - "message": "Remove Garbage Or Water", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.REPLACE/PROVIDEGARBAGEBIN", - "message": "Replace/provide garbage bin", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.REPLACEORPROVIDEGARBAGEBIN", - "message": "Replace/provide garbage bin", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.REPLACEPROVIDEGARBAGEBIN", - "message": "Replace/provide garbage bin", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.REQUESTNEW", - "message": "Request New", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.REQUESTSMOKEOP", - "message": "Request Smoke Op", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.REQUESTSPRAYINGORFOGGINGOPERATION", - "message": "Request spraying/ fogging operations", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.REQUESTSPRAYINGORFOGGINGOPERATION.DEPT_3", - "message": "Request spraying/ fogging operations", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.REQUESTSPRAYOP", - "message": "Request Spray Op", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.REQUESTTANKER", - "message": "Request Tanker", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.REQUESTTRIMMING", - "message": "Request Trimming", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.RETIREMENT", - "message": "Retirement", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.ROADORFOOTPATH", - "message": "Road Or Footpath", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.ROADS", - "message": "Roads", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.ROADSANDFOOTPATHS", - "message": "Roads & footpaths", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.ROADSCODEE", - "message": "Roads codee", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.SERVICE", - "message": "Service", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.SERVICENAME.FEVERS_DENGUE_MALARIA", - "message": "Fevers - Dengue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.SERVICENAME.NON_RECEIPT_OF_PENSIONS_DISABLED_ELDERLY_ETC", - "message": "Non-Receipt of Pensions - Disabled", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.SERVICENAME.REPAIRS_TO_FLYOVERS_BRIDGES_CULVERTS", - "message": "Repairs to Flyovers", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.SERVICENAME.UNHYGIENIC_IMPROPER_TRANSFER_OF_MEAT_LIVESTOCK", - "message": "Unhygienic", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.SEWAGE", - "message": "Sewage", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.SEWAGEEFFLUENTS", - "message": "Sewage Effluents", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.SHORTAGEOFWATER", - "message": "Shortage of water", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.SHORTAGEOFWATER.DEPT_4", - "message": "Shortage of water", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.SHORTSUPPLY", - "message": "Short Supply", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.SLOWPROGRESS", - "message": "Slow Progress", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.STAGNANTWATER", - "message": "Stagnant Water", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.STORMWATERDRAIN", - "message": "Storm Water Drain", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.STRAYANIMALS", - "message": "Stray animals", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.STRAYANIMALS.DEPT_3", - "message": "Stray animals", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.STRAYCATTLE", - "message": "Stray Cattle", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.STRAYDOGS", - "message": "Stray Dogs", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.STRAYPIGS", - "message": "Stray Pigs", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.STREETLIGHTNOTWORKING", - "message": "Streetlight not working", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.STREETLIGHTNOTWORKING.DEPT_1", - "message": "Streetlight not working", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.STREETLIGHTS", - "message": "Streetlights", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.SUGGESTION", - "message": "Proposal", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.SUGGESTIONS", - "message": "Suggestion", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.SUPPORT", - "message": "Support / Help", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.SUPPORTHELP", - "message": "House Debate (Kebele House & Proclamation 47/67)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.TAXRATE", - "message": "Tax Rate", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.TOILETS", - "message": "Toilets", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.TREES", - "message": "Trees", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.TRUCKSPILLAGE", - "message": "Truck Spillage", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.VACANTLAND", - "message": "Vacant Land", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.WATER", - "message": "Water", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.WATERANDSEWAGE", - "message": "Water & Sewage", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.WATERBODY", - "message": "Water Body", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.WATERLOGGED", - "message": "Water Logged", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.WATERLOGGEDROAD", - "message": "Water logged road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.WATERLOGGEDROAD.DEPT_4", - "message": "Water logged road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.WATERPRESSUREISVERYLESS", - "message": "Water pressure is very less", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "SERVICEDEFS.WATERPRESSUREISVERYLESS.DEPT_4", - "message": "Water pressure is very less", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1", - "message": "Mohalla Rajan Wala (both sides) - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC10", - "message": "Mohalla Majoran - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC100", - "message": "Mohalla Angaria wala - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1000", - "message": "Maqsudan Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1001", - "message": "Nagra Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1002", - "message": "Jawala Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1003", - "message": "New Jawala Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1004", - "message": "Patel Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1005", - "message": "New Patel Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1006", - "message": "Guru Ravidass Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1007", - "message": "Bhupinder Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1008", - "message": "Ashok Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1009", - "message": "Nagra Pind", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC101", - "message": "Miya Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1010", - "message": "New Nagra", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1011", - "message": "Shital Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1012", - "message": "New Shital Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1013", - "message": "Jugian", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1014", - "message": "Sham Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1015", - "message": "Amar Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1016", - "message": "Babu Labh Singh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1017", - "message": "Rattan Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1018", - "message": "New Rattan Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1019", - "message": "Shaheed Babu Labh Singh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC102", - "message": "Shalimar Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1020", - "message": "New Shaheed Babu Labh Singh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1021", - "message": "Madhuban Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1022", - "message": "Gujrati Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1023", - "message": "Jagwali Kathi Near Canal", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1024", - "message": "Ragu Nath Mandir Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1025", - "message": "Kacha Kot", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1026", - "message": "Old Green Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1027", - "message": "Green Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1028", - "message": "Raja Garden", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1029", - "message": "Raja Garden Extension", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC103", - "message": "New Dashmesh Nagar Part", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1030", - "message": "V.I.P Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1031", - "message": "Butti Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1032", - "message": "Gagan Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1033", - "message": "Bhai Gurdass Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1034", - "message": "Baba Bachittar Ji Nagar Mithu Basti", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1035", - "message": "Tara Singh Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1036", - "message": "New Rasila Nagar Basti Danishmandan", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1037", - "message": "Dilbagh Nagar Ext.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1038", - "message": "Rasila Nagar Phase 2 Danishmandan", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1039", - "message": "Rasila Nagar Basti Danishmandan", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC104", - "message": "Kaki Pind", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1040", - "message": "Begampura Colony Danishmandan", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1041", - "message": "Baba Budha Ji Nagar Mithu Nagar Basti", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1042", - "message": "Ekta Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1043", - "message": "New Shastri Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1044", - "message": "Satnam Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1045", - "message": "Anoop Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1046", - "message": "Bal bro Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1047", - "message": "Badhri Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1048", - "message": "Badhri Colony Phase (2)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1049", - "message": "Ram Shernam Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC105", - "message": "New Joginder Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1050", - "message": "Peer Das Basti", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1051", - "message": "Kamar Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1052", - "message": "Panu Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1053", - "message": "Paras Estate", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1054", - "message": "Paras Estate 2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1055", - "message": "Maharaja Garden", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1056", - "message": "Harbanse Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1057", - "message": "5 Peer Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1058", - "message": "Anoop Nagar (2)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1059", - "message": "Sher Singh Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC106", - "message": "Part of Joginder Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1060", - "message": "Roshan Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1061", - "message": "Qilla Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1062", - "message": "Kathera Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1063", - "message": "Gautam Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1064", - "message": "New Gautam Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1065", - "message": "Kabir Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1066", - "message": "Guru Ram Dass Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1067", - "message": "Mata Sant Kaur Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1068", - "message": "City A Prime", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1069", - "message": "City A Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC107", - "message": "New Beant Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1070", - "message": "City A Kunj", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1071", - "message": "Rajan Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1072", - "message": "Kailash Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1073", - "message": "Balmik Mohalla Bawa Khel", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1074", - "message": "Akal Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1075", - "message": "Basti Bawa Khel (main)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1076", - "message": "Raj Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1077", - "message": "New Raj Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1078", - "message": "Kabir Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1079", - "message": "Bank Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC108", - "message": "Part of Beant Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1080", - "message": "Basti Bawa Khel", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1081", - "message": "Katehara Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1082", - "message": "New Rattan Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1083", - "message": "Guru Nanak Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1084", - "message": "New Guru Nanak Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1085", - "message": "Shiv Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1086", - "message": "Baba Kahandass Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1087", - "message": "Village Nagara", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1088", - "message": "Abinandan Park", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1089", - "message": "National Park", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC109", - "message": "Gulmarg Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1090", - "message": "Ashok Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1091", - "message": "Vivek Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1092", - "message": "Green Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1093", - "message": "Shanti Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1094", - "message": "Viveka Nand Park", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1095", - "message": "Subash Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1096", - "message": "Golden Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1097", - "message": "Navyug Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1098", - "message": "New Shiv Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1099", - "message": "Maqsudan Byepass", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC11", - "message": "Indra Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC110", - "message": "Mehtab Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1100", - "message": "Mahasha Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1101", - "message": "Anand Ngr", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1102", - "message": "New Anand Ngr", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1103", - "message": "Janta Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1104", - "message": "Navnirman Janta Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1105", - "message": "Issa Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1106", - "message": "Guru Nanak Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1107", - "message": "Aara Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1108", - "message": "Surat Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1109", - "message": "Master Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC111", - "message": "Professor Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1110", - "message": "Angad Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC1111", - "message": "Amandip Avenue.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC112", - "message": "Mohan Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC113", - "message": "Part of Ladhewali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC114", - "message": "Part of New Dashmesh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC115", - "message": "Dhilwan", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC116", - "message": "Dhanowali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC117", - "message": "Sanik Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC118", - "message": "Old Dashmesh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC119", - "message": "Ajeet Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC12", - "message": "Sant Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC120", - "message": "Guru Anged Dev Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC121", - "message": "Sunder Nagar Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC122", - "message": "Kohinoor Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC123", - "message": "Sunny Prime", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC124", - "message": "Arman Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC125", - "message": "Johan Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC126", - "message": "Ganesh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC127", - "message": "New Ganesh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC128", - "message": "Masi Mohalla Dakoha", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC129", - "message": "Tarun Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC13", - "message": "Kalia Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC130", - "message": "Kaki Pind", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC131", - "message": "Arman Nagar 2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC132", - "message": "Birring Pind-1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC133", - "message": "Birring Pind-2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC134", - "message": "Mohinder Singh Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC135", - "message": "Mehnga Singh Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC136", - "message": "Dada Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC137", - "message": "Peace Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC138", - "message": "Bunga Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC139", - "message": "Golden Colony (Phase 1)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC14", - "message": "Kalia Colony Ph-1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC140", - "message": "Golden Colony (Phase 2)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC141", - "message": "Golden Colony (Phase 3)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC142", - "message": "Model Estate", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC143", - "message": "Defence Colony (Phase 1)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC144", - "message": "New Defence Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC145", - "message": "Paragpura ( Old Phagwara Road)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC146", - "message": "Paragpura ( Pind )", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC147", - "message": "Paragpura ( Abadi Near Railway fatak )", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC148", - "message": "Ratti Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC149", - "message": "Thakur Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC15", - "message": "Kalia Colony PH-2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC150", - "message": "Ram Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC151", - "message": "Chotte Ram Bagh", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC152", - "message": "Panch Sheel Colony ( Half )", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC153", - "message": "Bhullar Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC154", - "message": "Modern State", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC155", - "message": "Yadav Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC156", - "message": "Baba Budha Ji Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC157", - "message": "Bhuda Ji Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC158", - "message": "Shaheed Gurvinder Singh Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC159", - "message": "National Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC16", - "message": "Kalia Colony PH-3", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC160", - "message": "Ravidass Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC161", - "message": "Guru Nanak Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC162", - "message": "Jagjit Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC163", - "message": "Old Kaki Pind", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC164", - "message": "Village Dakoha", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC165", - "message": "Baba Budha Singh Nagar Street No 1 to 9", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC166", - "message": "Ekta Nagar PH-1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC167", - "message": "Ekta Nagar PH-2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC168", - "message": "Joginder Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC169", - "message": "Panch Rattan Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC17", - "message": "Kalia Farm", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC170", - "message": "New Defence Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC171", - "message": "Beant Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC172", - "message": "Old Beant Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC173", - "message": "PSEB Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC174", - "message": "BB Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC175", - "message": "Half Rama Mandi Main Bazar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC176", - "message": "Khateek Market Ramamandi", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC177", - "message": "Valmik Mohalla Ramamandi", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC178", - "message": "Krishna Sweet Wali Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC179", - "message": "Palwon Wali Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC18", - "message": "Guru Amar Dass Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC180", - "message": "Fouji Wali Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC181", - "message": "Bhatra Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC182", - "message": "Aytar Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC183", - "message": "Guru Nanak Pura East", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC184", - "message": "Guru Nanak Pura West", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC185", - "message": "Chugitti", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC186", - "message": "Ekta Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC187", - "message": "P.A.P", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC188", - "message": "Railway Colony-3", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC189", - "message": "Rajinder Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC19", - "message": "Guru Amar Dass Nagar 2- Marla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC190", - "message": "Preet Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC191", - "message": "Sehgal Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC192", - "message": "Kirti Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC193", - "message": "Mohalla Ladowali Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC194", - "message": "Mohyal Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC195", - "message": "Link Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC196", - "message": "Hargobind Pura", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC197", - "message": "Ranjit Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC198", - "message": "New Rajinder Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC199", - "message": "Police Line", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC2", - "message": "Bank Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC20", - "message": "New Guru Amar Dass Nagar Ext.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC200", - "message": "Guru Nanak Pura (West) Street No. 1 to 8", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC201", - "message": "New Guru Nanak Pura (West)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC202", - "message": "Bhojowal Patti (Chugittee)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC203", - "message": "Bharat Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC204", - "message": "Satnam Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC205", - "message": "Chugittee", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC206", - "message": "Ved Ram Parkash Street", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC207", - "message": "Guru Gobind Singh Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC208", - "message": "Sureya Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC209", - "message": "Komal Vihar Old & New", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC21", - "message": "Guru Amar Dass Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC210", - "message": "Bashirpura", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC211", - "message": "Thakur Singh Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC212", - "message": "Royal Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC213", - "message": "Jhansi Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC214", - "message": "Gobind Garh", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC215", - "message": "Arjun Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC216", - "message": "40 Quarter", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC217", - "message": "Dashmesh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC218", - "message": "New Dashmesh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC219", - "message": "Sant Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC22", - "message": "Venus Valley", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC220", - "message": "Shanti Pura", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC221", - "message": "New Baradari", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC222", - "message": "Poultry Form Area", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC223", - "message": "Prem Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC224", - "message": "Mandi Fenton Garg", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC225", - "message": "Partap Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC226", - "message": "Rishi Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC227", - "message": "Brahm Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC228", - "message": "Mandi Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC229", - "message": "Railway Colony No. 1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC23", - "message": "Baba Mohan Dass Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC230", - "message": "Guard Colony No-2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC231", - "message": "Old Jawahar Nagar Single Lane", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC232", - "message": "Central Town", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC233", - "message": "Krishan Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC234", - "message": "Old Jawahar Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC235", - "message": "Master Tara Singh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC236", - "message": "P & T Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC237", - "message": "Riaz Pura", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC238", - "message": "Ramesh Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC239", - "message": "Shiva Ji Park", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC24", - "message": "Salempur Muslmana", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC240", - "message": "Netaji Park", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC241", - "message": "Civil Lines", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC242", - "message": "Mohalla Makhdumpura", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC243", - "message": "Mohalla Shastri Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC244", - "message": "Fauji Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC245", - "message": "Shivalik Apartments", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC246", - "message": "Venus Apartments", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC247", - "message": "B-Block Apartments", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC248", - "message": "Paradise Apartments", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC249", - "message": "Gurkirpa Apartments", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC25", - "message": "Swarn Park-1Swarn Prak- 2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC250", - "message": "Ganga Apartments", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC251", - "message": "Nakodar Road Market", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC252", - "message": "Lajpat Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC253", - "message": "Lajpat Nagar Market", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC254", - "message": "Abadpura", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC255", - "message": "Balmiki Colony Link Road Abadpura", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC256", - "message": "Major Bahadur Singh Nagar & Marg", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC257", - "message": "New Model Town Mall Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC258", - "message": "New Jawahar Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC259", - "message": "Guru Nanak Mission Chowk", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC26", - "message": "Sanjay Gandhi Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC260", - "message": "Badridass Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC261", - "message": "Purani Baradari", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC262", - "message": "Skylark Chowk", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC263", - "message": "Civil Lines", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC264", - "message": "Sehdev Market", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC265", - "message": "Namdev Chowk", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC266", - "message": "G.T Road Market", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC267", - "message": "Shastri Chowk", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC268", - "message": "Sanjay Gandhi Market", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC269", - "message": "New Courts Chowk", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC27", - "message": "Gadaipur", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC270", - "message": "Police Line Market", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC271", - "message": "BMC Chowk", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC272", - "message": "Market Opposite Bus Stand", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC273", - "message": "Link Road Model Town", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC274", - "message": "Valmiki Colony Major Bahadur Singh Marg", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC275", - "message": "Radio Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC276", - "message": "New Jawahar Nagar (Point)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC277", - "message": "Green Park", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC278", - "message": "Mota Singh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC279", - "message": "Modern Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC28", - "message": "Raja Garden", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC280", - "message": "Gurjaipal Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC281", - "message": "Wariam Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC282", - "message": "Gian Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC283", - "message": "New Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC284", - "message": "Defence Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC285", - "message": "Defence Colony Ext.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC286", - "message": "Chotti Baradari", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC287", - "message": "Jaswant Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC288", - "message": "Roop Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC289", - "message": "Atwal Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC29", - "message": "Ram Bagh Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC290", - "message": "Atwal House", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC291", - "message": "New Hardyal Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC292", - "message": "Hardyal Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC293", - "message": "Rubi Hospital", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC294", - "message": "BSF Camp", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC295", - "message": "New Green Park", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC296", - "message": "Railway Quarter ( Cool Road)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC297", - "message": "Garha/Shiv Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC298", - "message": "Dayanand chowk", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC299", - "message": "Rattan Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC3", - "message": "Sarabha Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC30", - "message": "Dada Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC300", - "message": "Sark Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC301", - "message": "Valmiki Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC302", - "message": "Ravi dass Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC303", - "message": "Makhan Ramwali Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC304", - "message": "School wali Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC305", - "message": "Jiwan Singh Chowk", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC306", - "message": "Tanki Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC307", - "message": "Phagu Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC308", - "message": "Sarpanch wali Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC309", - "message": "Main Bazar Rama Mandir", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC31", - "message": "Industrial Area", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC310", - "message": "Main Bazar Gurudwara Singh Sabha", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC311", - "message": "Garha Vehanda", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC312", - "message": "Phagu Mohalla Ram Mandir wali Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC313", - "message": "Phagwari Mohalla Near Janj Ghar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC314", - "message": "Phagwari Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC315", - "message": "Dr. Mana Wali Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC316", - "message": "Old Div. 7 Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC317", - "message": "Cantt. Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC318", - "message": "Cantt. Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC319", - "message": "New Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC32", - "message": "Focal Point", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC320", - "message": "Jaswant Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC321", - "message": "Jawant Nagar near Gurudwara", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC322", - "message": "Jaswant Nagar Gali No. 1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC323", - "message": "Jaswant Nagar Gali Thekewali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC324", - "message": "Jaswant Nagar Gali no. 100 3 to 5", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC325", - "message": "Jaswant Nagar Gali 2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC326", - "message": "Golden Aveune-1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC327", - "message": "Golden Avenue-2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC328", - "message": "Gurjeet Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC329", - "message": "Dashmesh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC33", - "message": "Transport Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC330", - "message": "Chanchal Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC331", - "message": "Chotti Baradari Part-2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC332", - "message": "Idgah Mohalla Garha", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC333", - "message": "Sarak Mohalla Garha", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC334", - "message": "Guru Diwan Nagar Garha", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC335", - "message": "Tara Chand Colony Garha", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC336", - "message": "Chintpurni Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC337", - "message": "Geeta Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC338", - "message": "Garha", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC339", - "message": "Labour Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC34", - "message": "Udyog Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC340", - "message": "Kunowali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC341", - "message": "Urban Estate Ph-1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC342", - "message": "M.I.G", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC343", - "message": "Urban Estate Phase Half", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC344", - "message": "Sabowal Old.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC345", - "message": "Isherpuri Colony (Some Part)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC346", - "message": "Urban Estate 2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC347", - "message": "Sabowal", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC348", - "message": "Lahor Nangal", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC349", - "message": "Isherpuri Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC35", - "message": "Parshuram Pur", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC350", - "message": "Ranjit Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC351", - "message": "Kalgidhar Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC352", - "message": "New Kalgidhar Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC353", - "message": "Ravinder Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC354", - "message": "Dashmesh Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC355", - "message": "Karol Bagh", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC356", - "message": "Vijay Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC357", - "message": "Guru Ram Dass Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC358", - "message": "Baba Makhan Shah Lubana", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC359", - "message": "Friends Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC36", - "message": "Vadda Saipur", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC360", - "message": "Officer Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC361", - "message": "D.C Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC362", - "message": "White Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC363", - "message": "Punjabi Bagh", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC364", - "message": "Lahor Nagar Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC365", - "message": "Happy Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC366", - "message": "New Isherpuri", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC367", - "message": "Universal Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC368", - "message": "Singh Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC369", - "message": "Engineer Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC37", - "message": "Reru", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC370", - "message": "Green Garden Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC371", - "message": "Ravinder Nagar Extension", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC372", - "message": "Punjabi Bagh Extension", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC373", - "message": "Model Town", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC374", - "message": "Parkash Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC375", - "message": "Guru Nanak Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC376", - "message": "Guru Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC377", - "message": "Rishi Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC378", - "message": "Jyoti Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC379", - "message": "Shankar Garden", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC38", - "message": "Hargobind Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC380", - "message": "Lal Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC381", - "message": "Satkartar Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC382", - "message": "Ravinder Nagar Extension", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC383", - "message": "Cheema Nagar Ext.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC384", - "message": "Vasant Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC385", - "message": "Vasant Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC386", - "message": "Vasant Vihar Ext.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC387", - "message": "Urban Estate Ph-2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC388", - "message": "Model Town", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC389", - "message": "New Jawahar Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC39", - "message": "Punjabi Bagh", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC390", - "message": "Lajpat Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC391", - "message": "Dada Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC392", - "message": "Green Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC393", - "message": "Green Model Town", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC394", - "message": "Kewal Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC395", - "message": "Indra Park", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC396", - "message": "Cheema Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC397", - "message": "Shiv Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC398", - "message": "Gurmeet Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC399", - "message": "Ramneek Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC4", - "message": "Paschim Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC40", - "message": "Bachint Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC400", - "message": "Bank Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC401", - "message": "Bank Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC402", - "message": "Raja Garden", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC403", - "message": "Keshev Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC404", - "message": "Ekta Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC405", - "message": "New Raja Garden", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC406", - "message": "New Raja Garden Extension", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC407", - "message": "Bhai Samund Singh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC408", - "message": "New Arora Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC409", - "message": "Mithapur", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC41", - "message": "Parsuram Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC410", - "message": "King Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC411", - "message": "Green Wood Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC412", - "message": "Ram Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC413", - "message": "Sewerage Board Quarter", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC414", - "message": "75 Garden Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC415", - "message": "Panch Sheel Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC416", - "message": "Mayor Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC417", - "message": "New Light Colony Phase -1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC418", - "message": "Bank Enclave Phase-2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC419", - "message": "Residence Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC42", - "message": "Kahanpur Abadi", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC420", - "message": "Sudhama Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC421", - "message": "New Sudhama Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC422", - "message": "Rocky Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC423", - "message": "New Light Colony Phase-2 (Sudhama Vihar)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC424", - "message": "VIP Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC425", - "message": "Sadhu Singh Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC426", - "message": "Red Face Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC427", - "message": "New Garden Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC428", - "message": "Bhai Banno Ji Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC429", - "message": "Gill Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC43", - "message": "Ramneek Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC430", - "message": "Parkash Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC431", - "message": "Khurla Kingra", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC432", - "message": "Tower Town Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC433", - "message": "Silver Residency", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC434", - "message": "Tower Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC435", - "message": "Guru Nanak Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC436", - "message": "Boota Mandi", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC437", - "message": "Boota Pind (Back Side Dr.B.R. Ambedkar Park", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC438", - "message": "Swami Lal JI Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC439", - "message": "New Green Park", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC44", - "message": "Baba Deep Singh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC440", - "message": "Khurla Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC441", - "message": "Professor Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC442", - "message": "Army Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC443", - "message": "Mann Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC444", - "message": "Chopra Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC445", - "message": "Khurla Kingra (Back Side Sai Mandir)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC446", - "message": "Door Darshan Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC447", - "message": "Bombay Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC448", - "message": "Friends Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC449", - "message": "SAS Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC45", - "message": "Nurpur Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC450", - "message": "SAS Nagar Extension", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC451", - "message": "New Green Model Town", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC452", - "message": "Palam Rajeet Apartments", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC453", - "message": "Bank Enclave Part 1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC454", - "message": "Kuki Dhab", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC455", - "message": "Green Woods Apartments", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC456", - "message": "Park View Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC457", - "message": "Housing Board Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC458", - "message": "Satnam Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC459", - "message": "Mann Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC46", - "message": "Sunder Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC460", - "message": "Punjabi Bagh Wadala Chowk", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC461", - "message": "Silver heights", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC462", - "message": "Partap Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC463", - "message": "Guru Gobind Singh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC464", - "message": "Guru Arjan dev Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC465", - "message": "G.T.B Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC466", - "message": "Garden Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC467", - "message": "G.T.B Nagar extension", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC468", - "message": "GTB Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC469", - "message": "F.C.I Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC47", - "message": "Hargobind Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC470", - "message": "Chanakya Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC471", - "message": "New GTB Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC472", - "message": "Vivek Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC473", - "message": "Green Model Town", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC474", - "message": "Boota Pind", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC475", - "message": "Wadala Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC476", - "message": "Main Road Abadpura", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC477", - "message": "Gali No. 2 To Gali No. 6 ", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC478", - "message": "Preet Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC479", - "message": "Rameshwar Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC48", - "message": "Gulmarg Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC480", - "message": "Sh. Guru Ravidass Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC481", - "message": "Tubewell wali Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC482", - "message": "Labour Court Gali Panj Peer", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC483", - "message": "Maharishi Valmiki Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC484", - "message": "Taneja New Abadpura", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC485", - "message": "Avtar Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC486", - "message": "New Avtar Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC487", - "message": "New Suraj Ganj", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC488", - "message": "Pishori Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC489", - "message": "Naqvi Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC49", - "message": "Bachint Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC490", - "message": "Dairy Kalu Ram-O Band Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC491", - "message": "Bhargo Camp-Add", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC492", - "message": "Pishori Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC493", - "message": "Link Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC494", - "message": "Abadpura Gali No.1 to 2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC495", - "message": "New Suraj Ganj –west", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC496", - "message": "Gali No-10-B-11-B", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC497", - "message": "Bhargo Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC498", - "message": "Bhargo Camp", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC499", - "message": "Ravidass Chowk", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC5", - "message": "Amrit Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC50", - "message": "Sarabha Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC500", - "message": "Channan Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC501", - "message": "Boota Mandi", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC502", - "message": "Silver Oak Apartments", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC503", - "message": "Nakodar Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC504", - "message": "Chappli Chowk", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC505", - "message": "Sant Pura", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC506", - "message": "Arya Samaj Mandir", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC507", - "message": "Valmiki Mandir", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC508", - "message": "Chapal Chowk", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC509", - "message": "Kabir Mandir", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC51", - "message": "Chack Hussiana", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC510", - "message": "Gain Giri Mandir", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC511", - "message": "Nirankari Bhawan Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC512", - "message": "Ravidass Dham", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC513", - "message": "Kanth Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC514", - "message": "State Bank Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC515", - "message": "Ravidass Mandir", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC516", - "message": "Sharif Pura", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC517", - "message": "Tokri Chowk Bhargo Camp", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC518", - "message": "Gali Mirasiya Wali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC519", - "message": "Gali Somnath Aara Wala", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC52", - "message": "Lamba Pind", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC520", - "message": "Prem Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC521", - "message": "Gali Ravi Karyana Store", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC522", - "message": "Gali Sharma Model School", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC523", - "message": "Chune Wali Gali Boota Mandi", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC524", - "message": "Gali Pawan Koushal", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC525", - "message": "Bhargo Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC526", - "message": "Nive Passe Bhargo Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC527", - "message": "Azad Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC528", - "message": "New Suraj Ganj", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC529", - "message": "New Suraj Ganj (West)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC53", - "message": "Chandigarh Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC530", - "message": "Model House Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC531", - "message": "Main Bazar Bhargo", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC532", - "message": "Mohalla Amar Saw Mill", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC533", - "message": "Bhargo Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC534", - "message": "Shamshan Ghat Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC535", - "message": "Mohalla Vari Vatt", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC536", - "message": "Bhargo Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC537", - "message": "Tej Mohan Nagar Gali No-5 to Gali No-11", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC538", - "message": "New Ashok Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC539", - "message": "Narayan Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC54", - "message": "Succhi Pind", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC540", - "message": "Ashok Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC541", - "message": "New Sant Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC542", - "message": "Sant Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC543", - "message": "Nijatam Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC544", - "message": "Chouhan Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC545", - "message": "Ganesh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC546", - "message": "Basti Nau", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC547", - "message": "Bank Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC548", - "message": "Chaar Marla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC549", - "message": "Block-A,B,C.D", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC55", - "message": "Hardial Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC550", - "message": "Bhagat Singh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC551", - "message": "Rajput Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC552", - "message": "Taranwali Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC553", - "message": "Mohalla Kot", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC554", - "message": "Uttam Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC555", - "message": "Mohalla Chaiaam", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC556", - "message": "Tej Mohan Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC557", - "message": "Sant Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC558", - "message": "Siddhartha Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC559", - "message": "New Abadi Jallowal", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC56", - "message": "New Hardial Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC560", - "message": "Kay Pee Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC561", - "message": "New Model House", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC562", - "message": "Model Gram Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC563", - "message": "Gahi Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC564", - "message": "Jaina Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC565", - "message": "New Ghai Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC566", - "message": "Chiragpura Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC567", - "message": "New Deol Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC568", - "message": "New Dashmesh Nagar Block-A", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC569", - "message": "New Dashmesh Nagar Block-C", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC57", - "message": "Hardip Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC570", - "message": "Tilak Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC571", - "message": "Kartar Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC572", - "message": "New Kartar Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC573", - "message": "Udye Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC574", - "message": "Deol Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC575", - "message": "New Deol Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC576", - "message": "Aman Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC577", - "message": "Major Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC578", - "message": "Pink City Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC579", - "message": "Kot Sadiq Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC58", - "message": "Judge Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC580", - "message": "Khara Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC581", - "message": "Kot Sadiq", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC582", - "message": "Mast Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC583", - "message": "Thind Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC584", - "message": "Sai Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC585", - "message": "BT Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC586", - "message": "Kanshi Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC587", - "message": "Green Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC588", - "message": "Geeta Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC589", - "message": "New Geeta Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC59", - "message": "Prem Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC590", - "message": "Ishwar Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC591", - "message": "New Dashmesh Nagar B Block", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC592", - "message": "Dordarshan Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC593", - "message": "Tower Enclave Phase 2nd", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC594", - "message": "Hamilton Tower", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC595", - "message": "Guru Ravidass Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC596", - "message": "New Ravidass Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC597", - "message": "Shiva Ji Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC598", - "message": "New Shiva Ji Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC599", - "message": "Lasuri Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC6", - "message": "Chak Jinda", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC60", - "message": "Gulmohar City", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC600", - "message": "New Lasuri Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC601", - "message": "Begampura Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC602", - "message": "Main Adda Basti Danishmandan", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC603", - "message": "Main Bazar Basti Danishmandan", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC604", - "message": "Valmiki Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC605", - "message": "Chandigarh Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC606", - "message": "New Chandigarh Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC607", - "message": "Chungi Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC608", - "message": "Chungi No-9", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC609", - "message": "Tagri Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC61", - "message": "Three Star Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC610", - "message": "Guru Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC611", - "message": "Surjit Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC612", - "message": "Basti Sheikh + Danishmandan", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC613", - "message": "Kattra Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC614", - "message": "Guru Sant Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC615", - "message": "Guru Nanak Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC616", - "message": "Lasuri Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC617", - "message": "Baldev Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC618", - "message": "Satkartar Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC619", - "message": "Ujala Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC62", - "message": "Soma Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC620", - "message": "Mohindra Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC621", - "message": "Valmiki Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC622", - "message": "Vada Bazar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC623", - "message": "Banian Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC624", - "message": "Satran Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC625", - "message": "Mochian Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC626", - "message": "Tarkhana Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC627", - "message": "Telian Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC628", - "message": "Road Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC629", - "message": "Manjit Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC63", - "message": "Mata Salani Mandir", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC630", - "message": "Chet Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC631", - "message": "Janak Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC632", - "message": "Chaian Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC633", - "message": "Kot Bazar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC634", - "message": "Gulabia Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC635", - "message": "Bara Bazar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC636", - "message": "Hargobind Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC637", - "message": "Gurditta Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC638", - "message": "Borah Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC639", - "message": "Sethia Wali Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC64", - "message": "Baba Gadila Sham colony (Succhi Pind)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC640", - "message": "Dhankian Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC641", - "message": "Jairath Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC642", - "message": "Bagh Ahluwalia", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC643", - "message": "Kamaliya Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC644", - "message": "Gobind Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC645", - "message": "New Gobind Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC646", - "message": "Dilbagh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC647", - "message": "120' Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC648", - "message": "Shastri Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC649", - "message": "Old Shastri Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC65", - "message": "Deep Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC650", - "message": "Old Dusshara Ground", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC651", - "message": "Surya Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC652", - "message": "Basti Gujan", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC653", - "message": "Ambedkar Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC654", - "message": "Shah Kuli Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC655", - "message": "Virdi Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC656", - "message": "Valmiki Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC657", - "message": "Vada Vehra", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC658", - "message": "Sunyara Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC659", - "message": "Jangra Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC66", - "message": "New Upkar Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC660", - "message": "Machi Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC661", - "message": "Harkrishan Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC662", - "message": "Manjit Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC663", - "message": "New Dilbagh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC664", - "message": "Dilbagh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC665", - "message": "Lahoria Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC666", - "message": "Kot Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC667", - "message": "Binda Chowk", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC668", - "message": "Doriya Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC669", - "message": "Board Wali Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC67", - "message": "Moh Kot Ram Dass ( Abadi )", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC670", - "message": "Main Bazar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC671", - "message": "Shibu Mandir Chowk", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC672", - "message": "New Adarsh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC673", - "message": "J.P.Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC674", - "message": "Adarsh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC675", - "message": "J.P. Nagar Extension", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC676", - "message": "Basti Nau", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC677", - "message": "Krishan Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC678", - "message": "Basti Mithu", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC679", - "message": "Patwar Khana", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC68", - "message": "Karol Bagh", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC680", - "message": "Conal Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC681", - "message": "Harbans Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC682", - "message": "New Harbans Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC683", - "message": "New Harbans Nagar Ext.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC684", - "message": "Adarsh Nagar up to Satyam Hospital Street", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC685", - "message": "New Vijay Nagar Left Side", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC686", - "message": "Tagore Nagar Right Side St.NO.7", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC687", - "message": "Dyal Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC688", - "message": "Gujral Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC689", - "message": "Shakti Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC69", - "message": "Rail Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC690", - "message": "Vijay Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC691", - "message": "S.U.S Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC692", - "message": "Ajit Singh Nagar up to Nakodar Chowk", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC693", - "message": "Niwan Suraj Gunj", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC694", - "message": "Islam Gunj", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC695", - "message": "Islamabad", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC696", - "message": "Mission Compound Left Side Batra Hospital", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC697", - "message": "Makhdoom Pura", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC698", - "message": "Dhobi Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC699", - "message": "Mohalla Pacca Bagh", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC7", - "message": "Toor Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC70", - "message": "Patel Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC700", - "message": "Ram Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC701", - "message": "Saidan Gate", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC702", - "message": "Chowk Kade Shah", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC703", - "message": "Batakh Wala Chowk", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC704", - "message": "Rainak Bazar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC705", - "message": "Naya Bazar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC706", - "message": "Shaheed Udham Singh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC707", - "message": "Flats", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC708", - "message": "Civil Hospital", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC709", - "message": "E.S.I Hospital", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC71", - "message": "Sangam Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC710", - "message": "E.S.I Hospital Flats", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC711", - "message": "Milap Chowk to G.P.O", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC712", - "message": "G.P.O to Shastri Chowk", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC713", - "message": "Shastri to Milap Chowk", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC714", - "message": "Milap to Sunrise Hotal", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC715", - "message": "Sunrise Hotal to Partap Bagh", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC716", - "message": "Partap Bagh to Phagwara Gate", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC717", - "message": "Naya Bazar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC718", - "message": "Saiden Gate", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC719", - "message": "Peer Bodla Bazar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC72", - "message": "Preet Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC720", - "message": "Khazuria Bazar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC721", - "message": "Guru Bazar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC722", - "message": "Neehya Band Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC723", - "message": "Jybal Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC724", - "message": "Neem Wali Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC725", - "message": "Tanki Wali Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC726", - "message": "Khodiya Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC727", - "message": "Kotpakshiya", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC728", - "message": "Hotel Raj Mahal back Side Gurudawara and Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC729", - "message": "Pakka Bagh", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC73", - "message": "Mann Singh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC730", - "message": "Chohal Bagh", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC731", - "message": "Hindsamachar Ground", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC732", - "message": "Mina Bazar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC733", - "message": "Tikki Bagh Chowk", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC734", - "message": "Ucha Suraj Gunj", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC735", - "message": "Jyoti chowk to preet Hotel", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC736", - "message": "Charanjit Pura", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC737", - "message": "Ajit Pura", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC738", - "message": "Jatt Pura", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC739", - "message": "Valmiki Gate", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC74", - "message": "Suchi Pind", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC740", - "message": "Malka Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC741", - "message": "Mohindru Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC742", - "message": "Mitha Bazar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC743", - "message": "Telwali Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC744", - "message": "Chota Ali Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC745", - "message": "Alli Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC746", - "message": "Bansa Wala Bazar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC747", - "message": "Chajju Ram Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC748", - "message": "Kotwali Bazar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC749", - "message": "Malora Muhalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC75", - "message": "Indian Oil Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC750", - "message": "Nauhrian Bazar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC751", - "message": "Kot Bahadur Khan", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC752", - "message": "Sheikhan Bazar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC753", - "message": "Sudan Chowk", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC754", - "message": "Deen Dayal Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC755", - "message": "Prem Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC756", - "message": "New Prem Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC757", - "message": "Sat Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC758", - "message": "Chandan Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC759", - "message": "Fateh Puri", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC76", - "message": "Green County", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC760", - "message": "Vikrampura", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC761", - "message": "Subash Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC762", - "message": "Partap Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC763", - "message": "Purani Kachehri", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC764", - "message": "Piplan Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC765", - "message": "Chadhian Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC766", - "message": "Lawan Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC767", - "message": "Charjian Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC768", - "message": "Mitha Bazar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC769", - "message": "Bhairon Bazar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC77", - "message": "Ladhewali Pind", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC770", - "message": "Quilla Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC771", - "message": "Qazi Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC772", - "message": "Khingran Gate", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC773", - "message": "Mughlan Dhiki", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC774", - "message": "Prem Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC775", - "message": "Purian Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC776", - "message": "Sehglan Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC777", - "message": "Modian Tod", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC778", - "message": "Thapra Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC779", - "message": "Mai Hiran Gate", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC78", - "message": "Chokan Kalan Pind", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC780", - "message": "Phagwara Gate", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC781", - "message": "Rasta Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC782", - "message": "Biliya Mandir", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC783", - "message": "Talhi Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC784", - "message": "Baghia Whra", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC785", - "message": "Quda Shah Chowk", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC786", - "message": "Phir Bodhla Bazar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC787", - "message": "Kalo Vani Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC788", - "message": "Atari Bazar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC789", - "message": "Nacha Badh Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC79", - "message": "Nagal Shama Pind", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC790", - "message": "Kanchia Bazar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC791", - "message": "Qazi Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC792", - "message": "Qilla Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC793", - "message": "Shivraz Garh", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC794", - "message": "Panj Peer Chowk", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC795", - "message": "Bhagat Singh Chowk", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC796", - "message": "Railway Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC797", - "message": "Rishi Nagar Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC798", - "message": "Partap Bagh", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC799", - "message": "Awa Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC8", - "message": "Navjot Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC80", - "message": "Datar Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC800", - "message": "Kot Kishan Chand", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC801", - "message": "Jagat Pura", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC802", - "message": "Dhan Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC803", - "message": "Rishi Nagar (5 Gali)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC804", - "message": "Kishanpura (5 Gali)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC805", - "message": "Inderparsth Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC806", - "message": "Arya Samaj Mandir", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC807", - "message": "Bheem Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC808", - "message": "Sansi Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC809", - "message": "Dolatpuri", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC81", - "message": "Khehra Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC810", - "message": "Kapoor Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC811", - "message": "Ajit Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC812", - "message": "Amrik Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC813", - "message": "New Ajit Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC814", - "message": "New Amrik Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC815", - "message": "Baba Math Shah", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC816", - "message": "Santoshi Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC817", - "message": "Madrasi Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC818", - "message": "Qazi Mandi", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC819", - "message": "Kishan Pura", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC82", - "message": "Kabir Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC820", - "message": "Hoshiarpur Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC821", - "message": "Old Hoshiarpur Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC822", - "message": "Baldev Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC823", - "message": "New Baldev Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC824", - "message": "Baba Balak Nath Market", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC825", - "message": "Madrasi Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC826", - "message": "Ravidass School Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC827", - "message": "Dhonka Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC828", - "message": "Prithvi Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC829", - "message": "New Prithvi Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC83", - "message": "Kabir Avenue Extension", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC830", - "message": "Lambapind Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC831", - "message": "Dutta Street", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC832", - "message": "Raman Shiv Mandir Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC833", - "message": "Ajit Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC834", - "message": "Balmiki Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC835", - "message": "Vivek Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC836", - "message": "New Vivek Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC837", - "message": "Arjun Singh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC838", - "message": "Jaimal Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC839", - "message": "Durga Mandir Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC84", - "message": "Punjab Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC840", - "message": "Vinay Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC841", - "message": "Akash Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC842", - "message": "Arjun Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC843", - "message": "Jaimal Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC844", - "message": "Upkar Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC845", - "message": "New Upkar Nargar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC846", - "message": "Ghandi Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC847", - "message": "New Ghandi Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC848", - "message": "Chakk Hussaina", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC849", - "message": "Hoshiarpur Road Lamba Pind(Left Side)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC85", - "message": "Punjab Avenue Extension", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC850", - "message": "Muslim Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC851", - "message": "New Vinay Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC852", - "message": "Hans Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC853", - "message": "New Santokhpura", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC854", - "message": "Durga Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC855", - "message": "Sarabha Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC856", - "message": "Guru Ram Dass Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC857", - "message": "Niwi Abadi", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC858", - "message": "Lakshmipura", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC859", - "message": "New Lakshmipura", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC86", - "message": "Dhaliwal Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC860", - "message": "Vij Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC861", - "message": "Sant Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC862", - "message": "Bhagatpura", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC863", - "message": "Jeet Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC864", - "message": "Vikaspuri", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC865", - "message": "New Vikaspuri", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC866", - "message": "Ambika Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC867", - "message": "B.D.Steel", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC868", - "message": "Santokhpura Nivi Abadi", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC869", - "message": "Basti Bhure Kha", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC87", - "message": "Himachal Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC870", - "message": "Shah Sikandar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC871", - "message": "Ram Gharia School", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC872", - "message": "Preet Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC873", - "message": "Basant Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC874", - "message": "New Basant Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC875", - "message": "Aman Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC876", - "message": "New Aman Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC877", - "message": "New colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC878", - "message": "Kamal Park", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC879", - "message": "Preet Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC88", - "message": "Green Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC880", - "message": "New Preet Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC881", - "message": "Sodal Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC882", - "message": "Sidh Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC883", - "message": "Ashok Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC884", - "message": "Ramco Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC885", - "message": "New Sodal Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC886", - "message": "Mathura Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC887", - "message": "Kot Baba Deep Singh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC888", - "message": "Tobari Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC889", - "message": "Tanda Road Hanuman Mandir Chowk to Tanda Road Railway Crossing", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC89", - "message": "Sunshine Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC890", - "message": "Shah Sikandar Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC891", - "message": "Kailash Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC892", - "message": "New Kailash Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC893", - "message": "New Kailash Nagar Ext.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC894", - "message": "Gobind Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC895", - "message": "New Gobind Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC896", - "message": "J.M.C Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC897", - "message": "Gujja Peer Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC898", - "message": "Amar Garden", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC899", - "message": "Saipur Kalan", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC9", - "message": "New Guru Amar Das Extension Paschim", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC90", - "message": "Silver Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC900", - "message": "Sanjay Gandhi", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC901", - "message": "Dada Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC902", - "message": "Saini Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC903", - "message": "Chotta Saipur", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC904", - "message": "Hari Singh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC905", - "message": "Shashi Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC906", - "message": "Lathi Mar Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC907", - "message": "Sodal Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC908", - "message": "Gujja Peer Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC909", - "message": "Sodal Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC91", - "message": "Randhawa Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC910", - "message": "Laxmi Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC911", - "message": "Kali Mata Mandir Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC912", - "message": "Bhagat Singh Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC913", - "message": "Baba Balak Nath Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC914", - "message": "Shiv Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC915", - "message": "Canal Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC916", - "message": "Industrial Area", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC917", - "message": "Dada Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC918", - "message": "Chota Saipur Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC919", - "message": "Shiv Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC92", - "message": "Lahora Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC920", - "message": "Brij Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC921", - "message": "Gajji Gulla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC922", - "message": "Parbhat Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC923", - "message": "Ram Nagar Railway", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC924", - "message": "Crossing to Gajji Gujja Chowk Left Side", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC925", - "message": "Industrial Area Ext.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC926", - "message": "Canal Industrial Complex", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC927", - "message": "Gandhi Camp", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC928", - "message": "Gurdev Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC929", - "message": "Gopal Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC93", - "message": "Nanak Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC930", - "message": "Satnam Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC931", - "message": "Sawan Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC932", - "message": "Valmiki Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC933", - "message": "New Grain Market", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC934", - "message": "Jain Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC935", - "message": "New Gopal Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC936", - "message": "Neela Mahal", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC937", - "message": "Mohalla Krar Khan", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC938", - "message": "Sangra Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC939", - "message": "Teacher Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC94", - "message": "Basant Hill", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC940", - "message": "Krishna Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC941", - "message": "Tobri Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC942", - "message": "Guru Nanak Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC943", - "message": "Harnamdasspura", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC944", - "message": "Kot Lakhpat Rai", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC945", - "message": "Banda Bahadur Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC946", - "message": "Kapurthala Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC947", - "message": "Bagh Baharia", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC948", - "message": "Gulab Devi Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC949", - "message": "Bulton Park Cricket Stadium", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC95", - "message": "University Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC950", - "message": "Durga Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC951", - "message": "B.S.F Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC952", - "message": "Gopal Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC953", - "message": "New Colony Gopal Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC954", - "message": "Main Road Old Sabzi Mandi to Burton Park", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC955", - "message": "Sangat Singh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC956", - "message": "Balwant Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC957", - "message": "Bandha Bhadur Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC958", - "message": "Sarswati Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC959", - "message": "PNT Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC96", - "message": "Moti Bagh", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC960", - "message": "Bagh Bharia", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC961", - "message": "Bhagwan Dass Pura", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC962", - "message": "Dhiman Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC963", - "message": "Adresh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC964", - "message": "Natha Bagechi", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC965", - "message": "Misson Compound", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC966", - "message": "Talab Bharia", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC967", - "message": "Jail Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC968", - "message": "Kabir Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC969", - "message": "Kachari Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC97", - "message": "Park Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC970", - "message": "Gandhi Camp 3 Lain", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC971", - "message": "Windsor Park", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC972", - "message": "Rose Park", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC973", - "message": "Jain Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC974", - "message": "Gupta Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC975", - "message": "Hardev Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC976", - "message": "Guru Nanak Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC977", - "message": "Guru Arjun Dev Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC978", - "message": "Sarswati Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC979", - "message": "Surjit Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC98", - "message": "Chopra Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC980", - "message": "Malak Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC981", - "message": "Kalyani Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC982", - "message": "Suriya Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC983", - "message": "Vivekananda Park", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC984", - "message": "Ariya Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC985", - "message": "Pingalwara", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC986", - "message": "Gujrati Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC987", - "message": "Shardha Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC988", - "message": "Sawarn Park", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC989", - "message": "Ram Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC99", - "message": "Dr. Ambedkar Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC990", - "message": "Chhota Gandhi Nagar Camp", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC991", - "message": "Friends Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC992", - "message": "Seth Hukam Chand Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC993", - "message": "Greater Kailash", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC994", - "message": "Moti Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC995", - "message": "New Moti Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC996", - "message": "Tagore Park/ Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC997", - "message": "Professor Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC998", - "message": "Maqsudan Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_ADMIN_JLC999", - "message": "Bohar Wala Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1", - "message": "Ashok Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC10", - "message": "Gurbachan Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC100", - "message": "Dera Preet Nagar Jhuggia", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1000", - "message": "Maqsudan Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1001", - "message": "Nagra Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1002", - "message": "Jawala Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1003", - "message": "New Jawala Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1004", - "message": "Patel Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1005", - "message": "New Patel Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1006", - "message": "Guru Ravidass Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1007", - "message": "Bhupinder Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1008", - "message": "Ashok Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1009", - "message": "Nagra Pind", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC101", - "message": "Miya Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1010", - "message": "New Nagra", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1011", - "message": "Shital Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1012", - "message": "New Shital Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1013", - "message": "Jugian", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1014", - "message": "Sham Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1015", - "message": "Amar Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1016", - "message": "Babu Labh Singh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1017", - "message": "Rattan Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1018", - "message": "New Rattan Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1019", - "message": "Shaheed Babu Labh Singh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC102", - "message": "Shalimar Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1020", - "message": "New Shaheed Babu Labh Singh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1021", - "message": "Madhuban Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1022", - "message": "Gujrati Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1023", - "message": "Jagwali Kathi Near Canal", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1024", - "message": "Ragu Nath Mandir Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1025", - "message": "Kacha Kot", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1026", - "message": "Old Green Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1027", - "message": "Green Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1028", - "message": "Raja Garden", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1029", - "message": "Raja Garden Extension", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC103", - "message": "New Dashmesh Nagar Part", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1030", - "message": "V.I.P Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1031", - "message": "Butti Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1032", - "message": "Gagan Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1033", - "message": "Bhai Gurdass Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1034", - "message": "Baba Bachittar Ji Nagar Mithu Basti", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1035", - "message": "Tara Singh Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1036", - "message": "New Rasila Nagar Basti Danishmandan", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1037", - "message": "Dilbagh Nagar Ext.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1038", - "message": "Rasila Nagar Phase 2 Danishmandan", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1039", - "message": "Rasila Nagar Basti Danishmandan", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC104", - "message": "Kaki Pind", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1040", - "message": "Begampura Colony Danishmandan", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1041", - "message": "Baba Budha Ji Nagar Mithu Nagar Basti", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1042", - "message": "Ekta Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1043", - "message": "New Shastri Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1044", - "message": "Satnam Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1045", - "message": "Anoop Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1046", - "message": "Bal bro Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1047", - "message": "Badhri Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1048", - "message": "Badhri Colony Phase (2)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1049", - "message": "Ram Shernam Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC105", - "message": "New Joginder Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1050", - "message": "Peer Das Basti", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1051", - "message": "Kamar Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1052", - "message": "Panu Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1053", - "message": "Paras Estate", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1054", - "message": "Paras Estate 2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1055", - "message": "Maharaja Garden", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1056", - "message": "Harbanse Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1057", - "message": "5 Peer Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1058", - "message": "Anoop Nagar (2)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1059", - "message": "Sher Singh Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC106", - "message": "Part of Joginder Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1060", - "message": "Roshan Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1061", - "message": "Qilla Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1062", - "message": "Kathera Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1063", - "message": "Gautam Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1064", - "message": "New Gautam Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1065", - "message": "Kabir Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1066", - "message": "Guru Ram Dass Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1067", - "message": "Mata Sant Kaur Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1068", - "message": "City A Prime", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1069", - "message": "City A Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC107", - "message": "New Beant Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1070", - "message": "City A Kunj", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1071", - "message": "Rajan Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1072", - "message": "Kailash Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1073", - "message": "Balmik Mohalla Bawa Khel", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1074", - "message": "Akal Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1075", - "message": "Basti Bawa Khel (main)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1076", - "message": "Raj Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1077", - "message": "New Raj Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1078", - "message": "Kabir Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1079", - "message": "Bank Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC108", - "message": "Part of Beant Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1080", - "message": "Basti Bawa Khel", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1081", - "message": "Katehara Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1082", - "message": "New Rattan Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1083", - "message": "Guru Nanak Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1084", - "message": "New Guru Nanak Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1085", - "message": "Shiv Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1086", - "message": "Baba Kahandass Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1087", - "message": "Village Nagara", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1088", - "message": "Abinandan Park", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1089", - "message": "National Park", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC109", - "message": "Gulmarg Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1090", - "message": "Ashok Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1091", - "message": "Vivek Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1092", - "message": "Green Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1093", - "message": "Shanti Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1094", - "message": "Viveka Nand Park", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1095", - "message": "Subash Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1096", - "message": "Golden Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1097", - "message": "Navyug Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1098", - "message": "New Shiv Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1099", - "message": "Maqsudan Byepass", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC11", - "message": "Indra Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC110", - "message": "Mehtab Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1100", - "message": "Mahasha Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1101", - "message": "Anand Ngr", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1102", - "message": "New Anand Ngr", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1103", - "message": "Janta Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1104", - "message": "Navnirman Janta Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1105", - "message": "Issa Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1106", - "message": "Guru Nanak Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1107", - "message": "Aara Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1108", - "message": "Surat Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1109", - "message": "Master Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC111", - "message": "Professor Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1110", - "message": "Angad Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC1111", - "message": "Amandip Avenue.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC112", - "message": "Mohan Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC113", - "message": "Part of Ladhewali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC114", - "message": "Part of New Dashmesh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC115", - "message": "Dhilwan", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC116", - "message": "Dhanowali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC117", - "message": "Sanik Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC118", - "message": "Old Dashmesh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC119", - "message": "Ajeet Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC12", - "message": "Sant Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC120", - "message": "Guru Anged Dev Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC121", - "message": "Sunder Nagar Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC122", - "message": "Kohinoor Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC123", - "message": "Sunny Prime", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC124", - "message": "Arman Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC125", - "message": "Johan Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC126", - "message": "Ganesh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC127", - "message": "New Ganesh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC128", - "message": "Masi Mohalla Dakoha", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC129", - "message": "Tarun Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC13", - "message": "Kalia Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC130", - "message": "Kaki Pind", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC131", - "message": "Arman Nagar 2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC132", - "message": "Birring Pind-1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC133", - "message": "Birring Pind-2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC134", - "message": "Mohinder Singh Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC135", - "message": "Mehnga Singh Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC136", - "message": "Dada Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC137", - "message": "Peace Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC138", - "message": "Bunga Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC139", - "message": "Golden Colony (Phase 1)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC14", - "message": "Kalia Colony Ph-1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC140", - "message": "Golden Colony (Phase 2)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC141", - "message": "Golden Colony (Phase 3)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC142", - "message": "Model Estate", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC143", - "message": "Defence Colony (Phase 1)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC144", - "message": "New Defence Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC145", - "message": "Paragpura ( Old Phagwara Road)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC146", - "message": "Paragpura ( Pind )", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC147", - "message": "Paragpura ( Abadi Near Railway fatak )", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC148", - "message": "Ratti Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC149", - "message": "Thakur Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC15", - "message": "Kalia Colony PH-2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC150", - "message": "Ram Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC151", - "message": "Chotte Ram Bagh", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC152", - "message": "Panch Sheel Colony ( Half )", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC153", - "message": "Bhullar Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC154", - "message": "Modern State", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC155", - "message": "Yadav Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC156", - "message": "Baba Budha Ji Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC157", - "message": "Bhuda Ji Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC158", - "message": "Shaheed Gurvinder Singh Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC159", - "message": "National Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC16", - "message": "Kalia Colony PH-3", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC160", - "message": "Ravidass Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC161", - "message": "Guru Nanak Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC162", - "message": "Jagjit Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC163", - "message": "Old Kaki Pind", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC164", - "message": "Village Dakoha", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC165", - "message": "Baba Budha Singh Nagar Street No 1 to 9", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC166", - "message": "Ekta Nagar PH-1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC167", - "message": "Ekta Nagar PH-2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC168", - "message": "Joginder Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC169", - "message": "Panch Rattan Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC17", - "message": "Kalia Farm", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC170", - "message": "New Defence Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC171", - "message": "Beant Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC172", - "message": "Old Beant Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC173", - "message": "PSEB Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC174", - "message": "BB Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC175", - "message": "Half Rama Mandi Main Bazar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC176", - "message": "Khateek Market Ramamandi", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC177", - "message": "Valmik Mohalla Ramamandi", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC178", - "message": "Krishna Sweet Wali Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC179", - "message": "Palwon Wali Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC18", - "message": "Guru Amar Dass Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC180", - "message": "Fouji Wali Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC181", - "message": "Bhatra Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC182", - "message": "Aytar Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC183", - "message": "Guru Nanak Pura East", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC184", - "message": "Guru Nanak Pura West", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC185", - "message": "Chugitti", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC186", - "message": "Ekta Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC187", - "message": "P.A.P", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC188", - "message": "Railway Colony-3", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC189", - "message": "Rajinder Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC19", - "message": "Guru Amar Dass Nagar 2- Marla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC190", - "message": "Preet Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC191", - "message": "Sehgal Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC192", - "message": "Kirti Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC193", - "message": "Mohalla Ladowali Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC194", - "message": "Mohyal Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC195", - "message": "Link Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC196", - "message": "Hargobind Pura", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC197", - "message": "Ranjit Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC198", - "message": "New Rajinder Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC199", - "message": "Police Line", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC2", - "message": "Bank Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC20", - "message": "New Guru Amar Dass Nagar Ext.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC200", - "message": "Guru Nanak Pura (West) Street No. 1 to 8", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC201", - "message": "New Guru Nanak Pura (West)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC202", - "message": "Bhojowal Patti (Chugittee)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC203", - "message": "Bharat Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC204", - "message": "Satnam Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC205", - "message": "Chugittee", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC206", - "message": "Ved Ram Parkash Street", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC207", - "message": "Guru Gobind Singh Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC208", - "message": "Sureya Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC209", - "message": "Komal Vihar Old & New", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC21", - "message": "Guru Amar Dass Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC210", - "message": "Bashirpura", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC211", - "message": "Thakur Singh Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC212", - "message": "Royal Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC213", - "message": "Jhansi Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC214", - "message": "Gobind Garh", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC215", - "message": "Arjun Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC216", - "message": "40 Quarter", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC217", - "message": "Dashmesh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC218", - "message": "New Dashmesh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC219", - "message": "Sant Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC22", - "message": "Venus Valley", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC220", - "message": "Shanti Pura", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC221", - "message": "New Baradari", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC222", - "message": "Poultry Form Area", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC223", - "message": "Prem Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC224", - "message": "Mandi Fenton Garg", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC225", - "message": "Partap Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC226", - "message": "Rishi Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC227", - "message": "Brahm Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC228", - "message": "Mandi Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC229", - "message": "Railway Colony No. 1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC23", - "message": "Baba Mohan Dass Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC230", - "message": "Guard Colony No-2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC231", - "message": "Old Jawahar Nagar Single Lane", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC232", - "message": "Central Town", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC233", - "message": "Krishan Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC234", - "message": "Old Jawahar Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC235", - "message": "Master Tara Singh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC236", - "message": "P & T Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC237", - "message": "Riaz Pura", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC238", - "message": "Ramesh Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC239", - "message": "Shiva Ji Park", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC24", - "message": "Salempur Muslmana", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC240", - "message": "Netaji Park", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC241", - "message": "Civil Lines", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC242", - "message": "Mohalla Makhdumpura", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC243", - "message": "Mohalla Shastri Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC244", - "message": "Fauji Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC245", - "message": "Shivalik Apartments", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC246", - "message": "Venus Apartments", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC247", - "message": "B-Block Apartments", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC248", - "message": "Paradise Apartments", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC249", - "message": "Gurkirpa Apartments", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC25", - "message": "Swarn Park-1Swarn Prak- 2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC250", - "message": "Ganga Apartments", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC251", - "message": "Nakodar Road Market", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC252", - "message": "Lajpat Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC253", - "message": "Lajpat Nagar Market", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC254", - "message": "Abadpura", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC255", - "message": "Balmiki Colony Link Road Abadpura", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC256", - "message": "Major Bahadur Singh Nagar & Marg", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC257", - "message": "New Model Town Mall Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC258", - "message": "New Jawahar Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC259", - "message": "Guru Nanak Mission Chowk", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC26", - "message": "Sanjay Gandhi Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC260", - "message": "Badridass Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC261", - "message": "Purani Baradari", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC262", - "message": "Skylark Chowk", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC263", - "message": "Civil Lines", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC264", - "message": "Sehdev Market", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC265", - "message": "Namdev Chowk", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC266", - "message": "G.T Road Market", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC267", - "message": "Shastri Chowk", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC268", - "message": "Sanjay Gandhi Market", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC269", - "message": "New Courts Chowk", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC27", - "message": "Gadaipur", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC270", - "message": "Police Line Market", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC271", - "message": "BMC Chowk", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC272", - "message": "Market Opposite Bus Stand", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC273", - "message": "Link Road Model Town", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC274", - "message": "Valmiki Colony Major Bahadur Singh Marg", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC275", - "message": "Radio Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC276", - "message": "New Jawahar Nagar (Point)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC277", - "message": "Green Park", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC278", - "message": "Mota Singh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC279", - "message": "Modern Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC28", - "message": "Raja Garden", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC280", - "message": "Gurjaipal Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC281", - "message": "Wariam Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC282", - "message": "Gian Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC283", - "message": "New Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC284", - "message": "Defence Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC285", - "message": "Defence Colony Ext.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC286", - "message": "Chotti Baradari", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC287", - "message": "Jaswant Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC288", - "message": "Roop Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC289", - "message": "Atwal Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC29", - "message": "Ram Bagh Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC290", - "message": "Atwal House", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC291", - "message": "New Hardyal Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC292", - "message": "Hardyal Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC293", - "message": "Rubi Hospital", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC294", - "message": "BSF Camp", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC295", - "message": "New Green Park", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC296", - "message": "Railway Quarter ( Cool Road)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC297", - "message": "Garha/Shiv Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC298", - "message": "Dayanand chowk", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC299", - "message": "Rattan Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC3", - "message": "Sarabha Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC30", - "message": "Dada Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC300", - "message": "Sark Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC301", - "message": "Valmiki Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC302", - "message": "Ravi dass Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC303", - "message": "Makhan Ramwali Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC304", - "message": "School wali Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC305", - "message": "Jiwan Singh Chowk", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC306", - "message": "Tanki Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC307", - "message": "Phagu Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC308", - "message": "Sarpanch wali Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC309", - "message": "Main Bazar Rama Mandir", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC31", - "message": "Industrial Area", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC310", - "message": "Main Bazar Gurudwara Singh Sabha", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC311", - "message": "Garha Vehanda", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC312", - "message": "Phagu Mohalla Ram Mandir wali Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC313", - "message": "Phagwari Mohalla Near Janj Ghar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC314", - "message": "Phagwari Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC315", - "message": "Dr. Mana Wali Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC316", - "message": "Old Div. 7 Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC317", - "message": "Cantt. Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC318", - "message": "Cantt. Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC319", - "message": "New Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC32", - "message": "Focal Point", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC320", - "message": "Jaswant Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC321", - "message": "Jawant Nagar near Gurudwara", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC322", - "message": "Jaswant Nagar Gali No. 1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC323", - "message": "Jaswant Nagar Gali Thekewali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC324", - "message": "Jaswant Nagar Gali no. 100 3 to 5", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC325", - "message": "Jaswant Nagar Gali 2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC326", - "message": "Golden Aveune-1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC327", - "message": "Golden Avenue-2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC328", - "message": "Gurjeet Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC329", - "message": "Dashmesh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC33", - "message": "Transport Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC330", - "message": "Chanchal Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC331", - "message": "Chotti Baradari Part-2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC332", - "message": "Idgah Mohalla Garha", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC333", - "message": "Sarak Mohalla Garha", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC334", - "message": "Guru Diwan Nagar Garha", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC335", - "message": "Tara Chand Colony Garha", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC336", - "message": "Chintpurni Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC337", - "message": "Geeta Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC338", - "message": "Garha", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC339", - "message": "Labour Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC34", - "message": "Udyog Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC340", - "message": "Kunowali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC341", - "message": "Urban Estate Ph-1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC342", - "message": "M.I.G", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC343", - "message": "Urban Estate Phase Half", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC344", - "message": "Sabowal Old.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC345", - "message": "Isherpuri Colony (Some Part)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC346", - "message": "Urban Estate 2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC347", - "message": "Sabowal", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC348", - "message": "Lahor Nangal", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC349", - "message": "Isherpuri Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC35", - "message": "Parshuram Pur", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC350", - "message": "Ranjit Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC351", - "message": "Kalgidhar Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC352", - "message": "New Kalgidhar Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC353", - "message": "Ravinder Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC354", - "message": "Dashmesh Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC355", - "message": "Karol Bagh", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC356", - "message": "Vijay Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC357", - "message": "Guru Ram Dass Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC358", - "message": "Baba Makhan Shah Lubana", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC359", - "message": "Friends Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC36", - "message": "Vadda Saipur", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC360", - "message": "Officer Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC361", - "message": "D.C Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC362", - "message": "White Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC363", - "message": "Punjabi Bagh", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC364", - "message": "Lahor Nagar Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC365", - "message": "Happy Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC366", - "message": "New Isherpuri", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC367", - "message": "Universal Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC368", - "message": "Singh Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC369", - "message": "Engineer Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC37", - "message": "Reru", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC370", - "message": "Green Garden Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC371", - "message": "Ravinder Nagar Extension", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC372", - "message": "Punjabi Bagh Extension", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC373", - "message": "Model Town", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC374", - "message": "Parkash Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC375", - "message": "Guru Nanak Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC376", - "message": "Guru Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC377", - "message": "Rishi Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC378", - "message": "Jyoti Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC379", - "message": "Shankar Garden", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC38", - "message": "Hargobind Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC380", - "message": "Lal Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC381", - "message": "Satkartar Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC382", - "message": "Ravinder Nagar Extension", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC383", - "message": "Cheema Nagar Ext.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC384", - "message": "Vasant Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC385", - "message": "Vasant Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC386", - "message": "Vasant Vihar Ext.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC387", - "message": "Urban Estate Ph-2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC388", - "message": "Model Town", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC389", - "message": "New Jawahar Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC39", - "message": "Punjabi Bagh", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC390", - "message": "Lajpat Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC391", - "message": "Dada Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC392", - "message": "Green Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC393", - "message": "Green Model Town", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC394", - "message": "Kewal Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC395", - "message": "Indra Park", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC396", - "message": "Cheema Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC397", - "message": "Shiv Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC398", - "message": "Gurmeet Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC399", - "message": "Ramneek Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC4", - "message": "Paschim Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC40", - "message": "Bachint Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC400", - "message": "Bank Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC401", - "message": "Bank Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC402", - "message": "Raja Garden", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC403", - "message": "Keshev Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC404", - "message": "Ekta Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC405", - "message": "New Raja Garden", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC406", - "message": "New Raja Garden Extension", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC407", - "message": "Bhai Samund Singh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC408", - "message": "New Arora Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC409", - "message": "Mithapur", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC41", - "message": "Parsuram Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC410", - "message": "King Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC411", - "message": "Green Wood Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC412", - "message": "Ram Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC413", - "message": "Sewerage Board Quarter", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC414", - "message": "75 Garden Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC415", - "message": "Panch Sheel Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC416", - "message": "Mayor Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC417", - "message": "New Light Colony Phase -1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC418", - "message": "Bank Enclave Phase-2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC419", - "message": "Residence Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC42", - "message": "Kahanpur Abadi", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC420", - "message": "Sudhama Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC421", - "message": "New Sudhama Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC422", - "message": "Rocky Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC423", - "message": "New Light Colony Phase-2 (Sudhama Vihar)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC424", - "message": "VIP Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC425", - "message": "Sadhu Singh Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC426", - "message": "Red Face Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC427", - "message": "New Garden Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC428", - "message": "Bhai Banno Ji Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC429", - "message": "Gill Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC43", - "message": "Ramneek Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC430", - "message": "Parkash Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC431", - "message": "Khurla Kingra", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC432", - "message": "Tower Town Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC433", - "message": "Silver Residency", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC434", - "message": "Tower Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC435", - "message": "Guru Nanak Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC436", - "message": "Boota Mandi", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC437", - "message": "Boota Pind (Back Side Dr.B.R. Ambedkar Park", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC438", - "message": "Swami Lal JI Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC439", - "message": "New Green Park", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC44", - "message": "Baba Deep Singh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC440", - "message": "Khurla Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC441", - "message": "Professor Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC442", - "message": "Army Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC443", - "message": "Mann Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC444", - "message": "Chopra Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC445", - "message": "Khurla Kingra (Back Side Sai Mandir)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC446", - "message": "Door Darshan Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC447", - "message": "Bombay Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC448", - "message": "Friends Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC449", - "message": "SAS Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC45", - "message": "Nurpur Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC450", - "message": "SAS Nagar Extension", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC451", - "message": "New Green Model Town", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC452", - "message": "Palam Rajeet Apartments", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC453", - "message": "Bank Enclave Part 1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC454", - "message": "Kuki Dhab", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC455", - "message": "Green Woods Apartments", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC456", - "message": "Park View Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC457", - "message": "Housing Board Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC458", - "message": "Satnam Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC459", - "message": "Mann Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC46", - "message": "Sunder Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC460", - "message": "Punjabi Bagh Wadala Chowk", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC461", - "message": "Silver heights", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC462", - "message": "Partap Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC463", - "message": "Guru Gobind Singh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC464", - "message": "Guru Arjan dev Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC465", - "message": "G.T.B Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC466", - "message": "Garden Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC467", - "message": "G.T.B Nagar extension", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC468", - "message": "GTB Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC469", - "message": "F.C.I Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC47", - "message": "Hargobind Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC470", - "message": "Chanakya Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC471", - "message": "New GTB Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC472", - "message": "Vivek Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC473", - "message": "Green Model Town", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC474", - "message": "Boota Pind", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC475", - "message": "Wadala Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC476", - "message": "Main Road Abadpura", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC477", - "message": "Gali No. 2 To Gali No. 6 ", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC478", - "message": "Preet Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC479", - "message": "Rameshwar Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC48", - "message": "Gulmarg Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC480", - "message": "Sh. Guru Ravidass Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC481", - "message": "Tubewell wali Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC482", - "message": "Labour Court Gali Panj Peer", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC483", - "message": "Maharishi Valmiki Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC484", - "message": "Taneja New Abadpura", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC485", - "message": "Avtar Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC486", - "message": "New Avtar Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC487", - "message": "New Suraj Ganj", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC488", - "message": "Pishori Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC489", - "message": "Naqvi Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC49", - "message": "Bachint Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC490", - "message": "Dairy Kalu Ram-O Band Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC491", - "message": "Bhargo Camp-Add", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC492", - "message": "Pishori Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC493", - "message": "Link Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC494", - "message": "Abadpura Gali No.1 to 2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC495", - "message": "New Suraj Ganj –west", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC496", - "message": "Gali No-10-B-11-B", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC497", - "message": "Bhargo Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC498", - "message": "Bhargo Camp", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC499", - "message": "Ravidass Chowk", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC5", - "message": "Amrit Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC50", - "message": "Sarabha Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC500", - "message": "Channan Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC501", - "message": "Boota Mandi", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC502", - "message": "Silver Oak Apartments", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC503", - "message": "Nakodar Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC504", - "message": "Chappli Chowk", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC505", - "message": "Sant Pura", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC506", - "message": "Arya Samaj Mandir", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC507", - "message": "Valmiki Mandir", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC508", - "message": "Chapal Chowk", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC509", - "message": "Kabir Mandir", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC51", - "message": "Chack Hussiana", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC510", - "message": "Gain Giri Mandir", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC511", - "message": "Nirankari Bhawan Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC512", - "message": "Ravidass Dham", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC513", - "message": "Kanth Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC514", - "message": "State Bank Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC515", - "message": "Ravidass Mandir", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC516", - "message": "Sharif Pura", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC517", - "message": "Tokri Chowk Bhargo Camp", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC518", - "message": "Gali Mirasiya Wali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC519", - "message": "Gali Somnath Aara Wala", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC52", - "message": "Lamba Pind", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC520", - "message": "Prem Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC521", - "message": "Gali Ravi Karyana Store", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC522", - "message": "Gali Sharma Model School", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC523", - "message": "Chune Wali Gali Boota Mandi", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC524", - "message": "Gali Pawan Koushal", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC525", - "message": "Bhargo Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC526", - "message": "Nive Passe Bhargo Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC527", - "message": "Azad Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC528", - "message": "New Suraj Ganj", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC529", - "message": "New Suraj Ganj (West)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC53", - "message": "Chandigarh Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC530", - "message": "Model House Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC531", - "message": "Main Bazar Bhargo", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC532", - "message": "Mohalla Amar Saw Mill", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC533", - "message": "Bhargo Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC534", - "message": "Shamshan Ghat Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC535", - "message": "Mohalla Vari Vatt", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC536", - "message": "Bhargo Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC537", - "message": "Tej Mohan Nagar Gali No-5 to Gali No-11", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC538", - "message": "New Ashok Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC539", - "message": "Narayan Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC54", - "message": "Succhi Pind", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC540", - "message": "Ashok Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC541", - "message": "New Sant Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC542", - "message": "Sant Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC543", - "message": "Nijatam Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC544", - "message": "Chouhan Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC545", - "message": "Ganesh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC546", - "message": "Basti Nau", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC547", - "message": "Bank Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC548", - "message": "Chaar Marla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC549", - "message": "Block-A,B,C,D", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC55", - "message": "Hardial Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC550", - "message": "Bhagat Singh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC551", - "message": "Rajput Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC552", - "message": "Taranwali Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC553", - "message": "Mohalla Kot", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC554", - "message": "Uttam Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC555", - "message": "Mohalla Chaiaam", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC556", - "message": "Tej Mohan Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC557", - "message": "Sant Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC558", - "message": "Siddhartha Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC559", - "message": "New Abadi Jallowal", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC56", - "message": "New Hardial Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC560", - "message": "Kay Pee Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC561", - "message": "New Model House", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC562", - "message": "Model Gram Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC563", - "message": "Gahi Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC564", - "message": "Jaina Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC565", - "message": "New Ghai Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC566", - "message": "Chiragpura Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC567", - "message": "New Deol Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC568", - "message": "New Dashmesh Nagar Block-A", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC569", - "message": "New Dashmesh Nagar Block-C", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC57", - "message": "Hardip Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC570", - "message": "Tilak Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC571", - "message": "Kartar Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC572", - "message": "New Kartar Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC573", - "message": "Udye Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC574", - "message": "Deol Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC575", - "message": "New Deol Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC576", - "message": "Aman Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC577", - "message": "Major Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC578", - "message": "Pink City Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC579", - "message": "Kot Sadiq Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC58", - "message": "Judge Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC580", - "message": "Khara Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC581", - "message": "Kot Sadiq", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC582", - "message": "Mast Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC583", - "message": "Thind Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC584", - "message": "Sai Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC585", - "message": "BT Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC586", - "message": "Kanshi Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC587", - "message": "Green Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC588", - "message": "Geeta Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC589", - "message": "New Geeta Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC59", - "message": "Prem Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC590", - "message": "Ishwar Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC591", - "message": "New Dashmesh Nagar B Block", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC592", - "message": "Dordarshan Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC593", - "message": "Tower Enclave Phase 2nd", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC594", - "message": "Hamilton Tower", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC595", - "message": "Guru Ravidass Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC596", - "message": "New Ravidass Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC597", - "message": "Shiva Ji Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC598", - "message": "New Shiva Ji Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC599", - "message": "Lasuri Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC6", - "message": "Chak Jinda", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC60", - "message": "Gulmohar City", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC600", - "message": "New Lasuri Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC601", - "message": "Begampura Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC602", - "message": "Main Adda Basti Danishmandan", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC603", - "message": "Main Bazar Basti Danishmandan", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC604", - "message": "Valmiki Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC605", - "message": "Chandigarh Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC606", - "message": "New Chandigarh Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC607", - "message": "Chungi Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC608", - "message": "Chungi No-9", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC609", - "message": "Tagri Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC61", - "message": "Three Star Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC610", - "message": "Guru Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC611", - "message": "Surjit Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC612", - "message": "Basti Sheikh + Danishmandan", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC613", - "message": "Kattra Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC614", - "message": "Guru Sant Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC615", - "message": "Guru Nanak Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC616", - "message": "Lasuri Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC617", - "message": "Baldev Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC618", - "message": "Satkartar Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC619", - "message": "Ujala Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC62", - "message": "Soma Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC620", - "message": "Mohindra Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC621", - "message": "Valmiki Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC622", - "message": "Vada Bazar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC623", - "message": "Banian Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC624", - "message": "Satran Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC625", - "message": "Mochian Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC626", - "message": "Tarkhana Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC627", - "message": "Telian Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC628", - "message": "Road Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC629", - "message": "Manjit Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC63", - "message": "Mata Salani Mandir", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC630", - "message": "Chet Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC631", - "message": "Janak Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC632", - "message": "Chaian Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC633", - "message": "Kot Bazar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC634", - "message": "Gulabia Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC635", - "message": "Bara Bazar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC636", - "message": "Hargobind Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC637", - "message": "Gurditta Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC638", - "message": "Borah Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC639", - "message": "Sethia Wali Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC64", - "message": "Baba Gadila Sham colony (Succhi Pind)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC640", - "message": "Dhankian Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC641", - "message": "Jairath Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC642", - "message": "Bagh Ahluwalia", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC643", - "message": "Kamaliya Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC644", - "message": "Gobind Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC645", - "message": "New Gobind Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC646", - "message": "Dilbagh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC647", - "message": "120' Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC648", - "message": "Shastri Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC649", - "message": "Old Shastri Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC65", - "message": "Deep Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC650", - "message": "Old Dusshara Ground", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC651", - "message": "Surya Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC652", - "message": "Basti Gujan", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC653", - "message": "Ambedkar Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC654", - "message": "Shah Kuli Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC655", - "message": "Virdi Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC656", - "message": "Valmiki Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC657", - "message": "Vada Vehra", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC658", - "message": "Sunyara Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC659", - "message": "Jangra Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC66", - "message": "New Upkar Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC660", - "message": "Machi Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC661", - "message": "Harkrishan Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC662", - "message": "Manjit Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC663", - "message": "New Dilbagh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC664", - "message": "Dilbagh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC665", - "message": "Lahoria Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC666", - "message": "Kot Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC667", - "message": "Binda Chowk", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC668", - "message": "Doriya Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC669", - "message": "Board Wali Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC67", - "message": "Moh Kot Ram Dass ( Abadi )", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC670", - "message": "Main Bazar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC671", - "message": "Shibu Mandir Chowk", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC672", - "message": "New Adarsh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC673", - "message": "J.P.Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC674", - "message": "Adarsh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC675", - "message": "J.P. Nagar Extension", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC676", - "message": "Basti Nau", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC677", - "message": "Krishan Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC678", - "message": "Basti Mithu", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC679", - "message": "Patwar Khana", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC68", - "message": "Karol Bagh", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC680", - "message": "Conal Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC681", - "message": "Harbans Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC682", - "message": "New Harbans Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC683", - "message": "New Harbans Nagar Ext.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC684", - "message": "Adarsh Nagar up to Satyam Hospital Street", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC685", - "message": "New Vijay Nagar Left Side", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC686", - "message": "Tagore Nagar Right Side St.NO.7", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC687", - "message": "Dyal Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC688", - "message": "Gujral Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC689", - "message": "Shakti Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC69", - "message": "Rail Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC690", - "message": "Vijay Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC691", - "message": "S.U.S Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC692", - "message": "Ajit Singh Nagar up to Nakodar Chowk", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC693", - "message": "Niwan Suraj Gunj", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC694", - "message": "Islam Gunj", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC695", - "message": "Islamabad", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC696", - "message": "Mission Compound Left Side Batra Hospital", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC697", - "message": "Makhdoom Pura", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC698", - "message": "Dhobi Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC699", - "message": "Mohalla Pacca Bagh", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC7", - "message": "Toor Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC70", - "message": "Patel Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC700", - "message": "Ram Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC701", - "message": "Saidan Gate", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC702", - "message": "Chowk Kade Shah", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC703", - "message": "Batakh Wala Chowk", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC704", - "message": "Rainak Bazar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC705", - "message": "Naya Bazar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC706", - "message": "Shaheed Udham Singh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC707", - "message": "Flats", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC708", - "message": "Civil Hospital", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC709", - "message": "E.S.I Hospital", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC71", - "message": "Sangam Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC710", - "message": "E.S.I Hospital Flats", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC711", - "message": "Milap Chowk to G.P.O", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC712", - "message": "G.P.O to Shastri Chowk", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC713", - "message": "Shastri to Milap Chowk", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC714", - "message": "Milap to Sunrise Hotal", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC715", - "message": "Sunrise Hotal to Partap Bagh", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC716", - "message": "Partap Bagh to Phagwara Gate", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC717", - "message": "Naya Bazar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC718", - "message": "Saiden Gate", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC719", - "message": "Peer Bodla Bazar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC72", - "message": "Preet Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC720", - "message": "Khazuria Bazar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC721", - "message": "Guru Bazar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC722", - "message": "Neehya Band Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC723", - "message": "Jybal Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC724", - "message": "Neem Wali Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC725", - "message": "Tanki Wali Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC726", - "message": "Khodiya Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC727", - "message": "Kotpakshiya", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC728", - "message": "Hotel Raj Mahal back Side Gurudawara and Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC729", - "message": "Pakka Bagh", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC73", - "message": "Mann Singh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC730", - "message": "Chohal Bagh", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC731", - "message": "Hindsamachar Ground", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC732", - "message": "Mina Bazar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC733", - "message": "Tikki Bagh Chowk", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC734", - "message": "Ucha Suraj Gunj", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC735", - "message": "Jyoti chowk to preet Hotel", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC736", - "message": "Charanjit Pura", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC737", - "message": "Ajit Pura", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC738", - "message": "Jatt Pura", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC739", - "message": "Valmiki Gate", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC74", - "message": "Suchi Pind", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC740", - "message": "Malka Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC741", - "message": "Mohindru Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC742", - "message": "Mitha Bazar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC743", - "message": "Telwali Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC744", - "message": "Chota Ali Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC745", - "message": "Alli Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC746", - "message": "Bansa Wala Bazar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC747", - "message": "Chajju Ram Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC748", - "message": "Kotwali Bazar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC749", - "message": "Malora Muhalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC75", - "message": "Indian Oil Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC750", - "message": "Nauhrian Bazar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC751", - "message": "Kot Bahadur Khan", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC752", - "message": "Sheikhan Bazar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC753", - "message": "Sudan Chowk", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC754", - "message": "Deen Dayal Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC755", - "message": "Prem Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC756", - "message": "New Prem Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC757", - "message": "Sat Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC758", - "message": "Chandan Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC759", - "message": "Fateh Puri", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC76", - "message": "Green County", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC760", - "message": "Vikrampura", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC761", - "message": "Subash Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC762", - "message": "Partap Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC763", - "message": "Purani Kachehri", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC764", - "message": "Piplan Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC765", - "message": "Chadhian Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC766", - "message": "Lawan Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC767", - "message": "Charjian Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC768", - "message": "Mitha Bazar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC769", - "message": "Bhairon Bazar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC77", - "message": "Ladhewali Pind", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC770", - "message": "Quilla Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC771", - "message": "Qazi Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC772", - "message": "Khingran Gate", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC773", - "message": "Mughlan Dhiki", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC774", - "message": "Prem Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC775", - "message": "Purian Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC776", - "message": "Sehglan Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC777", - "message": "Modian Tod", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC778", - "message": "Thapra Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC779", - "message": "Mai Hiran Gate", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC78", - "message": "Chokan Kalan Pind", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC780", - "message": "Phagwara Gate", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC781", - "message": "Rasta Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC782", - "message": "Biliya Mandir", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC783", - "message": "Talhi Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC784", - "message": "Baghia Whra", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC785", - "message": "Quda Shah Chowk", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC786", - "message": "Phir Bodhla Bazar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC787", - "message": "Kalo Vani Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC788", - "message": "Atari Bazar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC789", - "message": "Nacha Badh Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC79", - "message": "Nagal Shama Pind", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC790", - "message": "Kanchia Bazar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC791", - "message": "Qazi Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC792", - "message": "Qilla Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC793", - "message": "Shivraz Garh", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC794", - "message": "Panj Peer Chowk", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC795", - "message": "Bhagat Singh Chowk", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC796", - "message": "Railway Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC797", - "message": "Rishi Nagar Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC798", - "message": "Partap Bagh", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC799", - "message": "Awa Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC8", - "message": "Navjot Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC80", - "message": "Datar Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC800", - "message": "Kot Kishan Chand", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC801", - "message": "Jagat Pura", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC802", - "message": "Dhan Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC803", - "message": "Rishi Nagar (5 Gali)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC804", - "message": "Kishanpura (5 Gali)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC805", - "message": "Inderparsth Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC806", - "message": "Arya Samaj Mandir", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC807", - "message": "Bheem Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC808", - "message": "Sansi Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC809", - "message": "Dolatpuri", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC81", - "message": "Khehra Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC810", - "message": "Kapoor Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC811", - "message": "Ajit Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC812", - "message": "Amrik Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC813", - "message": "New Ajit Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC814", - "message": "New Amrik Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC815", - "message": "Baba Math Shah", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC816", - "message": "Santoshi Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC817", - "message": "Madrasi Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC818", - "message": "Qazi Mandi", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC819", - "message": "Kishan Pura", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC82", - "message": "Kabir Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC820", - "message": "Hoshiarpur Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC821", - "message": "Old Hoshiarpur Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC822", - "message": "Baldev Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC823", - "message": "New Baldev Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC824", - "message": "Baba Balak Nath Market", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC825", - "message": "Madrasi Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC826", - "message": "Ravidass School Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC827", - "message": "Dhonka Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC828", - "message": "Prithvi Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC829", - "message": "New Prithvi Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC83", - "message": "Kabir Avenue Extension", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC830", - "message": "Lambapind Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC831", - "message": "Dutta Street", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC832", - "message": "Raman Shiv Mandir Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC833", - "message": "Ajit Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC834", - "message": "Balmiki Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC835", - "message": "Vivek Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC836", - "message": "New Vivek Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC837", - "message": "Arjun Singh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC838", - "message": "Jaimal Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC839", - "message": "Durga Mandir Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC84", - "message": "Punjab Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC840", - "message": "Vinay Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC841", - "message": "Akash Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC842", - "message": "Arjun Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC843", - "message": "Jaimal Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC844", - "message": "Upkar Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC845", - "message": "New Upkar Nargar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC846", - "message": "Ghandi Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC847", - "message": "New Ghandi Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC848", - "message": "Chakk Hussaina", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC849", - "message": "Hoshiarpur Road Lamba Pind(Left Side)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC85", - "message": "Punjab Avenue Extension", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC850", - "message": "Muslim Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC851", - "message": "New Vinay Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC852", - "message": "Hans Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC853", - "message": "New Santokhpura", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC854", - "message": "Durga Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC855", - "message": "Sarabha Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC856", - "message": "Guru Ram Dass Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC857", - "message": "Niwi Abadi", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC858", - "message": "Lakshmipura", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC859", - "message": "New Lakshmipura", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC86", - "message": "Dhaliwal Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC860", - "message": "Vij Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC861", - "message": "Sant Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC862", - "message": "Bhagatpura", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC863", - "message": "Jeet Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC864", - "message": "Vikaspuri", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC865", - "message": "New Vikaspuri", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC866", - "message": "Ambika Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC867", - "message": "B.D.Steel", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC868", - "message": "Santokhpura Nivi Abadi", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC869", - "message": "Basti Bhure Kha", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC87", - "message": "Himachal Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC870", - "message": "Shah Sikandar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC871", - "message": "Ram Gharia School", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC872", - "message": "Preet Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC873", - "message": "Basant Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC874", - "message": "New Basant Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC875", - "message": "Aman Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC876", - "message": "New Aman Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC877", - "message": "New colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC878", - "message": "Kamal Park", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC879", - "message": "Preet Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC88", - "message": "Green Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC880", - "message": "New Preet Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC881", - "message": "Sodal Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC882", - "message": "Sidh Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC883", - "message": "Ashok Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC884", - "message": "Ramco Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC885", - "message": "New Sodal Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC886", - "message": "Mathura Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC887", - "message": "Kot Baba Deep Singh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC888", - "message": "Tobari Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC889", - "message": "Tanda Road Hanuman Mandir Chowk to Tanda Road Railway Crossing", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC89", - "message": "Sunshine Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC890", - "message": "Shah Sikandar Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC891", - "message": "Kailash Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC892", - "message": "New Kailash Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC893", - "message": "New Kailash Nagar Ext.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC894", - "message": "Gobind Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC895", - "message": "New Gobind Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC896", - "message": "J.M.C Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC897", - "message": "Gujja Peer Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC898", - "message": "Amar Garden", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC899", - "message": "Saipur Kalan", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC9", - "message": "New Guru Amar Das Extension Paschim", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC90", - "message": "Silver Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC900", - "message": "Sanjay Gandhi", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC901", - "message": "Dada Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC902", - "message": "Saini Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC903", - "message": "Chotta Saipur", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC904", - "message": "Hari Singh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC905", - "message": "Shashi Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC906", - "message": "Lathi Mar Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC907", - "message": "Sodal Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC908", - "message": "Gujja Peer Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC909", - "message": "Sodal Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC91", - "message": "Randhawa Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC910", - "message": "Laxmi Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC911", - "message": "Kali Mata Mandir Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC912", - "message": "Bhagat Singh Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC913", - "message": "Baba Balak Nath Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC914", - "message": "Shiv Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC915", - "message": "Canal Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC916", - "message": "Industrial Area", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC917", - "message": "Dada Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC918", - "message": "Chota Saipur Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC919", - "message": "Shiv Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC92", - "message": "Lahora Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC920", - "message": "Brij Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC921", - "message": "Gajji Gulla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC922", - "message": "Parbhat Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC923", - "message": "Ram Nagar Railway", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC924", - "message": "Crossing to Gajji Gujja Chowk Left Side", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC925", - "message": "Industrial Area Ext.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC926", - "message": "Canal Industrial Complex", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC927", - "message": "Gandhi Camp", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC928", - "message": "Gurdev Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC929", - "message": "Gopal Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC93", - "message": "Nanak Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC930", - "message": "Satnam Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC931", - "message": "Sawan Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC932", - "message": "Valmiki Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC933", - "message": "New Grain Market", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC934", - "message": "Jain Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC935", - "message": "New Gopal Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC936", - "message": "Neela Mahal", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC937", - "message": "Mohalla Krar Khan", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC938", - "message": "Sangra Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC939", - "message": "Teacher Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC94", - "message": "Basant Hill", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC940", - "message": "Krishna Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC941", - "message": "Tobri Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC942", - "message": "Guru Nanak Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC943", - "message": "Harnamdasspura", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC944", - "message": "Kot Lakhpat Rai", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC945", - "message": "Banda Bahadur Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC946", - "message": "Kapurthala Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC947", - "message": "Bagh Baharia", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC948", - "message": "Gulab Devi Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC949", - "message": "Bulton Park Cricket Stadium", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC95", - "message": "University Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC950", - "message": "Durga Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC951", - "message": "B.S.F Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC952", - "message": "Gopal Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC953", - "message": "New Colony Gopal Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC954", - "message": "Main Road Old Sabzi Mandi to Burton Park", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC955", - "message": "Sangat Singh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC956", - "message": "Balwant Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC957", - "message": "Bandha Bhadur Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC958", - "message": "Sarswati Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC959", - "message": "PNT Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC96", - "message": "Moti Bagh", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC960", - "message": "Bagh Bharia", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC961", - "message": "Bhagwan Dass Pura", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC962", - "message": "Dhiman Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC963", - "message": "Adresh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC964", - "message": "Natha Bagechi", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC965", - "message": "Misson Compound", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC966", - "message": "Talab Bharia", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC967", - "message": "Jail Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC968", - "message": "Kabir Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC969", - "message": "Kachari Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC97", - "message": "Park Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC970", - "message": "Gandhi Camp 3 Lain", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC971", - "message": "Windsor Park", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC972", - "message": "Rose Park", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC973", - "message": "Jain Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC974", - "message": "Gupta Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC975", - "message": "Hardev Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC976", - "message": "Guru Nanak Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC977", - "message": "Guru Arjun Dev Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC978", - "message": "Sarswati Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC979", - "message": "Surjit Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC98", - "message": "Chopra Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC980", - "message": "Malak Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC981", - "message": "Kalyani Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC982", - "message": "Suriya Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC983", - "message": "Vivekananda Park", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC984", - "message": "Ariya Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC985", - "message": "Pingalwara", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC986", - "message": "Gujrati Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC987", - "message": "Shardha Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC988", - "message": "Sawarn Park", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC989", - "message": "Ram Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC99", - "message": "Dr. Ambedkar Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC990", - "message": "Chhota Gandhi Nagar Camp", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC991", - "message": "Friends Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC992", - "message": "Seth Hukam Chand Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC993", - "message": "Greater Kailash", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC994", - "message": "Moti Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC995", - "message": "New Moti Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC996", - "message": "Tagore Park/ Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC997", - "message": "Professor Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC998", - "message": "Maqsudan Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYA_REVENUE_JLC999", - "message": "Bohar Wala Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_ADMIN_SU166", - "message": "Mohalla Majoran", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_ADMIN_SUN02", - "message": "Aggarsain Chowk to Mal Godown - Both Sides", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_ADMIN_SUN04", - "message": "Ajit Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_ADMIN_SUN08", - "message": "ATAR SINGH COLONY", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_ADMIN_SUN105", - "message": "Jaura Khoo to Saraffa Bazaar (Southern Side)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_ADMIN_SUN109", - "message": "Kailash Parbat", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_ADMIN_SUN11", - "message": "Back Side 33 KVA Grid Patiala Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_ADMIN_SUN12", - "message": "Back Side 66 KVA Grid Patiala Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_ADMIN_SUN13", - "message": "Back Side Civil Courts Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_ADMIN_SUN132", - "message": "Mohalla Akalgarh Gurudwara", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_ADMIN_SUN134", - "message": "Mohalla Bhadra Kali Mandir", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_ADMIN_SUN136", - "message": "Mohalla Bhatta Wala", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_ADMIN_SUN137", - "message": "Mohalla Bhawdeyan Wala", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_ADMIN_SUN138", - "message": "Mohalla Bhojeka (both sides)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_ADMIN_SUN144", - "message": "Mohalla Kohliyan", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_ADMIN_SUN150", - "message": "Mohalla Rajan Wala (both sides)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_ADMIN_SUN153", - "message": "Mohalla Singhkiyan (Nothern Side)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_ADMIN_SUN158", - "message": "Mohalla-Kashayian wala", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_ADMIN_SUN161", - "message": "Mohalla-Singhkiya wala", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_ADMIN_SUN167", - "message": "Mohalla Angaria wala", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_ADMIN_SUN169", - "message": "Mohalla Banda Patti", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_ADMIN_SUN170", - "message": "Mohalla Bhai Ka", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_ADMIN_SUN173", - "message": "Mohalla Ganj Sheeda", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_ADMIN_SUN176", - "message": "Mohalla Kango", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_ADMIN_SUN178", - "message": "Mohalla Singh kia", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_ADMIN_SUN18", - "message": "Back Side Naina Devi Mandir", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_ADMIN_SUN194", - "message": "NEAR GURUDWARA PEHALI PATSHAHI UDAM SINGH ROAD", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_ADMIN_SUN20", - "message": "Backside Brijbala Hospital", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_ADMIN_SUN23", - "message": "BACKSIDE OLD GRAIN MARKET", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_ADMIN_SUN25", - "message": "Bakhtaur Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_ADMIN_SUN31", - "message": "Bhai Mool Chand Sahib Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_ADMIN_SUN35", - "message": "Bigharwal Chowk to Railway Station", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_ADMIN_SUN40", - "message": "Chandar Colony Biggarwal Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_ADMIN_SUN41", - "message": "Charjan Wala Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_ADMIN_SUN45", - "message": "Cinema Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_ADMIN_SUN46", - "message": "Cinema Road to Ali Bazaar (Nothern Side)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_ADMIN_SUN49", - "message": "College Road (Southern side)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_ADMIN_SUN54", - "message": "Deedar Tailor to Mata Modi Park- West Side", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_ADMIN_SUN55", - "message": "Deep Rice Mill Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_ADMIN_SUN56", - "message": "Dental College", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_ADMIN_SUN62", - "message": "Ekta Colony (Southern Side)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_ADMIN_SUN75", - "message": "Gaushala", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_ADMIN_SUN80", - "message": "Gugga Maadi Road (east side)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_ADMIN_SUN84", - "message": "Gurudwara Niai Sahib Street 1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_REVENUE_SU166", - "message": "Mohalla Majoran - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_REVENUE_SUN02", - "message": "Aggarsain Chowk to Mal Godown - Both Sides - Area3", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_REVENUE_SUN04", - "message": "Ajit Nagar - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_REVENUE_SUN08", - "message": "ATAR SINGH COLONY - Area2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_REVENUE_SUN105", - "message": "Jaura Khoo to Saraffa Bazaar (Southern Side) - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_REVENUE_SUN109", - "message": "Kailash Parbat - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_REVENUE_SUN11", - "message": "Back Side 33 KVA Grid Patiala Road - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_REVENUE_SUN12", - "message": "Back Side 66 KVA Grid Patiala Road - Area2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_REVENUE_SUN13", - "message": "Back Side Civil Courts Colony - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_REVENUE_SUN132", - "message": "Mohalla Akalgarh Gurudwara - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_REVENUE_SUN134", - "message": "Mohalla Bhadra Kali Mandir - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_REVENUE_SUN136", - "message": "Mohalla Bhatta Wala - Area2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_REVENUE_SUN137", - "message": "Mohalla Bhawdeyan Wala - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_REVENUE_SUN138", - "message": "Mohalla Bhojeka (both sides) - Area2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_REVENUE_SUN144", - "message": "Mohalla Kohliyan - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_REVENUE_SUN150", - "message": "Mohalla Rajan Wala (both sides) - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_REVENUE_SUN153", - "message": "Mohalla Singhkiyan (Nothern Side) - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_REVENUE_SUN158", - "message": "Mohalla-Kashayian wala - Area2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_REVENUE_SUN161", - "message": "Mohalla-Singhkiya wala - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_REVENUE_SUN167", - "message": "Mohalla Angaria wala - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_REVENUE_SUN169", - "message": "Mohalla Banda Patti - Area2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_REVENUE_SUN170", - "message": "Mohalla Bhai Ka - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_REVENUE_SUN173", - "message": "Mohalla Ganj Sheeda - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_REVENUE_SUN176", - "message": "Mohalla Kango - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_REVENUE_SUN178", - "message": "Mohalla Singh kia - Area2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_REVENUE_SUN18", - "message": "Back Side Naina Devi Mandir - Area2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_REVENUE_SUN194", - "message": "NEAR GURUDWARA PEHALI PATSHAHI UDAM SINGH ROAD - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_REVENUE_SUN20", - "message": "Backside Brijbala Hospital - Area3", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_REVENUE_SUN23", - "message": "BACKSIDE OLD GRAIN MARKET - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_REVENUE_SUN25", - "message": "Bakhtaur Nagar - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_REVENUE_SUN31", - "message": "Bhai Mool Chand Sahib Colony - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_REVENUE_SUN35", - "message": "Bigharwal Chowk to Railway Station - Area2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_REVENUE_SUN40", - "message": "Chandar Colony Biggarwal Road - Area2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_REVENUE_SUN41", - "message": "Charjan Wala Mohalla - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_REVENUE_SUN45", - "message": "Cinema Road - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_REVENUE_SUN46", - "message": "Cinema Road to Ali Bazaar (Nothern Side) - Area2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_REVENUE_SUN49", - "message": "College Road (Southern side) - Area2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_REVENUE_SUN54", - "message": "Deedar Tailor to Mata Modi Park- West Side - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_REVENUE_SUN55", - "message": "Deep Rice Mill Road - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_REVENUE_SUN56", - "message": "Dental College - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_REVENUE_SUN62", - "message": "Ekta Colony (Southern Side) - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_REVENUE_SUN75", - "message": "Gaushala", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_REVENUE_SUN80", - "message": "Gugga Maadi Road (east side) - Area2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYB_REVENUE_SUN84", - "message": "Gurudwara Niai Sahib Street 1 - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_ADMIN_SU166", - "message": "Mohalla Majoran", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_ADMIN_SUN02", - "message": "Aggarsain Chowk to Mal Godown - Both Sides", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_ADMIN_SUN04", - "message": "Ajit Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_ADMIN_SUN08", - "message": "ATAR SINGH COLONY", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_ADMIN_SUN105", - "message": "Jaura Khoo to Saraffa Bazaar (Southern Side)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_ADMIN_SUN109", - "message": "Kailash Parbat", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_ADMIN_SUN11", - "message": "Back Side 33 KVA Grid Patiala Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_ADMIN_SUN12", - "message": "Back Side 66 KVA Grid Patiala Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_ADMIN_SUN13", - "message": "Back Side Civil Courts Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_ADMIN_SUN132", - "message": "Mohalla Akalgarh Gurudwara", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_ADMIN_SUN134", - "message": "Mohalla Bhadra Kali Mandir", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_ADMIN_SUN136", - "message": "Mohalla Bhatta Wala", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_ADMIN_SUN137", - "message": "Mohalla Bhawdeyan Wala", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_ADMIN_SUN138", - "message": "Mohalla Bhojeka (both sides)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_ADMIN_SUN144", - "message": "Mohalla Kohliyan", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_ADMIN_SUN150", - "message": "Mohalla Rajan Wala (both sides)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_ADMIN_SUN153", - "message": "Mohalla Singhkiyan (Nothern Side)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_ADMIN_SUN158", - "message": "Mohalla-Kashayian wala", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_ADMIN_SUN161", - "message": "Mohalla-Singhkiya wala", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_ADMIN_SUN167", - "message": "Mohalla Angaria wala", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_ADMIN_SUN169", - "message": "Mohalla Banda Patti", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_ADMIN_SUN170", - "message": "Mohalla Bhai Ka", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_ADMIN_SUN173", - "message": "Mohalla Ganj Sheeda", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_ADMIN_SUN176", - "message": "Mohalla Kango", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_ADMIN_SUN178", - "message": "Mohalla Singh kia", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_ADMIN_SUN18", - "message": "Back Side Naina Devi Mandir", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_ADMIN_SUN194", - "message": "NEAR GURUDWARA PEHALI PATSHAHI UDAM SINGH ROAD", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_ADMIN_SUN20", - "message": "Backside Brijbala Hospital", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_ADMIN_SUN23", - "message": "BACKSIDE OLD GRAIN MARKET", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_ADMIN_SUN25", - "message": "Bakhtaur Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_ADMIN_SUN31", - "message": "Bhai Mool Chand Sahib Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_ADMIN_SUN35", - "message": "Bigharwal Chowk to Railway Station", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_ADMIN_SUN40", - "message": "Chandar Colony Biggarwal Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_ADMIN_SUN41", - "message": "Charjan Wala Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_ADMIN_SUN45", - "message": "Cinema Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_ADMIN_SUN46", - "message": "Cinema Road to Ali Bazaar (Nothern Side)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_ADMIN_SUN49", - "message": "College Road (Southern side)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_ADMIN_SUN54", - "message": "Deedar Tailor to Mata Modi Park- West Side", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_ADMIN_SUN55", - "message": "Deep Rice Mill Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_ADMIN_SUN56", - "message": "Dental College", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_ADMIN_SUN62", - "message": "Ekta Colony (Southern Side)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_ADMIN_SUN75", - "message": "Gaushala", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_ADMIN_SUN80", - "message": "Gugga Maadi Road (east side)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_ADMIN_SUN84", - "message": "Gurudwara Niai Sahib Street 1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_REVENUE_SU166", - "message": "Mohalla Majoran - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_REVENUE_SUN02", - "message": "Aggarsain Chowk to Mal Godown - Both Sides - Area3", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_REVENUE_SUN04", - "message": "Ajit Nagar - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_REVENUE_SUN08", - "message": "ATAR SINGH COLONY - Area2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_REVENUE_SUN105", - "message": "Jaura Khoo to Saraffa Bazaar (Southern Side) - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_REVENUE_SUN109", - "message": "Kailash Parbat - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_REVENUE_SUN11", - "message": "Back Side 33 KVA Grid Patiala Road - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_REVENUE_SUN12", - "message": "Back Side 66 KVA Grid Patiala Road - Area2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_REVENUE_SUN13", - "message": "Back Side Civil Courts Colony - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_REVENUE_SUN132", - "message": "Mohalla Akalgarh Gurudwara - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_REVENUE_SUN134", - "message": "Mohalla Bhadra Kali Mandir - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_REVENUE_SUN136", - "message": "Mohalla Bhatta Wala - Area2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_REVENUE_SUN137", - "message": "Mohalla Bhawdeyan Wala - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_REVENUE_SUN138", - "message": "Mohalla Bhojeka (both sides) - Area2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_REVENUE_SUN144", - "message": "Mohalla Kohliyan - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_REVENUE_SUN150", - "message": "Mohalla Rajan Wala (both sides) - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_REVENUE_SUN153", - "message": "Mohalla Singhkiyan (Nothern Side) - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_REVENUE_SUN158", - "message": "Mohalla-Kashayian wala - Area2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_REVENUE_SUN161", - "message": "Mohalla-Singhkiya wala - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_REVENUE_SUN167", - "message": "Mohalla Angaria wala - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_REVENUE_SUN169", - "message": "Mohalla Banda Patti - Area2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_REVENUE_SUN170", - "message": "Mohalla Bhai Ka - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_REVENUE_SUN173", - "message": "Mohalla Ganj Sheeda - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_REVENUE_SUN176", - "message": "Mohalla Kango - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_REVENUE_SUN178", - "message": "Mohalla Singh kia - Area2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_REVENUE_SUN18", - "message": "Back Side Naina Devi Mandir - Area2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_REVENUE_SUN194", - "message": "NEAR GURUDWARA PEHALI PATSHAHI UDAM SINGH ROAD - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_REVENUE_SUN20", - "message": "Backside Brijbala Hospital - Area3", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_REVENUE_SUN23", - "message": "BACKSIDE OLD GRAIN MARKET - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_REVENUE_SUN25", - "message": "Bakhtaur Nagar - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_REVENUE_SUN31", - "message": "Bhai Mool Chand Sahib Colony - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_REVENUE_SUN35", - "message": "Bigharwal Chowk to Railway Station - Area2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_REVENUE_SUN40", - "message": "Chandar Colony Biggarwal Road - Area2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_REVENUE_SUN41", - "message": "Charjan Wala Mohalla - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_REVENUE_SUN45", - "message": "Cinema Road - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_REVENUE_SUN46", - "message": "Cinema Road to Ali Bazaar (Nothern Side) - Area2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_REVENUE_SUN49", - "message": "College Road (Southern side) - Area2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_REVENUE_SUN54", - "message": "Deedar Tailor to Mata Modi Park- West Side - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_REVENUE_SUN55", - "message": "Deep Rice Mill Road - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_REVENUE_SUN56", - "message": "Dental College - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_REVENUE_SUN62", - "message": "Ekta Colony (Southern Side) - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_REVENUE_SUN75", - "message": "Gaushala", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_REVENUE_SUN80", - "message": "Gugga Maadi Road (east side) - Area2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYC_REVENUE_SUN84", - "message": "Gurudwara Niai Sahib Street 1 - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_ADMIN_SU166", - "message": "Mohalla Majoran", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_ADMIN_SUN02", - "message": "Aggarsain Chowk to Mal Godown - Both Sides", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_ADMIN_SUN04", - "message": "Ajit Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_ADMIN_SUN08", - "message": "ATAR SINGH COLONY", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_ADMIN_SUN105", - "message": "Jaura Khoo to Saraffa Bazaar (Southern Side)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_ADMIN_SUN109", - "message": "Kailash Parbat", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_ADMIN_SUN11", - "message": "Back Side 33 KVA Grid Patiala Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_ADMIN_SUN12", - "message": "Back Side 66 KVA Grid Patiala Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_ADMIN_SUN13", - "message": "Back Side Civil Courts Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_ADMIN_SUN132", - "message": "Mohalla Akalgarh Gurudwara", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_ADMIN_SUN134", - "message": "Mohalla Bhadra Kali Mandir", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_ADMIN_SUN136", - "message": "Mohalla Bhatta Wala", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_ADMIN_SUN137", - "message": "Mohalla Bhawdeyan Wala", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_ADMIN_SUN138", - "message": "Mohalla Bhojeka (both sides)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_ADMIN_SUN144", - "message": "Mohalla Kohliyan", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_ADMIN_SUN150", - "message": "Mohalla Rajan Wala (both sides)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_ADMIN_SUN153", - "message": "Mohalla Singhkiyan (Nothern Side)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_ADMIN_SUN158", - "message": "Mohalla-Kashayian wala", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_ADMIN_SUN161", - "message": "Mohalla-Singhkiya wala", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_ADMIN_SUN167", - "message": "Mohalla Angaria wala", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_ADMIN_SUN169", - "message": "Mohalla Banda Patti", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_ADMIN_SUN170", - "message": "Mohalla Bhai Ka", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_ADMIN_SUN173", - "message": "Mohalla Ganj Sheeda", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_ADMIN_SUN176", - "message": "Mohalla Kango", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_ADMIN_SUN178", - "message": "Mohalla Singh kia", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_ADMIN_SUN18", - "message": "Back Side Naina Devi Mandir", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_ADMIN_SUN194", - "message": "NEAR GURUDWARA PEHALI PATSHAHI UDAM SINGH ROAD", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_ADMIN_SUN20", - "message": "Backside Brijbala Hospital", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_ADMIN_SUN23", - "message": "BACKSIDE OLD GRAIN MARKET", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_ADMIN_SUN25", - "message": "Bakhtaur Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_ADMIN_SUN31", - "message": "Bhai Mool Chand Sahib Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_ADMIN_SUN35", - "message": "Bigharwal Chowk to Railway Station", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_ADMIN_SUN40", - "message": "Chandar Colony Biggarwal Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_ADMIN_SUN41", - "message": "Charjan Wala Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_ADMIN_SUN45", - "message": "Cinema Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_ADMIN_SUN46", - "message": "Cinema Road to Ali Bazaar (Nothern Side)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_ADMIN_SUN49", - "message": "College Road (Southern side)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_ADMIN_SUN54", - "message": "Deedar Tailor to Mata Modi Park- West Side", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_ADMIN_SUN55", - "message": "Deep Rice Mill Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_ADMIN_SUN56", - "message": "Dental College", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_ADMIN_SUN62", - "message": "Ekta Colony (Southern Side)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_ADMIN_SUN75", - "message": "Gaushala", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_ADMIN_SUN80", - "message": "Gugga Maadi Road (east side)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_ADMIN_SUN84", - "message": "Gurudwara Niai Sahib Street 1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_REVENUE_SU166", - "message": "Mohalla Majoran - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_REVENUE_SUN02", - "message": "Aggarsain Chowk to Mal Godown - Both Sides - Area3", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_REVENUE_SUN04", - "message": "Ajit Nagar - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_REVENUE_SUN08", - "message": "ATAR SINGH COLONY - Area2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_REVENUE_SUN105", - "message": "Jaura Khoo to Saraffa Bazaar (Southern Side) - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_REVENUE_SUN109", - "message": "Kailash Parbat - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_REVENUE_SUN11", - "message": "Back Side 33 KVA Grid Patiala Road - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_REVENUE_SUN12", - "message": "Back Side 66 KVA Grid Patiala Road - Area2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_REVENUE_SUN13", - "message": "Back Side Civil Courts Colony - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_REVENUE_SUN132", - "message": "Mohalla Akalgarh Gurudwara - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_REVENUE_SUN134", - "message": "Mohalla Bhadra Kali Mandir - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_REVENUE_SUN136", - "message": "Mohalla Bhatta Wala - Area2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_REVENUE_SUN137", - "message": "Mohalla Bhawdeyan Wala - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_REVENUE_SUN138", - "message": "Mohalla Bhojeka (both sides) - Area2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_REVENUE_SUN144", - "message": "Mohalla Kohliyan - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_REVENUE_SUN150", - "message": "Mohalla Rajan Wala (both sides) - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_REVENUE_SUN153", - "message": "Mohalla Singhkiyan (Nothern Side) - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_REVENUE_SUN158", - "message": "Mohalla-Kashayian wala - Area2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_REVENUE_SUN161", - "message": "Mohalla-Singhkiya wala - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_REVENUE_SUN167", - "message": "Mohalla Angaria wala - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_REVENUE_SUN169", - "message": "Mohalla Banda Patti - Area2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_REVENUE_SUN170", - "message": "Mohalla Bhai Ka - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_REVENUE_SUN173", - "message": "Mohalla Ganj Sheeda - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_REVENUE_SUN176", - "message": "Mohalla Kango - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_REVENUE_SUN178", - "message": "Mohalla Singh kia - Area2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_REVENUE_SUN18", - "message": "Back Side Naina Devi Mandir - Area2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_REVENUE_SUN194", - "message": "NEAR GURUDWARA PEHALI PATSHAHI UDAM SINGH ROAD - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_REVENUE_SUN20", - "message": "Backside Brijbala Hospital - Area3", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_REVENUE_SUN23", - "message": "BACKSIDE OLD GRAIN MARKET - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_REVENUE_SUN25", - "message": "Bakhtaur Nagar - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_REVENUE_SUN31", - "message": "Bhai Mool Chand Sahib Colony - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_REVENUE_SUN35", - "message": "Bigharwal Chowk to Railway Station - Area2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_REVENUE_SUN40", - "message": "Chandar Colony Biggarwal Road - Area2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_REVENUE_SUN41", - "message": "Charjan Wala Mohalla - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_REVENUE_SUN45", - "message": "Cinema Road - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_REVENUE_SUN46", - "message": "Cinema Road to Ali Bazaar (Nothern Side) - Area2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_REVENUE_SUN49", - "message": "College Road (Southern side) - Area2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_REVENUE_SUN54", - "message": "Deedar Tailor to Mata Modi Park- West Side - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_REVENUE_SUN55", - "message": "Deep Rice Mill Road - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_REVENUE_SUN56", - "message": "Dental College - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_REVENUE_SUN62", - "message": "Ekta Colony (Southern Side) - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_REVENUE_SUN75", - "message": "Gaushala", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_REVENUE_SUN80", - "message": "Gugga Maadi Road (east side) - Area2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYD_REVENUE_SUN84", - "message": "Gurudwara Niai Sahib Street 1 - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_ADMIN_SU166", - "message": "Mohalla Majoran", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_ADMIN_SUN02", - "message": "Aggarsain Chowk to Mal Godown - Both Sides", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_ADMIN_SUN04", - "message": "Ajit Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_ADMIN_SUN08", - "message": "ATAR SINGH COLONY", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_ADMIN_SUN105", - "message": "Jaura Khoo to Saraffa Bazaar (Southern Side)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_ADMIN_SUN109", - "message": "Kailash Parbat", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_ADMIN_SUN11", - "message": "Back Side 33 KVA Grid Patiala Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_ADMIN_SUN12", - "message": "Back Side 66 KVA Grid Patiala Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_ADMIN_SUN13", - "message": "Back Side Civil Courts Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_ADMIN_SUN132", - "message": "Mohalla Akalgarh Gurudwara", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_ADMIN_SUN134", - "message": "Mohalla Bhadra Kali Mandir", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_ADMIN_SUN136", - "message": "Mohalla Bhatta Wala", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_ADMIN_SUN137", - "message": "Mohalla Bhawdeyan Wala", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_ADMIN_SUN138", - "message": "Mohalla Bhojeka (both sides)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_ADMIN_SUN144", - "message": "Mohalla Kohliyan", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_ADMIN_SUN150", - "message": "Mohalla Rajan Wala (both sides)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_ADMIN_SUN153", - "message": "Mohalla Singhkiyan (Nothern Side)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_ADMIN_SUN158", - "message": "Mohalla-Kashayian wala", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_ADMIN_SUN161", - "message": "Mohalla-Singhkiya wala", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_ADMIN_SUN167", - "message": "Mohalla Angaria wala", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_ADMIN_SUN169", - "message": "Mohalla Banda Patti", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_ADMIN_SUN170", - "message": "Mohalla Bhai Ka", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_ADMIN_SUN173", - "message": "Mohalla Ganj Sheeda", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_ADMIN_SUN176", - "message": "Mohalla Kango", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_ADMIN_SUN178", - "message": "Mohalla Singh kia", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_ADMIN_SUN18", - "message": "Back Side Naina Devi Mandir", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_ADMIN_SUN194", - "message": "NEAR GURUDWARA PEHALI PATSHAHI UDAM SINGH ROAD", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_ADMIN_SUN20", - "message": "Backside Brijbala Hospital", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_ADMIN_SUN23", - "message": "BACKSIDE OLD GRAIN MARKET", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_ADMIN_SUN25", - "message": "Bakhtaur Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_ADMIN_SUN31", - "message": "Bhai Mool Chand Sahib Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_ADMIN_SUN35", - "message": "Bigharwal Chowk to Railway Station", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_ADMIN_SUN40", - "message": "Chandar Colony Biggarwal Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_ADMIN_SUN41", - "message": "Charjan Wala Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_ADMIN_SUN45", - "message": "Cinema Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_ADMIN_SUN46", - "message": "Cinema Road to Ali Bazaar (Nothern Side)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_ADMIN_SUN49", - "message": "College Road (Southern side)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_ADMIN_SUN54", - "message": "Deedar Tailor to Mata Modi Park- West Side", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_ADMIN_SUN55", - "message": "Deep Rice Mill Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_ADMIN_SUN56", - "message": "Dental College", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_ADMIN_SUN62", - "message": "Ekta Colony (Southern Side)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_ADMIN_SUN75", - "message": "Gaushala", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_ADMIN_SUN80", - "message": "Gugga Maadi Road (east side)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_ADMIN_SUN84", - "message": "Gurudwara Niai Sahib Street 1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_REVENUE_SU166", - "message": "Mohalla Majoran - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_REVENUE_SUN02", - "message": "Aggarsain Chowk to Mal Godown - Both Sides - Area3", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_REVENUE_SUN04", - "message": "Ajit Nagar - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_REVENUE_SUN08", - "message": "ATAR SINGH COLONY - Area2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_REVENUE_SUN105", - "message": "Jaura Khoo to Saraffa Bazaar (Southern Side) - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_REVENUE_SUN109", - "message": "Kailash Parbat - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_REVENUE_SUN11", - "message": "Back Side 33 KVA Grid Patiala Road - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_REVENUE_SUN12", - "message": "Back Side 66 KVA Grid Patiala Road - Area2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_REVENUE_SUN13", - "message": "Back Side Civil Courts Colony - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_REVENUE_SUN132", - "message": "Mohalla Akalgarh Gurudwara - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_REVENUE_SUN134", - "message": "Mohalla Bhadra Kali Mandir - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_REVENUE_SUN136", - "message": "Mohalla Bhatta Wala - Area2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_REVENUE_SUN137", - "message": "Mohalla Bhawdeyan Wala - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_REVENUE_SUN138", - "message": "Mohalla Bhojeka (both sides) - Area2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_REVENUE_SUN144", - "message": "Mohalla Kohliyan - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_REVENUE_SUN150", - "message": "Mohalla Rajan Wala (both sides) - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_REVENUE_SUN153", - "message": "Mohalla Singhkiyan (Nothern Side) - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_REVENUE_SUN158", - "message": "Mohalla-Kashayian wala - Area2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_REVENUE_SUN161", - "message": "Mohalla-Singhkiya wala - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_REVENUE_SUN167", - "message": "Mohalla Angaria wala - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_REVENUE_SUN169", - "message": "Mohalla Banda Patti - Area2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_REVENUE_SUN170", - "message": "Mohalla Bhai Ka - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_REVENUE_SUN173", - "message": "Mohalla Ganj Sheeda - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_REVENUE_SUN176", - "message": "Mohalla Kango - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_REVENUE_SUN178", - "message": "Mohalla Singh kia - Area2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_REVENUE_SUN18", - "message": "Back Side Naina Devi Mandir - Area2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_REVENUE_SUN194", - "message": "NEAR GURUDWARA PEHALI PATSHAHI UDAM SINGH ROAD - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_REVENUE_SUN20", - "message": "Backside Brijbala Hospital - Area3", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_REVENUE_SUN23", - "message": "BACKSIDE OLD GRAIN MARKET - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_REVENUE_SUN25", - "message": "Bakhtaur Nagar - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_REVENUE_SUN31", - "message": "Bhai Mool Chand Sahib Colony - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_REVENUE_SUN35", - "message": "Bigharwal Chowk to Railway Station - Area2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_REVENUE_SUN40", - "message": "Chandar Colony Biggarwal Road - Area2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_REVENUE_SUN41", - "message": "Charjan Wala Mohalla - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_REVENUE_SUN45", - "message": "Cinema Road - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_REVENUE_SUN46", - "message": "Cinema Road to Ali Bazaar (Nothern Side) - Area2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_REVENUE_SUN49", - "message": "College Road (Southern side) - Area2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_REVENUE_SUN54", - "message": "Deedar Tailor to Mata Modi Park- West Side - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_REVENUE_SUN55", - "message": "Deep Rice Mill Road - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_REVENUE_SUN56", - "message": "Dental College - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_REVENUE_SUN62", - "message": "Ekta Colony (Southern Side) - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_REVENUE_SUN75", - "message": "Gaushala", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_REVENUE_SUN80", - "message": "Gugga Maadi Road (east side) - Area2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "STATEA_CITYE_REVENUE_SUN84", - "message": "Gurudwara Niai Sahib Street 1 - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1", - "message": "Ashok Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC10", - "message": "Gurbachan Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC100", - "message": "Dera Preet Nagar Jhuggia", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1000", - "message": "Maqsudan Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1001", - "message": "Nagra Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1002", - "message": "Jawala Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1003", - "message": "New Jawala Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1004", - "message": "Patel Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1005", - "message": "New Patel Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1006", - "message": "Guru Ravidass Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1007", - "message": "Bhupinder Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1008", - "message": "Ashok Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1009", - "message": "Nagra Pind", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC101", - "message": "Miya Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1010", - "message": "New Nagra", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1011", - "message": "Shital Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1012", - "message": "New Shital Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1013", - "message": "Jugian", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1014", - "message": "Sham Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1015", - "message": "Amar Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1016", - "message": "Babu Labh Singh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1017", - "message": "Rattan Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1018", - "message": "New Rattan Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1019", - "message": "Shaheed Babu Labh Singh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC102", - "message": "Shalimar Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1020", - "message": "New Shaheed Babu Labh Singh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1021", - "message": "Madhuban Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1022", - "message": "Gujrati Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1023", - "message": "Jagwali Kathi Near Canal", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1024", - "message": "Ragu Nath Mandir Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1025", - "message": "Kacha Kot", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1026", - "message": "Old Green Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1027", - "message": "Green Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1028", - "message": "Raja Garden", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1029", - "message": "Raja Garden Extension", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC103", - "message": "New Dashmesh Nagar Part", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1030", - "message": "V.I.P Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1031", - "message": "Butti Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1032", - "message": "Gagan Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1033", - "message": "Bhai Gurdass Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1034", - "message": "Baba Bachittar Ji Nagar Mithu Basti", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1035", - "message": "Tara Singh Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1036", - "message": "New Rasila Nagar Basti Danishmandan", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1037", - "message": "Dilbagh Nagar Ext.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1038", - "message": "Rasila Nagar Phase 2 Danishmandan", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1039", - "message": "Rasila Nagar Basti Danishmandan", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC104", - "message": "Kaki Pind", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1040", - "message": "Begampura Colony Danishmandan", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1041", - "message": "Baba Budha Ji Nagar Mithu Nagar Basti", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1042", - "message": "Ekta Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1043", - "message": "New Shastri Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1044", - "message": "Satnam Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1045", - "message": "Anoop Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1046", - "message": "Bal bro Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1047", - "message": "Badhri Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1048", - "message": "Badhri Colony Phase (2)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1049", - "message": "Ram Shernam Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC105", - "message": "New Joginder Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1050", - "message": "Peer Das Basti", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1051", - "message": "Kamar Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1052", - "message": "Panu Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1053", - "message": "Paras Estate", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1054", - "message": "Paras Estate 2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1055", - "message": "Maharaja Garden", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1056", - "message": "Harbanse Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1057", - "message": "5 Peer Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1058", - "message": "Anoop Nagar (2)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1059", - "message": "Sher Singh Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC106", - "message": "Part of Joginder Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1060", - "message": "Roshan Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1061", - "message": "Qilla Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1062", - "message": "Kathera Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1063", - "message": "Gautam Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1064", - "message": "New Gautam Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1065", - "message": "Kabir Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1066", - "message": "Guru Ram Dass Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1067", - "message": "Mata Sant Kaur Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1068", - "message": "City A Prime", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1069", - "message": "City A Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC107", - "message": "New Beant Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1070", - "message": "City A Kunj", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1071", - "message": "Rajan Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1072", - "message": "Kailash Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1073", - "message": "Balmik Mohalla Bawa Khel", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1074", - "message": "Akal Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1075", - "message": "Basti Bawa Khel (main)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1076", - "message": "Raj Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1077", - "message": "New Raj Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1078", - "message": "Kabir Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1079", - "message": "Bank Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC108", - "message": "Part of Beant Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1080", - "message": "Basti Bawa Khel", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1081", - "message": "Katehara Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1082", - "message": "New Rattan Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1083", - "message": "Guru Nanak Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1084", - "message": "New Guru Nanak Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1085", - "message": "Shiv Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1086", - "message": "Baba Kahandass Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1087", - "message": "Village Nagara", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1088", - "message": "Abinandan Park", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1089", - "message": "National Park", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC109", - "message": "Gulmarg Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1090", - "message": "Ashok Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1091", - "message": "Vivek Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1092", - "message": "Green Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1093", - "message": "Shanti Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1094", - "message": "Viveka Nand Park", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1095", - "message": "Subash Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1096", - "message": "Golden Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1097", - "message": "Navyug Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1098", - "message": "New Shiv Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1099", - "message": "Maqsudan Byepass", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC11", - "message": "Indra Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC110", - "message": "Mehtab Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1100", - "message": "Mahasha Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1101", - "message": "Anand Ngr", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1102", - "message": "New Anand Ngr", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1103", - "message": "Janta Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1104", - "message": "Navnirman Janta Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1105", - "message": "Issa Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1106", - "message": "Guru Nanak Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1107", - "message": "Aara Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1108", - "message": "Surat Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1109", - "message": "Master Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC111", - "message": "Professor Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1110", - "message": "Angad Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC1111", - "message": "Amandip Avenue.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC112", - "message": "Mohan Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC113", - "message": "Part of Ladhewali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC114", - "message": "Part of New Dashmesh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC115", - "message": "Dhilwan", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC116", - "message": "Dhanowali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC117", - "message": "Sanik Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC118", - "message": "Old Dashmesh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC119", - "message": "Ajeet Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC12", - "message": "Sant Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC120", - "message": "Guru Anged Dev Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC121", - "message": "Sunder Nagar Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC122", - "message": "Kohinoor Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC123", - "message": "Sunny Prime", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC124", - "message": "Arman Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC125", - "message": "Johan Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC126", - "message": "Ganesh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC127", - "message": "New Ganesh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC128", - "message": "Masi Mohalla Dakoha", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC129", - "message": "Tarun Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC13", - "message": "Kalia Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC130", - "message": "Kaki Pind", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC131", - "message": "Arman Nagar 2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC132", - "message": "Birring Pind-1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC133", - "message": "Birring Pind-2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC134", - "message": "Mohinder Singh Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC135", - "message": "Mehnga Singh Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC136", - "message": "Dada Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC137", - "message": "Peace Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC138", - "message": "Bunga Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC139", - "message": "Golden Colony (Phase 1)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC14", - "message": "Kalia Colony Ph-1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC140", - "message": "Golden Colony (Phase 2)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC141", - "message": "Golden Colony (Phase 3)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC142", - "message": "Model Estate", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC143", - "message": "Defence Colony (Phase 1)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC144", - "message": "New Defence Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC145", - "message": "Paragpura ( Old Phagwara Road)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC146", - "message": "Paragpura ( Pind )", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC147", - "message": "Paragpura ( Abadi Near Railway fatak )", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC148", - "message": "Ratti Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC149", - "message": "Thakur Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC15", - "message": "Kalia Colony PH-2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC150", - "message": "Ram Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC151", - "message": "Chotte Ram Bagh", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC152", - "message": "Panch Sheel Colony ( Half )", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC153", - "message": "Bhullar Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC154", - "message": "Modern State", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC155", - "message": "Yadav Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC156", - "message": "Baba Budha Ji Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC157", - "message": "Bhuda Ji Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC158", - "message": "Shaheed Gurvinder Singh Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC159", - "message": "National Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC16", - "message": "Kalia Colony PH-3", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC160", - "message": "Ravidass Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC161", - "message": "Guru Nanak Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC162", - "message": "Jagjit Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC163", - "message": "Old Kaki Pind", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC164", - "message": "Village Dakoha", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC165", - "message": "Baba Budha Singh Nagar Street No 1 to 9", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC166", - "message": "Ekta Nagar PH-1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC167", - "message": "Ekta Nagar PH-2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC168", - "message": "Joginder Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC169", - "message": "Panch Rattan Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC17", - "message": "Kalia Farm", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC170", - "message": "New Defence Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC171", - "message": "Beant Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC172", - "message": "Old Beant Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC173", - "message": "PSEB Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC174", - "message": "BB Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC175", - "message": "Half Rama Mandi Main Bazar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC176", - "message": "Khateek Market Ramamandi", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC177", - "message": "Valmik Mohalla Ramamandi", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC178", - "message": "Krishna Sweet Wali Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC179", - "message": "Palwon Wali Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC18", - "message": "Guru Amar Dass Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC180", - "message": "Fouji Wali Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC181", - "message": "Bhatra Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC182", - "message": "Aytar Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC183", - "message": "Guru Nanak Pura East", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC184", - "message": "Guru Nanak Pura West", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC185", - "message": "Chugitti", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC186", - "message": "Ekta Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC187", - "message": "P.A.P", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC188", - "message": "Railway Colony-3", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC189", - "message": "Rajinder Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC19", - "message": "Guru Amar Dass Nagar 2- Marla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC190", - "message": "Preet Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC191", - "message": "Sehgal Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC192", - "message": "Kirti Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC193", - "message": "Mohalla Ladowali Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC194", - "message": "Mohyal Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC195", - "message": "Link Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC196", - "message": "Hargobind Pura", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC197", - "message": "Ranjit Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC198", - "message": "New Rajinder Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC199", - "message": "Police Line", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC2", - "message": "Bank Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC20", - "message": "New Guru Amar Dass Nagar Ext.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC200", - "message": "Guru Nanak Pura (West) Street No. 1 to 8", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC201", - "message": "New Guru Nanak Pura (West)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC202", - "message": "Bhojowal Patti (Chugittee)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC203", - "message": "Bharat Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC204", - "message": "Satnam Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC205", - "message": "Chugittee", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC206", - "message": "Ved Ram Parkash Street", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC207", - "message": "Guru Gobind Singh Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC208", - "message": "Sureya Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC209", - "message": "Komal Vihar Old & New", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC21", - "message": "Guru Amar Dass Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC210", - "message": "Bashirpura", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC211", - "message": "Thakur Singh Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC212", - "message": "Royal Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC213", - "message": "Jhansi Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC214", - "message": "Gobind Garh", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC215", - "message": "Arjun Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC216", - "message": "40 Quarter", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC217", - "message": "Dashmesh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC218", - "message": "New Dashmesh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC219", - "message": "Sant Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC22", - "message": "Venus Valley", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC220", - "message": "Shanti Pura", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC221", - "message": "New Baradari", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC222", - "message": "Poultry Form Area", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC223", - "message": "Prem Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC224", - "message": "Mandi Fenton Garg", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC225", - "message": "Partap Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC226", - "message": "Rishi Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC227", - "message": "Brahm Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC228", - "message": "Mandi Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC229", - "message": "Railway Colony No. 1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC23", - "message": "Baba Mohan Dass Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC230", - "message": "Guard Colony No-2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC231", - "message": "Old Jawahar Nagar Single Lane", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC232", - "message": "Central Town", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC233", - "message": "Krishan Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC234", - "message": "Old Jawahar Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC235", - "message": "Master Tara Singh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC236", - "message": "P & T Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC237", - "message": "Riaz Pura", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC238", - "message": "Ramesh Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC239", - "message": "Shiva Ji Park", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC24", - "message": "Salempur Muslmana", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC240", - "message": "Netaji Park", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC241", - "message": "Civil Lines", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC242", - "message": "Mohalla Makhdumpura", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC243", - "message": "Mohalla Shastri Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC244", - "message": "Fauji Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC245", - "message": "Shivalik Apartments", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC246", - "message": "Venus Apartments", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC247", - "message": "B-Block Apartments", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC248", - "message": "Paradise Apartments", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC249", - "message": "Gurkirpa Apartments", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC25", - "message": "Swarn Park-1Swarn Prak- 2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC250", - "message": "Ganga Apartments", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC251", - "message": "Nakodar Road Market", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC252", - "message": "Lajpat Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC253", - "message": "Lajpat Nagar Market", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC254", - "message": "Abadpura", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC255", - "message": "Balmiki Colony Link Road Abadpura", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC256", - "message": "Major Bahadur Singh Nagar & Marg", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC257", - "message": "New Model Town Mall Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC258", - "message": "New Jawahar Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC259", - "message": "Guru Nanak Mission Chowk", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC26", - "message": "Sanjay Gandhi Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC260", - "message": "Badridass Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC261", - "message": "Purani Baradari", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC262", - "message": "Skylark Chowk", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC263", - "message": "Civil Lines", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC264", - "message": "Sehdev Market", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC265", - "message": "Namdev Chowk", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC266", - "message": "G.T Road Market", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC267", - "message": "Shastri Chowk", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC268", - "message": "Sanjay Gandhi Market", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC269", - "message": "New Courts Chowk", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC27", - "message": "Gadaipur", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC270", - "message": "Police Line Market", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC271", - "message": "BMC Chowk", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC272", - "message": "Market Opposite Bus Stand", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC273", - "message": "Link Road Model Town", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC274", - "message": "Valmiki Colony Major Bahadur Singh Marg", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC275", - "message": "Radio Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC276", - "message": "New Jawahar Nagar (Point)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC277", - "message": "Green Park", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC278", - "message": "Mota Singh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC279", - "message": "Modern Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC28", - "message": "Raja Garden", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC280", - "message": "Gurjaipal Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC281", - "message": "Wariam Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC282", - "message": "Gian Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC283", - "message": "New Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC284", - "message": "Defence Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC285", - "message": "Defence Colony Ext.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC286", - "message": "Chotti Baradari", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC287", - "message": "Jaswant Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC288", - "message": "Roop Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC289", - "message": "Atwal Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC29", - "message": "Ram Bagh Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC290", - "message": "Atwal House", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC291", - "message": "New Hardyal Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC292", - "message": "Hardyal Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC293", - "message": "Rubi Hospital", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC294", - "message": "BSF Camp", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC295", - "message": "New Green Park", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC296", - "message": "Railway Quarter ( Cool Road)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC297", - "message": "Garha/Shiv Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC298", - "message": "Dayanand chowk", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC299", - "message": "Rattan Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC3", - "message": "Sarabha Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC30", - "message": "Dada Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC300", - "message": "Sark Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC301", - "message": "Valmiki Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC302", - "message": "Ravi dass Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC303", - "message": "Makhan Ramwali Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC304", - "message": "School wali Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC305", - "message": "Jiwan Singh Chowk", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC306", - "message": "Tanki Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC307", - "message": "Phagu Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC308", - "message": "Sarpanch wali Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC309", - "message": "Main Bazar Rama Mandir", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC31", - "message": "Industrial Area", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC310", - "message": "Main Bazar Gurudwara Singh Sabha", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC311", - "message": "Garha Vehanda", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC312", - "message": "Phagu Mohalla Ram Mandir wali Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC313", - "message": "Phagwari Mohalla Near Janj Ghar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC314", - "message": "Phagwari Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC315", - "message": "Dr. Mana Wali Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC316", - "message": "Old Div. 7 Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC317", - "message": "Cantt. Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC318", - "message": "Cantt. Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC319", - "message": "New Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC32", - "message": "Focal Point", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC320", - "message": "Jaswant Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC321", - "message": "Jawant Nagar near Gurudwara", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC322", - "message": "Jaswant Nagar Gali No. 1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC323", - "message": "Jaswant Nagar Gali Thekewali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC324", - "message": "Jaswant Nagar Gali no. 100 3 to 5", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC325", - "message": "Jaswant Nagar Gali 2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC326", - "message": "Golden Aveune-1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC327", - "message": "Golden Avenue-2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC328", - "message": "Gurjeet Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC329", - "message": "Dashmesh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC33", - "message": "Transport Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC330", - "message": "Chanchal Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC331", - "message": "Chotti Baradari Part-2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC332", - "message": "Idgah Mohalla Garha", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC333", - "message": "Sarak Mohalla Garha", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC334", - "message": "Guru Diwan Nagar Garha", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC335", - "message": "Tara Chand Colony Garha", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC336", - "message": "Chintpurni Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC337", - "message": "Geeta Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC338", - "message": "Garha", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC339", - "message": "Labour Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC34", - "message": "Udyog Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC340", - "message": "Kunowali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC341", - "message": "Urban Estate Ph-1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC342", - "message": "M.I.G", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC343", - "message": "Urban Estate Phase Half", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC344", - "message": "Sabowal Old.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC345", - "message": "Isherpuri Colony (Some Part)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC346", - "message": "Urban Estate 2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC347", - "message": "Sabowal", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC348", - "message": "Lahor Nangal", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC349", - "message": "Isherpuri Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC35", - "message": "Parshuram Pur", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC350", - "message": "Ranjit Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC351", - "message": "Kalgidhar Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC352", - "message": "New Kalgidhar Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC353", - "message": "Ravinder Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC354", - "message": "Dashmesh Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC355", - "message": "Karol Bagh", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC356", - "message": "Vijay Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC357", - "message": "Guru Ram Dass Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC358", - "message": "Baba Makhan Shah Lubana", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC359", - "message": "Friends Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC36", - "message": "Vadda Saipur", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC360", - "message": "Officer Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC361", - "message": "D.C Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC362", - "message": "White Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC363", - "message": "Punjabi Bagh", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC364", - "message": "Lahor Nagar Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC365", - "message": "Happy Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC366", - "message": "New Isherpuri", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC367", - "message": "Universal Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC368", - "message": "Singh Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC369", - "message": "Engineer Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC37", - "message": "Reru", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC370", - "message": "Green Garden Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC371", - "message": "Ravinder Nagar Extension", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC372", - "message": "Punjabi Bagh Extension", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC373", - "message": "Model Town", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC374", - "message": "Parkash Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC375", - "message": "Guru Nanak Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC376", - "message": "Guru Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC377", - "message": "Rishi Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC378", - "message": "Jyoti Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC379", - "message": "Shankar Garden", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC38", - "message": "Hargobind Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC380", - "message": "Lal Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC381", - "message": "Satkartar Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC382", - "message": "Ravinder Nagar Extension", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC383", - "message": "Cheema Nagar Ext.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC384", - "message": "Vasant Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC385", - "message": "Vasant Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC386", - "message": "Vasant Vihar Ext.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC387", - "message": "Urban Estate Ph-2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC388", - "message": "Model Town", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC389", - "message": "New Jawahar Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC39", - "message": "Punjabi Bagh", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC390", - "message": "Lajpat Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC391", - "message": "Dada Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC392", - "message": "Green Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC393", - "message": "Green Model Town", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC394", - "message": "Kewal Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC395", - "message": "Indra Park", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC396", - "message": "Cheema Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC397", - "message": "Shiv Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC398", - "message": "Gurmeet Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC399", - "message": "Ramneek Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC4", - "message": "Paschim Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC40", - "message": "Bachint Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC400", - "message": "Bank Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC401", - "message": "Bank Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC402", - "message": "Raja Garden", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC403", - "message": "Keshev Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC404", - "message": "Ekta Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC405", - "message": "New Raja Garden", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC406", - "message": "New Raja Garden Extension", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC407", - "message": "Bhai Samund Singh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC408", - "message": "New Arora Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC409", - "message": "Mithapur", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC41", - "message": "Parsuram Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC410", - "message": "King Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC411", - "message": "Green Wood Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC412", - "message": "Ram Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC413", - "message": "Sewerage Board Quarter", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC414", - "message": "75 Garden Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC415", - "message": "Panch Sheel Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC416", - "message": "Mayor Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC417", - "message": "New Light Colony Phase -1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC418", - "message": "Bank Enclave Phase-2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC419", - "message": "Residence Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC42", - "message": "Kahanpur Abadi", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC420", - "message": "Sudhama Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC421", - "message": "New Sudhama Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC422", - "message": "Rocky Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC423", - "message": "New Light Colony Phase-2 (Sudhama Vihar)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC424", - "message": "VIP Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC425", - "message": "Sadhu Singh Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC426", - "message": "Red Face Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC427", - "message": "New Garden Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC428", - "message": "Bhai Banno Ji Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC429", - "message": "Gill Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC43", - "message": "Ramneek Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC430", - "message": "Parkash Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC431", - "message": "Khurla Kingra", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC432", - "message": "Tower Town Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC433", - "message": "Silver Residency", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC434", - "message": "Tower Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC435", - "message": "Guru Nanak Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC436", - "message": "Boota Mandi", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC437", - "message": "Boota Pind (Back Side Dr.B.R. Ambedkar Park", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC438", - "message": "Swami Lal JI Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC439", - "message": "New Green Park", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC44", - "message": "Baba Deep Singh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC440", - "message": "Khurla Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC441", - "message": "Professor Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC442", - "message": "Army Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC443", - "message": "Mann Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC444", - "message": "Chopra Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC445", - "message": "Khurla Kingra (Back Side Sai Mandir)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC446", - "message": "Door Darshan Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC447", - "message": "Bombay Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC448", - "message": "Friends Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC449", - "message": "SAS Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC45", - "message": "Nurpur Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC450", - "message": "SAS Nagar Extension", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC451", - "message": "New Green Model Town", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC452", - "message": "Palam Rajeet Apartments", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC453", - "message": "Bank Enclave Part 1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC454", - "message": "Kuki Dhab", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC455", - "message": "Green Woods Apartments", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC456", - "message": "Park View Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC457", - "message": "Housing Board Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC458", - "message": "Satnam Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC459", - "message": "Mann Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC46", - "message": "Sunder Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC460", - "message": "Punjabi Bagh Wadala Chowk", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC461", - "message": "Silver heights", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC462", - "message": "Partap Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC463", - "message": "Guru Gobind Singh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC464", - "message": "Guru Arjan dev Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC465", - "message": "G.T.B Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC466", - "message": "Garden Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC467", - "message": "G.T.B Nagar extension", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC468", - "message": "GTB Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC469", - "message": "F.C.I Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC47", - "message": "Hargobind Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC470", - "message": "Chanakya Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC471", - "message": "New GTB Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC472", - "message": "Vivek Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC473", - "message": "Green Model Town", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC474", - "message": "Boota Pind", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC475", - "message": "Wadala Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC48", - "message": "Gulmarg Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC49", - "message": "Bachint Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC5", - "message": "Amrit Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC50", - "message": "Sarabha Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC51", - "message": "Chack Hussiana", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC52", - "message": "Lamba Pind", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC53", - "message": "Chandigarh Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC54", - "message": "Succhi Pind", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC55", - "message": "Hardial Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC56", - "message": "New Hardial Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC57", - "message": "Hardip Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC58", - "message": "Judge Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC59", - "message": "Prem Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC6", - "message": "Chak Jinda", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC60", - "message": "Gulmohar City", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC61", - "message": "Three Star Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC614", - "message": "Guru Sant Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC615", - "message": "Guru Nanak Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC616", - "message": "Lasuri Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC617", - "message": "Baldev Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC618", - "message": "Satkartar Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC619", - "message": "Ujala Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC62", - "message": "Soma Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC620", - "message": "Mohindra Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC621", - "message": "Valmiki Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC622", - "message": "Vada Bazar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC623", - "message": "Banian Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC624", - "message": "Satran Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC625", - "message": "Mochian Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC626", - "message": "Tarkhana Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC627", - "message": "Telian Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC628", - "message": "Road Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC629", - "message": "Manjit Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC63", - "message": "Mata Salani Mandir", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC630", - "message": "Chet Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC631", - "message": "Janak Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC632", - "message": "Chaian Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC633", - "message": "Kot Bazar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC634", - "message": "Gulabia Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC635", - "message": "Bara Bazar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC636", - "message": "Hargobind Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC637", - "message": "Gurditta Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC638", - "message": "Borah Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC639", - "message": "Sethia Wali Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC64", - "message": "Baba Gadila Sham colony (Succhi Pind)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC640", - "message": "Dhankian Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC641", - "message": "Jairath Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC642", - "message": "Bagh Ahluwalia", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC643", - "message": "Kamaliya Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC644", - "message": "Gobind Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC645", - "message": "New Gobind Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC646", - "message": "Dilbagh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC647", - "message": "120' Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC648", - "message": "Shastri Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC649", - "message": "Old Shastri Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC65", - "message": "Deep Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC650", - "message": "Old Dusshara Ground", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC651", - "message": "Surya Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC652", - "message": "Basti Gujan", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC653", - "message": "Ambedkar Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC654", - "message": "Shah Kuli Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC655", - "message": "Virdi Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC656", - "message": "Valmiki Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC657", - "message": "Vada Vehra", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC658", - "message": "Sunyara Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC659", - "message": "Jangra Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC66", - "message": "New Upkar Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC660", - "message": "Machi Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC661", - "message": "Harkrishan Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC662", - "message": "Manjit Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC663", - "message": "New Dilbagh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC664", - "message": "Dilbagh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC665", - "message": "Lahoria Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC666", - "message": "Kot Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC667", - "message": "Binda Chowk", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC668", - "message": "Doriya Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC669", - "message": "Board Wali Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC67", - "message": "Moh Kot Ram Dass ( Abadi )", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC670", - "message": "Main Bazar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC671", - "message": "Shibu Mandir Chowk", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC672", - "message": "New Adarsh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC673", - "message": "J.P.Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC674", - "message": "Adarsh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC675", - "message": "J.P. Nagar Extension", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC676", - "message": "Basti Nau", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC677", - "message": "Krishan Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC678", - "message": "Basti Mithu", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC679", - "message": "Patwar Khana", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC68", - "message": "Karol Bagh", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC680", - "message": "Conal Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC681", - "message": "Harbans Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC682", - "message": "New Harbans Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC683", - "message": "New Harbans Nagar Ext.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC684", - "message": "Adarsh Nagar up to Satyam Hospital Street", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC685", - "message": "New Vijay Nagar Left Side", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC686", - "message": "Tagore Nagar Right Side St.NO.7", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC687", - "message": "Dyal Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC688", - "message": "Gujral Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC689", - "message": "Shakti Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC69", - "message": "Rail Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC690", - "message": "Vijay Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC691", - "message": "S.U.S Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC692", - "message": "Ajit Singh Nagar up to Nakodar Chowk", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC693", - "message": "Niwan Suraj Gunj", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC694", - "message": "Islam Gunj", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC695", - "message": "Islamabad", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC696", - "message": "Mission Compound Left Side Batra Hospital", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC697", - "message": "Makhdoom Pura", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC698", - "message": "Dhobi Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC699", - "message": "Mohalla Pacca Bagh", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC7", - "message": "Toor Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC70", - "message": "Patel Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC700", - "message": "Ram Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC701", - "message": "Saidan Gate", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC702", - "message": "Chowk Kade Shah", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC703", - "message": "Batakh Wala Chowk", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC704", - "message": "Rainak Bazar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC705", - "message": "Naya Bazar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC706", - "message": "Shaheed Udham Singh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC707", - "message": "Flats", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC708", - "message": "Civil Hospital", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC709", - "message": "E.S.I Hospital", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC71", - "message": "Sangam Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC710", - "message": "E.S.I Hospital Flats", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC711", - "message": "Milap Chowk to G.P.O", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC712", - "message": "G.P.O to Shastri Chowk", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC713", - "message": "Shastri to Milap Chowk", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC714", - "message": "Milap to Sunrise Hotal", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC715", - "message": "Sunrise Hotal to Partap Bagh", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC716", - "message": "Partap Bagh to Phagwara Gate", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC717", - "message": "Naya Bazar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC718", - "message": "Saiden Gate", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC719", - "message": "Peer Bodla Bazar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC72", - "message": "Preet Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC720", - "message": "Khazuria Bazar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC721", - "message": "Guru Bazar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC722", - "message": "Neehya Band Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC723", - "message": "Jybal Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC724", - "message": "Neem Wali Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC725", - "message": "Tanki Wali Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC726", - "message": "Khodiya Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC727", - "message": "Kotpakshiya", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC728", - "message": "Hotel Raj Mahal back Side Gurudawara and Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC729", - "message": "Pakka Bagh", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC73", - "message": "Mann Singh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC730", - "message": "Chohal Bagh", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC731", - "message": "Hindsamachar Ground", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC732", - "message": "Mina Bazar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC733", - "message": "Tikki Bagh Chowk", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC734", - "message": "Ucha Suraj Gunj", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC735", - "message": "Jyoti chowk to preet Hotel", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC736", - "message": "Charanjit Pura", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC737", - "message": "Ajit Pura", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC738", - "message": "Jatt Pura", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC739", - "message": "Valmiki Gate", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC74", - "message": "Suchi Pind", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC740", - "message": "Malka Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC741", - "message": "Mohindru Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC742", - "message": "Mitha Bazar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC743", - "message": "Telwali Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC744", - "message": "Chota Ali Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC745", - "message": "Alli Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC746", - "message": "Bansa Wala Bazar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC747", - "message": "Chajju Ram Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC748", - "message": "Kotwali Bazar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC749", - "message": "Malora Muhalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC75", - "message": "Indian Oil Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC750", - "message": "Nauhrian Bazar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC751", - "message": "Kot Bahadur Khan", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC752", - "message": "Sheikhan Bazar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC753", - "message": "Sudan Chowk", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC754", - "message": "Deen Dayal Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC755", - "message": "Prem Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC756", - "message": "New Prem Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC757", - "message": "Sat Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC758", - "message": "Chandan Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC759", - "message": "Fateh Puri", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC76", - "message": "Green County", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC760", - "message": "Vikrampura", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC761", - "message": "Subash Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC762", - "message": "Partap Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC763", - "message": "Purani Kachehri", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC764", - "message": "Piplan Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC765", - "message": "Chadhian Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC766", - "message": "Lawan Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC767", - "message": "Charjian Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC768", - "message": "Mitha Bazar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC769", - "message": "Bhairon Bazar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC77", - "message": "Ladhewali Pind", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC770", - "message": "Quilla Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC771", - "message": "Qazi Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC772", - "message": "Khingran Gate", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC773", - "message": "Mughlan Dhiki", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC774", - "message": "Prem Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC775", - "message": "Purian Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC776", - "message": "Sehglan Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC777", - "message": "Modian Tod", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC778", - "message": "Thapra Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC779", - "message": "Mai Hiran Gate", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC78", - "message": "Chokan Kalan Pind", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC780", - "message": "Phagwara Gate", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC781", - "message": "Rasta Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC782", - "message": "Biliya Mandir", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC783", - "message": "Talhi Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC784", - "message": "Baghia Whra", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC785", - "message": "Quda Shah Chowk", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC786", - "message": "Phir Bodhla Bazar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC787", - "message": "Kalo Vani Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC788", - "message": "Atari Bazar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC789", - "message": "Nacha Badh Gali", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC79", - "message": "Nagal Shama Pind", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC790", - "message": "Kanchia Bazar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC791", - "message": "Qazi Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC792", - "message": "Qilla Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC793", - "message": "Shivraz Garh", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC794", - "message": "Panj Peer Chowk", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC795", - "message": "Bhagat Singh Chowk", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC796", - "message": "Railway Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC797", - "message": "Rishi Nagar Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC798", - "message": "Partap Bagh", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC799", - "message": "Awa Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC8", - "message": "Navjot Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC80", - "message": "Datar Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC800", - "message": "Kot Kishan Chand", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC801", - "message": "Jagat Pura", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC802", - "message": "Dhan Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC803", - "message": "Rishi Nagar (5 Gali)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC804", - "message": "Kishanpura (5 Gali)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC805", - "message": "Inderparsth Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC806", - "message": "Arya Samaj Mandir", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC807", - "message": "Bheem Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC808", - "message": "Sansi Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC809", - "message": "Dolatpuri", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC81", - "message": "Khehra Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC810", - "message": "Kapoor Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC811", - "message": "Ajit Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC812", - "message": "Amrik Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC813", - "message": "New Ajit Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC814", - "message": "New Amrik Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC815", - "message": "Baba Math Shah", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC816", - "message": "Santoshi Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC817", - "message": "Madrasi Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC818", - "message": "Qazi Mandi", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC819", - "message": "Kishan Pura", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC82", - "message": "Kabir Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC820", - "message": "Hoshiarpur Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC821", - "message": "Old Hoshiarpur Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC822", - "message": "Baldev Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC823", - "message": "New Baldev Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC824", - "message": "Baba Balak Nath Market", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC825", - "message": "Madrasi Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC826", - "message": "Ravidass School Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC827", - "message": "Dhonka Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC828", - "message": "Prithvi Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC829", - "message": "New Prithvi Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC83", - "message": "Kabir Avenue Extension", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC830", - "message": "Lambapind Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC831", - "message": "Dutta Street", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC832", - "message": "Raman Shiv Mandir Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC833", - "message": "Ajit Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC834", - "message": "Balmiki Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC835", - "message": "Vivek Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC836", - "message": "New Vivek Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC837", - "message": "Arjun Singh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC838", - "message": "Jaimal Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC839", - "message": "Durga Mandir Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC84", - "message": "Punjab Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC840", - "message": "Vinay Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC841", - "message": "Akash Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC842", - "message": "Arjun Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC843", - "message": "Jaimal Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC844", - "message": "Upkar Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC845", - "message": "New Upkar Nargar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC846", - "message": "Ghandi Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC847", - "message": "New Ghandi Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC848", - "message": "Chakk Hussaina", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC849", - "message": "Hoshiarpur Road Lamba Pind(Left Side)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC85", - "message": "Punjab Avenue Extension", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC850", - "message": "Muslim Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC851", - "message": "New Vinay Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC852", - "message": "Hans Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC853", - "message": "New Santokhpura", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC854", - "message": "Durga Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC855", - "message": "Sarabha Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC856", - "message": "Guru Ram Dass Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC857", - "message": "Niwi Abadi", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC858", - "message": "Lakshmipura", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC859", - "message": "New Lakshmipura", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC86", - "message": "Dhaliwal Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC860", - "message": "Vij Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC861", - "message": "Sant Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC862", - "message": "Bhagatpura", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC863", - "message": "Jeet Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC864", - "message": "Vikaspuri", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC865", - "message": "New Vikaspuri", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC866", - "message": "Ambika Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC867", - "message": "B.D.Steel", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC868", - "message": "Santokhpura Nivi Abadi", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC869", - "message": "Basti Bhure Kha", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC87", - "message": "Himachal Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC870", - "message": "Shah Sikandar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC871", - "message": "Ram Gharia School", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC872", - "message": "Preet Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC873", - "message": "Basant Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC874", - "message": "New Basant Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC875", - "message": "Aman Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC876", - "message": "New Aman Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC877", - "message": "New colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC878", - "message": "Kamal Park", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC879", - "message": "Preet Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC88", - "message": "Green Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC880", - "message": "New Preet Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC881", - "message": "Sodal Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC882", - "message": "Sidh Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC883", - "message": "Ashok Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC884", - "message": "Ramco Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC885", - "message": "New Sodal Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC886", - "message": "Mathura Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC887", - "message": "Kot Baba Deep Singh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC888", - "message": "Tobari Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC889", - "message": "Tanda Road Hanuman Mandir Chowk to Tanda Road Railway Crossing", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC89", - "message": "Sunshine Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC890", - "message": "Shah Sikandar Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC891", - "message": "Kailash Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC892", - "message": "New Kailash Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC893", - "message": "New Kailash Nagar Ext.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC894", - "message": "Gobind Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC895", - "message": "New Gobind Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC896", - "message": "J.M.C Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC897", - "message": "Gujja Peer Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC898", - "message": "Amar Garden", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC899", - "message": "Saipur Kalan", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC9", - "message": "New Guru Amar Das Extension Paschim", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC90", - "message": "Silver Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC900", - "message": "Sanjay Gandhi", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC901", - "message": "Dada Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC902", - "message": "Saini Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC903", - "message": "Chotta Saipur", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC904", - "message": "Hari Singh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC905", - "message": "Shashi Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC906", - "message": "Lathi Mar Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC907", - "message": "Sodal Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC908", - "message": "Gujja Peer Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC909", - "message": "Sodal Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC91", - "message": "Randhawa Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC910", - "message": "Laxmi Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC911", - "message": "Kali Mata Mandir Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC912", - "message": "Bhagat Singh Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC913", - "message": "Baba Balak Nath Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC914", - "message": "Shiv Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC915", - "message": "Canal Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC916", - "message": "Industrial Area", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC917", - "message": "Dada Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC918", - "message": "Chota Saipur Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC919", - "message": "Shiv Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC92", - "message": "Lahora Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC920", - "message": "Brij Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC921", - "message": "Gajji Gulla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC922", - "message": "Parbhat Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC923", - "message": "Ram Nagar Railway", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC924", - "message": "Crossing to Gajji Gujja Chowk Left Side", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC925", - "message": "Industrial Area Ext.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC926", - "message": "Canal Industrial Complex", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC927", - "message": "Gandhi Camp", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC928", - "message": "Gurdev Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC929", - "message": "Gopal Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC93", - "message": "Nanak Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC930", - "message": "Satnam Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC931", - "message": "Sawan Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC932", - "message": "Valmiki Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC933", - "message": "New Grain Market", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC934", - "message": "Jain Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC935", - "message": "New Gopal Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC936", - "message": "Neela Mahal", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC937", - "message": "Mohalla Krar Khan", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC938", - "message": "Sangra Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC939", - "message": "Teacher Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC94", - "message": "Basant Hill", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC940", - "message": "Krishna Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC941", - "message": "Tobri Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC942", - "message": "Guru Nanak Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC943", - "message": "Harnamdasspura", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC944", - "message": "Kot Lakhpat Rai", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC945", - "message": "Banda Bahadur Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC946", - "message": "Kapurthala Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC947", - "message": "Bagh Baharia", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC948", - "message": "Gulab Devi Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC949", - "message": "Bulton Park Cricket Stadium", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC95", - "message": "University Enclave", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC950", - "message": "Durga Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC951", - "message": "B.S.F Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC952", - "message": "Gopal Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC953", - "message": "New Colony Gopal Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC954", - "message": "Main Road Old Sabzi Mandi to Burton Park", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC955", - "message": "Sangat Singh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC956", - "message": "Balwant Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC957", - "message": "Bandha Bhadur Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC958", - "message": "Sarswati Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC959", - "message": "PNT Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC96", - "message": "Moti Bagh", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC960", - "message": "Bagh Bharia", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC961", - "message": "Bhagwan Dass Pura", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC962", - "message": "Dhiman Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC963", - "message": "Adresh Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC964", - "message": "Natha Bagechi", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC965", - "message": "Misson Compound", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC966", - "message": "Talab Bharia", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC967", - "message": "Jail Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC968", - "message": "Kabir Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC969", - "message": "Kachari Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC97", - "message": "Park Avenue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC970", - "message": "Gandhi Camp 3 Lain", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC971", - "message": "Windsor Park", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC972", - "message": "Rose Park", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC973", - "message": "Jain Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC974", - "message": "Gupta Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC975", - "message": "Hardev Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC976", - "message": "Guru Nanak Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC977", - "message": "Guru Arjun Dev Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC978", - "message": "Sarswati Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC979", - "message": "Surjit Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC98", - "message": "Chopra Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC980", - "message": "Malak Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC981", - "message": "Kalyani Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC982", - "message": "Suriya Vihar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC983", - "message": "Vivekananda Park", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC984", - "message": "Ariya Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC985", - "message": "Pingalwara", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC986", - "message": "Gujrati Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC987", - "message": "Shardha Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC988", - "message": "Sawarn Park", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC989", - "message": "Ram Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC99", - "message": "Dr. Ambedkar Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC990", - "message": "Chhota Gandhi Nagar Camp", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC991", - "message": "Friends Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC992", - "message": "Seth Hukam Chand Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC993", - "message": "Greater Kailash", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC994", - "message": "Moti Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC995", - "message": "New Moti Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC996", - "message": "Tagore Park/ Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC997", - "message": "Professor Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC998", - "message": "Maqsudan Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_JLC999", - "message": "Bohar Wala Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_STATEA_STATE", - "message": "State A", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TL_ACKNOWLEDGEMENT_FAILURE_BODY", - "message": "A notification regarding payment failure has been sent to the trade owner and applicant.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TL_ACKNOWLEDGEMENT_FAILURE_HEADER", - "message": "Payment has failed!", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TL_BUTTON_UPLOAD FILE", - "message": "UPLOAD FILE", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TL_DOB_ERROR_MESSAGE", - "message": "Please enter valid Date of Birth!", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TL_OLD_LICENSE_NO", - "message": "Old Application Number", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TL_SUMMARY_HEADER", - "message": "Application Summary", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "TL_VIEWBREAKUPCONTAINER_ACCESSORY_UNIT", - "message": "Accessory Unit", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "WF_PGR_APPLY", - "message": "Applied", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "WF_PGR_ASSIGN", - "message": "Assigned", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "WF_PGR_RATE", - "message": "Closed after rating", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "WF_PGR_REASSIGN", - "message": "Re-Assigned", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "WF_PGR_REJECT", - "message": "Rejected", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "WF_PGR_REOPEN", - "message": "Reopened", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "WF_PGR_RESOLVE", - "message": "Resolved", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "admin.locality.SU166", - "message": "Mohalla Majoran - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "admin.locality.SUN02", - "message": "Aggarsain Chowk to Mal Godown - Both Sides - Area3", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "admin.locality.SUN04", - "message": "Ajit Nagar - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "admin.locality.SUN08", - "message": "ATAR SINGH COLONY - Area2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "admin.locality.SUN105", - "message": "Jaura Khoo to Saraffa Bazaar (Southern Side) - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "admin.locality.SUN109", - "message": "Kailash Parbat - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "admin.locality.SUN11", - "message": "Back Side 33 KVA Grid Patiala Road - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "admin.locality.SUN12", - "message": "Back Side 66 KVA Grid Patiala Road - Area2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "admin.locality.SUN13", - "message": "Back Side Civil Courts Colony - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "admin.locality.SUN132", - "message": "Mohalla Akalgarh Gurudwara - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "admin.locality.SUN134", - "message": "Mohalla Bhadra Kali Mandir - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "admin.locality.SUN136", - "message": "Mohalla Bhatta Wala - Area2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "admin.locality.SUN137", - "message": "Mohalla Bhawdeyan Wala - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "admin.locality.SUN138", - "message": "Mohalla Bhojeka (both sides) - Area2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "admin.locality.SUN144", - "message": "Mohalla Kohliyan - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "admin.locality.SUN150", - "message": "Mohalla Rajan Wala (both sides) - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "admin.locality.SUN153", - "message": "Mohalla Singhkiyan (Nothern Side) - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "admin.locality.SUN158", - "message": "Mohalla-Kashayian wala - Area2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "admin.locality.SUN161", - "message": "Mohalla-Singhkiya wala - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "admin.locality.SUN167", - "message": "Mohalla Angaria wala - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "admin.locality.SUN169", - "message": "Mohalla Banda Patti - Area2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "admin.locality.SUN170", - "message": "Mohalla Bhai Ka - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "admin.locality.SUN173", - "message": "Mohalla Ganj Sheeda - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "admin.locality.SUN176", - "message": "Mohalla Kango - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "admin.locality.SUN178", - "message": "Mohalla Singh kia - Area2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "admin.locality.SUN18", - "message": "Back Side Naina Devi Mandir - Area2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "admin.locality.SUN194", - "message": "NEAR GURUDWARA PEHALI PATSHAHI UDAM SINGH ROAD - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "admin.locality.SUN20", - "message": "Backside Brijbala Hospital - Area3", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "admin.locality.SUN23", - "message": "BACKSIDE OLD GRAIN MARKET - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "admin.locality.SUN25", - "message": "Bakhtaur Nagar - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "admin.locality.SUN31", - "message": "Bhai Mool Chand Sahib Colony - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "admin.locality.SUN35", - "message": "Bigharwal Chowk to Railway Station - Area2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "admin.locality.SUN40", - "message": "Chandar Colony Biggarwal Road - Area2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "admin.locality.SUN41", - "message": "Charjan Wala Mohalla - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "admin.locality.SUN45", - "message": "Cinema Road - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "admin.locality.SUN46", - "message": "Cinema Road to Ali Bazaar (Nothern Side) - Area2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "admin.locality.SUN49", - "message": "College Road (Southern side) - Area2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "admin.locality.SUN54", - "message": "Deedar Tailor to Mata Modi Park- West Side - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "admin.locality.SUN55", - "message": "Deep Rice Mill Road - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "admin.locality.SUN56", - "message": "Dental College - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "admin.locality.SUN62", - "message": "Ekta Colony (Southern Side) - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "admin.locality.SUN75", - "message": "Gaushala, Arora Colony - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "admin.locality.SUN80", - "message": "Gugga Maadi Road (east side) - Area2", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "admin.locality.SUN84", - "message": "Gurudwara Niai Sahib Street 1 - Area1", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "chatbot.pgr.assigned", - "message": "Assigned", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "chatbot.pgr.closed", - "message": "Closed", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "chatbot.pgr.open", - "message": "Filed", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "chatbot.pgr.reassignrequested", - "message": "Being Re-assigned", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "chatbot.pgr.rejected", - "message": "Rejected", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "chatbot.pgr.resolved", - "message": "Resolved", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Assignment.fields.department", - "message": "Department", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Assignment.fields.designation", - "message": "Designation", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Assignment.fields.documents", - "message": "Documents", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Assignment.fields.fromDate", - "message": "From Date", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Assignment.fields.function", - "message": "Function", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Assignment.fields.functionary", - "message": "Functionary", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Assignment.fields.fund", - "message": "Fund", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Assignment.fields.govtOrderNumber", - "message": "Govt Order Number", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Assignment.fields.grade", - "message": "Grade", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Assignment.fields.hod", - "message": "If Hod", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Assignment.fields.position", - "message": "Position", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Assignment.fields.primary", - "message": "Is Primary", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Assignment.fields.toDate", - "message": "To Date", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Assignment.title", - "message": "ASSIGNMENT DETAILS", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.DepartmentalTest.fields.test", - "message": "Test", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.DepartmentalTest.title", - "message": "Departmental Test Details", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.EducationalQualification.fields.documents", - "message": "Doc Documents", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.EducationalQualification.fields.majorSubject", - "message": "Major Subject", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.EducationalQualification.fields.qualification", - "message": "Qualification", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.EducationalQualification.fields.university", - "message": "University/Board", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.EducationalQualification.title", - "message": "Educational Qualification", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Employee.fields.EmployeePhoto", - "message": "Employee Photo", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Employee.fields.EmployeeSignature", - "message": "Employee Signature", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Employee.fields.OtherAttachments", - "message": "Other Attachment", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Employee.fields.User.aadhaarNumber", - "message": "Aadhaar Number", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Employee.fields.User.birth", - "message": "Native/Birth Place", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Employee.fields.User.bloodGroup", - "message": "Blood Group", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Employee.fields.User.gender", - "message": "Gender", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Employee.fields.User.mobileNumber", - "message": "Phone Number", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Employee.fields.User.name", - "message": "Employee Name", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Employee.fields.User.userName", - "message": "User Name", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Employee.fields.bank", - "message": "Bank", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Employee.fields.bankAccount", - "message": "Account Number", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Employee.fields.bankBranch", - "message": "Bank Branch", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Employee.fields.category", - "message": "Category", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Employee.fields.city", - "message": "City", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Employee.fields.code", - "message": "Code", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Employee.fields.community", - "message": "Community", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Employee.fields.correspondenceAddress", - "message": "Correspondence Address", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Employee.fields.correspondencePinNumber", - "message": "Correspondence Pin Number", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Employee.fields.dateOfAppointment", - "message": "Date of Appointment", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Employee.fields.dateOfBirth", - "message": "Date of Birth", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Employee.fields.dateOfJoining", - "message": "Date of Joining/Deputation", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Employee.fields.dateOfResignation", - "message": "Date of Resignation", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Employee.fields.dateOfRetirement", - "message": "Date of Retirement", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Employee.fields.dateOfTermination", - "message": "Date of Termination", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Employee.fields.email", - "message": "Email Id", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Employee.fields.employeeStatus", - "message": "Employee Status", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Employee.fields.employeeType", - "message": "Employee Type", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Employee.fields.fatherSpouseName", - "message": "Father's/Spouse Name", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Employee.fields.gpfNo", - "message": "Gpf No/CPS Number", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Employee.fields.group", - "message": "Employee Group", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Employee.fields.identification", - "message": "Identification Mark", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Employee.fields.languagesKnown", - "message": "Languages Known", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Employee.fields.maritalStatus", - "message": "Marital Status", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Employee.fields.medicalReportProduced", - "message": "Medical Report Produced?", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Employee.fields.motherTongue", - "message": "Mother Tongue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Employee.fields.pan", - "message": "PAN", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Employee.fields.parmanentPinNumber", - "message": "Permanent Pin Number", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Employee.fields.passportNo", - "message": "Passport No", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Employee.fields.permanentAddress", - "message": "Permanent Address", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Employee.fields.physicallyDisabled", - "message": "Is Physically Disabled?", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Employee.fields.recruitmentMode", - "message": "Recruitment Mode", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Employee.fields.recruitmentQuota", - "message": "Recruitment Quota", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Employee.fields.recruitmentType", - "message": "Recruitment Type/Service Type", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Employee.fields.religion", - "message": "Religion", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Employee.fields.retirementAge", - "message": "Retirement Age", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Employee.title", - "message": "EMPLOYEE DETAILS", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Jurisdictions.title", - "message": "JURISDICTION LIST", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Probation.fields.declaredOn", - "message": "Declared On", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Probation.fields.documents", - "message": "Documents", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Probation.fields.orderDate", - "message": "Order Date", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Probation.fields.orderNo", - "message": "Order No", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Probation.fields.remarks", - "message": "Remarks", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Probation.title", - "message": "Probation", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Regularisation.fields.declaredOn", - "message": "Declared On Date", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.Regularisation.title", - "message": "Regularisation", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.ServiceHistory.fields.ServiceEntryDescription", - "message": "Service Entry Description", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.ServiceHistory.fields.date", - "message": "Date", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.ServiceHistory.fields.documents", - "message": "Documents", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.ServiceHistory.fields.orderNo", - "message": "Order No", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.ServiceHistory.fields.remarks", - "message": "Remarks/Comments", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.ServiceHistory.title", - "message": "Service History", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.TechnicalQualification.fields.grade", - "message": "Grade", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.TechnicalQualification.fields.remarks", - "message": "Remarks", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.TechnicalQualification.fields.skill", - "message": "Skills", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.TechnicalQualification.fields.yearOfPassing", - "message": "Year Of Completion", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.TechnicalQualification.title", - "message": "Technical Qualification", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.createPosition.groups.fields.outsourcepost.value1", - "message": "Yes", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.createPosition.groups.fields.outsourcepost.value2", - "message": "No", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.fields.isUserActive", - "message": "Is User Active?", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.jurisdiction.fields.boundary", - "message": "Boundary", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.jurisdiction.fields.boundaryType", - "message": "Boundary Type", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.other.title", - "message": "OTHER DETAILS", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "employee.service.title", - "message": "SERVICE SECTION", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.ANIMALS", - "message": "Animals", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.BADSTREETLIGHT", - "message": "Bad Streetlight", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.BADSUPPLY", - "message": "Bad Supply", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.BADTRAFFICLIGHT", - "message": "Bad Traffic Light", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.BINNOTEMPTY", - "message": "Bin Not Empty", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.BINS", - "message": "Bins", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.BLOCK/OVERFLOWINGSEWAGE", - "message": "Block / Overflowing sewage", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.BLOCKED", - "message": "Blocked", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.BLOCKEDDRAIN", - "message": "Blocked Drain", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.BLOCKOROVERFLOWINGSEWAGE", - "message": "Block/Overflowing sewage", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.BLOCKOVERFLOWINGSEWAGE", - "message": "Block/Overflowing sewage", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.BOUNDARYSTRUCTUREIDENTITY", - "message": "Boundary, Structure & Identity", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.BROKEN", - "message": "Broken", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.BROKENBIN", - "message": "Broken Bin", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.BROKENGARBAGEBIN", - "message": "Broken Garbage Bin", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.BROKENGUARD", - "message": "Broken Guard", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.BROKENHANDPUMP", - "message": "Broken Handpump", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.BROKENORDAMAGEDPIPE", - "message": "Broken Or Damaged Pipe", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.BROKENORLEAKINGSEWAGEPIPE", - "message": "Borken or Leaking Sewage pipe", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.BROKENPIPEORTAP", - "message": "Broken Pipe Or Tap", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.BROKENWATERPIPEORLEAKAGE", - "message": "Broken water pipe / Leakage", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.BROKENWATERPIPEORTAP", - "message": "Broken Water Pipe or Tap", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.BURNING", - "message": "Burning", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.BURNINGOFGARBAGE", - "message": "Burning of garbage", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.BlockOrOverflowingSewage", - "message": "Block/Overflowing sewage", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.BoundaryStructureIdentity", - "message": "Boundary, Structure & Identity", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.BrokenWaterPipeOrLeakage", - "message": "Broken water pipe / Leakage", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.BurningOfGarbage", - "message": "Burning of garbage", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.COMPENSATION", - "message": "Compensation(Redevelopment & Damaged Property)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.CONSTRUCTIONMATERIALLYINGONTHEROAD", - "message": "Construction material lying on the road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.CUSTOMS", - "message": "Customs Duty", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.CUSTOMSDUTY", - "message": "Customs Duty", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.CUTTINGORTRIMMINGOFTREEREQUIRED", - "message": "Cutting/trimming of tree required", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.Compensation", - "message": "Compensation(Redevelopment & Damaged Property)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.ConstructionMaterialLyingOntheRoad", - "message": "Construction material lying on the road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.CustomsDuty", - "message": "Customs Duty", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.CuttingOrTrimmingOfTreeRequired", - "message": "Cutting/trimming of tree required", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.DAMAGED", - "message": "Damaged", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.DAMAGED/BLOCKEDFOOTPATH", - "message": "Damaged/blocked footpath", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.DAMAGEDBLOCKEDFOOTPATH", - "message": "Damaged/blocked footpath", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.DAMAGEDDRAIN", - "message": "Damaged Drain", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.DAMAGEDFOOTPATH", - "message": "Damaged Footpath", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.DAMAGEDGARBAGEBIN", - "message": "Damaged garbage bin", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.DAMAGEDORBLOCKEDFOOTPATH", - "message": "Damaged/blocked footpath", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.DAMAGEDROAD", - "message": "Damaged road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.DAMAGEDSTREETLIGHT", - "message": "Damaged Streetlights", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.DEADANIMALS", - "message": "Dead animals", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.DEADBODY", - "message": "Dead Body", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.DEBRISORSILT", - "message": "Debris Or Silt", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.DIRTYORSMELLY", - "message": "Dirty Or Smelly", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.DIRTYORSMELLYPUBLICTOILETS", - "message": "Dirty/smelly public toilet", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.DIRTYWATERSUPPLY", - "message": "Dirty water supply", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.DISPLACEMENT", - "message": "Displacement (Insecurity)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.DRAINS", - "message": "Drains", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.DUMPING", - "message": "Dumping", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.DamagedGarbageBin", - "message": "Damaged garbage bin", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.DamagedOrBlockedFootpath", - "message": "Damaged/blocked footpath", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.DamagedRoad", - "message": "Damaged road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.DeadAnimals", - "message": "Dead animals", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.DirtyOrSmellyPublicToilets", - "message": "Dirty/smelly public toilet", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.DirtyWaterSupply", - "message": "Dirty water supply", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.Displacement", - "message": "Displacement (Insecurity)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.EMPLOYEEABSENT", - "message": "Employee Absent", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.ENCROACHMENT", - "message": "Encroachment", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.ENCROACHMENTONPUBLICPROPERTY", - "message": "Enroachment on Public Property", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.FINANCE", - "message": "Tax Rate", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.FOOTPATHS", - "message": "Footpaths", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.GARBAGE", - "message": "Garbage", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.GARBAGEBINNOTEMPTY", - "message": "Garbage Bin not empty", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.GARBAGEBINNOTTHERE", - "message": "Garbage Bin not there", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.GARBAGENEEDSTOBECLEANED", - "message": "Garbage needs to be cleaned", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.GARBAGENEEDSTOBECLEARED", - "message": "Garbage needs to be cleared", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.GOODGOVERNANCE", - "message": "Good Governance", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.GOVERNANCE", - "message": "Good Governance", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.GarbageNeedsTobeCleared", - "message": "Garbage needs to be cleared", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.GoodGovernance", - "message": "Good Governance", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.HOUSEDEBATE", - "message": "House Debate (Kebele House & Proclamation 47/67)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.HOUSING", - "message": "House Debate (Kebele House & Proclamation 47/67)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.HouseDebate", - "message": "House Debate (Kebele House & Proclamation 47/67)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.ILLEGALCONSTRUCTION", - "message": "Illegal Construction", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.ILLEGALCONSTRUCTIONS", - "message": "Illegal constructions", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.ILLEGALCUTTING", - "message": "Illegal Cutting", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.ILLEGALCUTTINGOFTREES", - "message": "Illegal Cutting of trees", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.ILLEGALDISCHARGE", - "message": "Illegal discharge of sewage", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.ILLEGALDISCHARGEOFSEWAGE", - "message": "Ilegal Discharge of Sewage", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.ILLEGALFOOTPATHSHOP", - "message": "Illegal Footpath Shop", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.ILLEGALHOARDING", - "message": "Illegal Hoarding", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.ILLEGALPARKING", - "message": "Illegal parking", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.ILLEGALSHOPS", - "message": "Illegal Shops", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.ILLEGALSHOPSONFOOTPATH", - "message": "Illegal shops on footpath", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.ILLEGALSHOPSONTHEFOOTPATH", - "message": "Illegal Shops on the Footpath", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.INFRASTRUCTURE", - "message": "Boundary, Structure & Identity", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.IllegalConstructions", - "message": "Illegal constructions", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.IllegalCuttingOfTrees", - "message": "Illegal Cutting of trees", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.IllegalParking", - "message": "Illegal parking", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.IllegalShopsOnFootPath", - "message": "Illegal shops on footpath", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.JUSTICE", - "message": "Justice", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.Justice", - "message": "Justice", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.LABOR", - "message": "Labor Dispute", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.LABORDISPUTE", - "message": "Labor Dispute", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.LANDVIOLATION", - "message": "Land Violation", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.LANDVIOLATIONS", - "message": "Land Violations", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.LEGAL", - "message": "Justice", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.LIGHTS", - "message": "Lights", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.LaborDispute", - "message": "Labor Dispute", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.MANHOLECOVERMISSINGORDAMAGED", - "message": "Manhole cover is missing/damaged", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.MANHOLEISSUE", - "message": "Manhole Issue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.MISUSE", - "message": "Misuse", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.MOSQUITOES", - "message": "Mosquitoes", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.MOSQUITOS", - "message": "Mosquitoes", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.ManholeCoverMissingOrDamaged", - "message": "Manhole cover is missing/damaged", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.NONSWEEPINGOFROAD", - "message": "Non sweeping of road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.NOSTREETLIGHT", - "message": "No streetlight", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.NOTFUNCTIONAL", - "message": "Not Functional", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.NOTWATERSUPPLY", - "message": "Not Water Supply", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.NOWATERORELECTRICITY", - "message": "No Water Or Electricity", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.NOWATERORELECTRICITYINPUBLICTOILET", - "message": "No water/electricity in public toilet", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.NOWATERSUPPLY", - "message": "No Water Supply", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.NoStreetlight", - "message": "No streetlight", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.NoWaterOrElectricityinPublicToilet", - "message": "No water/electricity in public toilet", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.NoWaterSupply", - "message": "No Water Supply", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.NonSweepingOfRoad", - "message": "Non Sweeping Of Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.OPENDEFACATION", - "message": "Open Defecation", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.OPENDEFECATION", - "message": "Open Defecation", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.OPENLAND", - "message": "Open Land", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.OTHERS", - "message": "Others", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.OVERFLOWING", - "message": "Overflowing", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.OVERFLOWING/BLOCKEDDRAIN", - "message": "Overflowing/Blocked drain", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.OVERFLOWINGBLOCKEDDRAIN", - "message": "Overflowing/Blocked drain", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.OVERFLOWINGDRAIN", - "message": "Owerflowing Drain", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.OVERFLOWINGORBLOCKEDDRAIN", - "message": "Overflowing/Blocked drain", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.OVERFLOWINGSEWAGE", - "message": "Overflowing Sewage", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.OpenDefecation", - "message": "Open Defecation", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.Others", - "message": "Others", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.OverflowingOrBlockedDrain", - "message": "Overflowing/Blocked drain", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.PARKREQUIRESMAINTENANCE", - "message": "Park requires maintenance", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.PARKS", - "message": "Parks", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.PENSIONS", - "message": "Retirement", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.POLEORLIGHTDAMAGE", - "message": "Pole Or Light Damage", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.POORSWEEPING", - "message": "Poor Sweeping", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.POSSESSIONDISPUTE", - "message": "Possession Dispute", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.POTHOLES", - "message": "Potholes", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.POTHOLESONTHEROAD", - "message": "Potholes on the Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.PROPERTY", - "message": "Possession Dispute", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.PROPOSAL", - "message": "Proposal", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.PROPOSALS", - "message": "Proposal", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.PUBLICTOILETISDAMAGED", - "message": "Public toilet damaged", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.PUBLICTOILETISNOTWORKINGPROPERLY", - "message": "Public Toilet is not working properly", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.PUBLICTOILETS", - "message": "Public Toilets", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.ParkRequiresMaintenance", - "message": "Park requires maintenance", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.Parks", - "message": "Park requires maintenance", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.PossessionDispute", - "message": "Possession Dispute", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.Proposal", - "message": "Proposal", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.PublicToiletIsDamaged", - "message": "Public toilet damaged", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.REMOVEGARBAGEORWATER", - "message": "Remove Garbage Or Water", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.REPLACE/PROVIDEGARBAGEBIN", - "message": "Replace/provide garbage bin", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.REPLACEORPROVIDEGARBAGEBIN", - "message": "Replace/provide garbage bin", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.REPLACEPROVIDEGARBAGEBIN", - "message": "Replace/provide garbage bin", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.REQUESTNEW", - "message": "Request New", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.REQUESTSMOKEOP", - "message": "Request Smoke Op", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.REQUESTSPRAYINGORFOGGINGOPERATION", - "message": "Request spraying/ fogging operations", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.REQUESTSPRAYOP", - "message": "Request Spray Op", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.REQUESTTANKER", - "message": "Request Tanker", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.REQUESTTRIMMING", - "message": "Request Trimming", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.RETIREMENT", - "message": "Retirement", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.ROADORFOOTPATH", - "message": "Road Or Footpath", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.ROADS", - "message": "Roads", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.ROADSANDFOOTPATHS", - "message": "Roads & footpaths", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.ROADSCODEE", - "message": "Roads codee", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.ReplaceOrProvideGarbageBin", - "message": "Replace or provide garbage bin ", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.RequestSprayingOrFoggingOperation", - "message": "Request spraying/ fogging operations", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.Retirement", - "message": "Retirement", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.SERVICE", - "message": "Service", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.SERVICENAME.FEVERS_DENGUE_MALARIA", - "message": "Fevers - Dengue", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.SERVICENAME.NON_RECEIPT_OF_PENSIONS_DISABLED_ELDERLY_ETC", - "message": "Non-Receipt of Pensions - Disabled", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.SERVICENAME.REPAIRS_TO_FLYOVERS_BRIDGES_CULVERTS", - "message": "Repairs to Flyovers", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.SERVICENAME.UNHYGIENIC_IMPROPER_TRANSFER_OF_MEAT_LIVESTOCK", - "message": "Unhygienic", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.SEWAGE", - "message": "Sewage", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.SEWAGEEFFLUENTS", - "message": "Sewage Effluents", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.SHORTAGEOFWATER", - "message": "Shortage of water", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.SHORTSUPPLY", - "message": "Short Supply", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.SLOWPROGRESS", - "message": "Slow Progress", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.STAGNANTWATER", - "message": "Stagnant Water", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.STORMWATERDRAIN", - "message": "Storm Water Drain", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.STRAYANIMALS", - "message": "Stray animals", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.STRAYCATTLE", - "message": "Stray Cattle", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.STRAYDOGS", - "message": "Stray Dogs", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.STRAYPIGS", - "message": "Stray Pigs", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.STREETLIGHTNOTWORKING", - "message": "Streetlight not working", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.STREETLIGHTS", - "message": "Streetlights", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.SUGGESTION", - "message": "Suggestion", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.SUGGESTIONS", - "message": "Suggestion", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.SUPPORT", - "message": "Support / Help", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.SUPPORTHELP", - "message": "Support / Help", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.ShortageOfWater", - "message": "Shortage of water", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.StrayAnimals", - "message": "Stray animals", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.StreetLightNotWorking", - "message": "Streetlight not working", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.Suggestion", - "message": "Suggestion", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.SupportHelp", - "message": "Support / Help", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.TAXRATE", - "message": "Tax Rate", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.TOILETS", - "message": "Toilets", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.TREES", - "message": "Trees", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.TRUCKSPILLAGE", - "message": "Truck Spillage", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.TaxRate", - "message": "Tax Rate", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.VACANTLAND", - "message": "Vacant Land", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.WATER", - "message": "Water", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.WATERANDSEWAGE", - "message": "Water & Sewage", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.WATERBODY", - "message": "Water Body", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.WATERLOGGED", - "message": "Water Logged", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.WATERLOGGEDROAD", - "message": "Water logged road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.WATERPRESSUREISVERYLESS", - "message": "Water pressure is very less", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.WaterLoggedRoad", - "message": "Water logged road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.WaterPressureisVeryLess", - "message": "Water pressure is very less", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.complaint.category.illegalDischargeOfSewage", - "message": "Ilegal Discharge of Sewage", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.sms.notification.assign", - "message": "Your complaint for {complaint_type} has been assigned to {emp_name}, {emp_designation}, {emp_department}\n\nEGOVS", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.sms.notification.assign.citizen", - "message": "Dear Citizen, Your complaint for with ID submitted on has been assigned to , , . You can track your complaint status and connect with our officials on the on the web portal.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.sms.notification.assign.employee", - "message": "Shri , Complaint for '' with ID has been assigned to you. Please take appropriate action. - ", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.sms.notification.close.employee", - "message": "Shri , Complaint for with ID has received /5 feedback from the citizen. Thank you for your service.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.sms.notification.comment", - "message": " has commented on your complaint for with complaint ID . Comment - .", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.sms.notification.comment.default", - "message": "You have received a comment on your complaint. You can track your complaint status on the mSeva app or your local government web portal.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.sms.notification.default", - "message": "Your complaint has been . You can track your complaint status on the mSeva app or your local government web portal", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.sms.notification.reassign", - "message": "Your complaint for {complaint_type} has been re-assigned to {emp_name}, {emp_designation}, {emp_department}.\n\nEGOVS", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.sms.notification.reassign.citizen", - "message": "Dear Citizen, Your complaint for with ID submitted on has been re-assigned to , , . You can track your complaint status and connect with our officials on the on the web portal.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.sms.notification.reassign.employee", - "message": "Shri , Complaint for '' with ID has been re-assigned as per your request. - ", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.sms.notification.reject", - "message": "Your complaint for {complaint_type} has been rejected on {date}. Reason for Rejection: {reason} Additional Comments: {additional_comments}.\n\nEGOVS", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.sms.notification.reject.citizen", - "message": "Dear Citizen, Your complaint for with ID submitted on has been rejected. Reason for Rejection: , Additional Comments: If you wish to re-open the complaint, you can visit the web portal.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.sms.notification.reopen", - "message": "Your complaint for {complaint_type} has been re-opened on {date}.\n\nEGOVS", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.sms.notification.reopen.citizen", - "message": "Dear Citizen, Your complaint for with ID submitted on has been RE-OPEN as per your request. You can track your complaint status and connect with our officials on the web portal.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.sms.notification.reopen.employee", - "message": "Shri , Complaint for with ID has been re-opened by the citizen. It is being reviewed by Assigning officer - .", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.sms.notification.resolve", - "message": "Your complaint for {complaint_type} has been resolved on {date}. Please give us your feedback on the mSeva app, your local government web portal or at this link {app_link}.\n\nEGOVS", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.sms.notification.resolve.citizen", - "message": "Dear Citizen, Your complaint for with ID submitted on has been resolved by . If you are not satisfied with service you can RE-OPEN complaint through web portal or by calling our CSR.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.sms.notification.submit", - "message": "Your complaint for {complaint_type} has been submitted with ID {id} on {date}. You can track your complaint status on the mSeva app or your local government web portal.\n\nEGOVS", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "pgr.sms.notification.submit.citizen", - "message": "Dear Citizen, Your complaint for has been submitted with ID on . You can track your complaint status on the web portal.", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.common.action", - "message": "Action", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.pgr.address", - "message": "Citizen detailed Address", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.pgr.assigned", - "message": "Complaint Assigned", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.pgr.complaintId", - "message": "Complaint ID", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.pgr.complaintid", - "message": "Complaint ID", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.pgr.complainttype", - "message": "Complaint Type", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.pgr.dateofassignment", - "message": "Date of Assignment", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.pgr.dateofcomplaint", - "message": "Date of Complaint", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.pgr.department", - "message": "Department", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.pgr.description", - "message": "Additional Complaint Details", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.pgr.designation", - "message": "Designation", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.pgr.employee", - "message": "Employee Name", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.pgr.landmark", - "message": "Landmark", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.pgr.lastassignedto", - "message": "Complaint last assigned to", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.pgr.name", - "message": "Citizen Name", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.pgr.open", - "message": "No of open complaints", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.pgr.opencomplaintsoutsidesla", - "message": "Open Complaints outside SLA", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.pgr.opencomplaintswithinsla", - "message": "Open Complaints within SLA", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.pgr.phone", - "message": "Citizen Mobile Number", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.pgr.rating", - "message": "Rating", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.pgr.received", - "message": "Complaint Received", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.pgr.reopen", - "message": "No of complaints re-opened", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.pgr.resolvedoutsidesla", - "message": "Complaint Resolved outside SLA", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.pgr.resolvedwithinsla", - "message": "Complaint Resolved within SLA", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.pgr.slahours", - "message": "SLA", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.pgr.tenantid", - "message": "ULB Name", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.pgr.ward", - "message": "Complaint Ward/Block", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.pt.amount", - "message": "Amount", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.pt.assessmentAmount", - "message": "Assessment amount", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.pt.assessmentNo", - "message": "Assessment No", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.pt.assessments", - "message": "Assessments", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.pt.bankName", - "message": "Bank Name", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.pt.cancerCess", - "message": "Cancer Cess", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.pt.collectedAmount", - "message": "Collected amount", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.pt.day", - "message": "Date", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.pt.ddChequeTransactionNo", - "message": "DD/Cheque Transanction Number", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.pt.documentType", - "message": "Document Type", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.pt.documentUid", - "message": "Document ID", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.pt.exemptionAmount", - "message": "Exemption amount", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.pt.exemptionGiven", - "message": "Exemption given", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.pt.exemptionRate", - "message": "Exemption rate", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.pt.financialYear", - "message": "Financial Year", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.pt.fireCess", - "message": "Fire Cess", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.pt.fireCessCollected", - "message": "Fire cess collected", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.pt.fromDate", - "message": "From Date", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.pt.interestCollected", - "message": "Interest collected", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.pt.month", - "message": "Month", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.pt.name", - "message": "Employee name", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.pt.ownerType", - "message": "Owner type", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.pt.paymentDues", - "message": "Payment dues", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.pt.paymentMode", - "message": "Payment Mode", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.pt.penaltiesCollected", - "message": "Penalties collected", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.pt.propertyTax", - "message": "Property Tax", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.pt.ptCollected", - "message": "PT collected", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.pt.reason", - "message": "Reason", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.pt.rebateGiven", - "message": "Rebate given", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.pt.receiptDate", - "message": "Receipt Date", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.pt.receiptNo", - "message": "Receipt Number", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.pt.subUsageType", - "message": "Sub-usage type", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.pt.toDate", - "message": "To Date", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.pt.totalAssessmentAmount", - "message": "Total assessment amount", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.pt.totalAssessments", - "message": "Total no. of assessments", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.pt.totalCollectedAmount", - "message": "Total collected amount", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.pt.totalamountdue", - "message": "Total Amount Due", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.pt.totalamountpaid", - "message": "Total Amount Paid", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.pt.totalassessments", - "message": "Total Assessments", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.pt.ulb", - "message": "ULB Name", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.pt.ulbName", - "message": "ULB Name", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.rainmaker-pgr.Complaints Received", - "message": "Complaints Received", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.rainmaker-pgr.Source", - "message": "Source", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.rainmaker-pgr.address", - "message": "Address", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.rainmaker-pgr.ao name", - "message": "Assigning Officer Name", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.rainmaker-pgr.assigned", - "message": "Assigned", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.rainmaker-pgr.avg citizen rating", - "message": "Citizen’s Avg. Rating", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.rainmaker-pgr.complaint type", - "message": "Complaint Type", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.rainmaker-pgr.complaintNo", - "message": "Complaint No", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.rainmaker-pgr.complaints assigned", - "message": "Complaints Assigned", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.rainmaker-pgr.complaints rejected", - "message": "Complaints Rejected", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.rainmaker-pgr.complaints unassigned", - "message": "Complaints Unassigned", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.rainmaker-pgr.complainttype", - "message": "Complaint Type", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.rainmaker-pgr.date", - "message": "Date", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.rainmaker-pgr.datefrom", - "message": "From Date", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.rainmaker-pgr.dateto", - "message": "To Date", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.rainmaker-pgr.department", - "message": "Department", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.rainmaker-pgr.department name", - "message": "Department Name", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.rainmaker-pgr.description", - "message": "Complaint details", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.rainmaker-pgr.employee", - "message": "Employee Name", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.rainmaker-pgr.employee name", - "message": "Employee Name", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.rainmaker-pgr.landmark", - "message": "Additional address", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.rainmaker-pgr.lastassignedto", - "message": "Last Assigned To", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.rainmaker-pgr.locality", - "message": "Locality", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.rainmaker-pgr.name", - "message": "Citizen name", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.rainmaker-pgr.open", - "message": "Open", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.rainmaker-pgr.outside sla", - "message": "Total Complaints Outside SLA", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.rainmaker-pgr.outsidesla", - "message": "Open/Assigned outside SLA", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.rainmaker-pgr.phone", - "message": "Citizen contact", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.rainmaker-pgr.rejected", - "message": "Rejected", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.rainmaker-pgr.resolved", - "message": "Resolved", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.rainmaker-pgr.resolvedoutsidesla", - "message": "Resolved outside SLA", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.rainmaker-pgr.servicecode", - "message": "Type", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.rainmaker-pgr.slahours", - "message": "SLA", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.rainmaker-pgr.source.ivr", - "message": "CSR", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.rainmaker-pgr.source.mobileapp", - "message": "Mobile", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.rainmaker-pgr.source.unknown", - "message": "Unknown", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.rainmaker-pgr.source.web", - "message": "Web", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.rainmaker-pgr.status", - "message": "Status", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.rainmaker-pgr.status.assigned", - "message": "Assigned Complaints", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.rainmaker-pgr.status.closed", - "message": "Closed Complaints", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.rainmaker-pgr.status.open", - "message": "Open Complaints", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.rainmaker-pgr.status.reassignrequested", - "message": "Reassign Requested Complaints", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.rainmaker-pgr.status.rejected", - "message": "Rejected Complaints", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.rainmaker-pgr.tenantId", - "message": "tenantId", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.rainmaker-pgr.tenantid", - "message": "ULB Name", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.rainmaker-pgr.total", - "message": "Total Complaints", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.rainmaker-pgr.total closed complaints", - "message": "Total Closed Complaints", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.rainmaker-pgr.total complaints", - "message": "Total Complaints", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.rainmaker-pgr.total complaints received", - "message": "Total Complaints Received", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.rainmaker-pgr.total open complaints", - "message": "Total Open Complaints", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "reports.rainmaker-pgr.within sla", - "message": "Within SLA", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "revenue.locality.SU166", - "message": "Mohalla Majoran", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "revenue.locality.SUN02", - "message": "Aggarsain Chowk to Mal Godown - Both Sides", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "revenue.locality.SUN04", - "message": "Ajit Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "revenue.locality.SUN08", - "message": "ATAR SINGH COLONY", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "revenue.locality.SUN105", - "message": "Jaura Khoo to Saraffa Bazaar (Southern Side)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "revenue.locality.SUN109", - "message": "Kailash Parbat", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "revenue.locality.SUN11", - "message": "Back Side 33 KVA Grid Patiala Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "revenue.locality.SUN12", - "message": "Back Side 66 KVA Grid Patiala Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "revenue.locality.SUN13", - "message": "Back Side Civil Courts Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "revenue.locality.SUN132", - "message": "Mohalla Akalgarh Gurudwara", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "revenue.locality.SUN134", - "message": "Mohalla Bhadra Kali Mandir", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "revenue.locality.SUN136", - "message": "Mohalla Bhatta Wala", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "revenue.locality.SUN137", - "message": "Mohalla Bhawdeyan Wala", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "revenue.locality.SUN138", - "message": "Mohalla Bhojeka (both sides)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "revenue.locality.SUN144", - "message": "Mohalla Kohliyan", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "revenue.locality.SUN150", - "message": "Mohalla Rajan Wala (both sides)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "revenue.locality.SUN153", - "message": "Mohalla Singhkiyan (Nothern Side)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "revenue.locality.SUN158", - "message": "Mohalla-Kashayian wala", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "revenue.locality.SUN161", - "message": "Mohalla-Singhkiya wala", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "revenue.locality.SUN167", - "message": "Mohalla Angaria wala", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "revenue.locality.SUN169", - "message": "Mohalla Banda Patti", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "revenue.locality.SUN170", - "message": "Mohalla Bhai Ka", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "revenue.locality.SUN173", - "message": "Mohalla Ganj Sheeda", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "revenue.locality.SUN176", - "message": "Mohalla Kango", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "revenue.locality.SUN178", - "message": "Mohalla Singh kia", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "revenue.locality.SUN18", - "message": "Back Side Naina Devi Mandir", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "revenue.locality.SUN194", - "message": "NEAR GURUDWARA PEHALI PATSHAHI UDAM SINGH ROAD", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "revenue.locality.SUN20", - "message": "Backside Brijbala Hospital", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "revenue.locality.SUN23", - "message": "BACKSIDE OLD GRAIN MARKET", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "revenue.locality.SUN25", - "message": "Bakhtaur Nagar", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "revenue.locality.SUN31", - "message": "Bhai Mool Chand Sahib Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "revenue.locality.SUN35", - "message": "Bigharwal Chowk to Railway Station", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "revenue.locality.SUN40", - "message": "Chandar Colony Biggarwal Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "revenue.locality.SUN41", - "message": "Charjan Wala Mohalla", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "revenue.locality.SUN45", - "message": "Cinema Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "revenue.locality.SUN46", - "message": "Cinema Road to Ali Bazaar (Nothern Side)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "revenue.locality.SUN49", - "message": "College Road (Southern side)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "revenue.locality.SUN54", - "message": "Deedar Tailor to Mata Modi Park- West Side", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "revenue.locality.SUN55", - "message": "Deep Rice Mill Road", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "revenue.locality.SUN56", - "message": "Dental College", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "revenue.locality.SUN62", - "message": "Ekta Colony (Southern Side)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "revenue.locality.SUN75", - "message": "Gaushala, Arora Colony", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "revenue.locality.SUN80", - "message": "Gugga Maadi Road (east side)", - "module": "rainmaker-pgr", - "locale": "en_IN" - }, - { - "code": "revenue.locality.SUN84", - "message": "Gurudwara Niai Sahib Street 1", - "module": "rainmaker-pgr", - "locale": "en_IN" - } -] \ No newline at end of file diff --git a/utilities/default-data-handler/src/main/resources/localisations-dev/en_IN/rainmaker-workbench.json b/utilities/default-data-handler/src/main/resources/localisations-dev/en_IN/rainmaker-workbench.json deleted file mode 100644 index 3c813df1..00000000 --- a/utilities/default-data-handler/src/main/resources/localisations-dev/en_IN/rainmaker-workbench.json +++ /dev/null @@ -1,8270 +0,0 @@ -[ - { - "code": "ACCESSCONTROL_ACTIONS_TEST_ACTIONS_TEST_CODE", - "message": "code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ACTIONS_TEST_ACTIONS_TEST_DISPLAYNAME", - "message": "displayName", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ACTIONS_TEST_ACTIONS_TEST_ENABLED", - "message": "enabled", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ACTIONS_TEST_ACTIONS_TEST_ID", - "message": "id", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ACTIONS_TEST_ACTIONS_TEST_LEFTICON", - "message": "leftIcon", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ACTIONS_TEST_ACTIONS_TEST_NAME", - "message": "name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ACTIONS_TEST_ACTIONS_TEST_NAVIGATIONURL", - "message": "navigationURL", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ACTIONS_TEST_ACTIONS_TEST_ORDERNUMBER", - "message": "orderNumber", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ACTIONS_TEST_ACTIONS_TEST_PARENTMODULE", - "message": "parentModule", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ACTIONS_TEST_ACTIONS_TEST_PATH", - "message": "path", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ACTIONS_TEST_ACTIONS_TEST_RIGHTICON", - "message": "rightIcon", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ACTIONS_TEST_ACTIONS_TEST_SERVICECODE", - "message": "serviceCode", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ACTIONS_TEST_ACTIONS_TEST_URL", - "message": "url", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLEACTIONS_ROLEACTIONS_ACTIONCODE", - "message": "actioncode", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLEACTIONS_ROLEACTIONS_ACTIONID", - "message": "actionid", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLEACTIONS_ROLEACTIONS_ROLECODE", - "message": "rolecode", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLEACTIONS_ROLEACTIONS_TENANTID", - "message": "tenantId", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ACCESSCONTROL_ROLES_ACTIONS", - "message": "actions", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ACCESSCONTROL_ROLES_ALLOWEDSEARCHCRITERIA", - "message": "allowedSearchCriteria", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ACCESSCONTROL_ROLES_ATTRIBUTEACCESSLIST", - "message": "attributeAccessList", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ACCESSCONTROL_ROLES_ATTRIBUTELIST", - "message": "attributeList", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ACCESSCONTROL_ROLES_ATTRIBUTES", - "message": "attributes", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ACCESSCONTROL_ROLES_ROLEATTRIBUTEACCESSLIST", - "message": "roleAttributeAccessList", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ACCESSCONTROL_ROLES_ROLEBASEDDECRYPTIONPOLICY", - "message": "roleBasedDecryptionPolicy", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ACCESSCONTROL_ROLES_ROLES", - "message": "roles", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ACCESSCONTROL_ROLES_SOURCEFILTERPATHLIST", - "message": "sourceFilterPathList", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ACCESSCONTROL_ROLES_STATE", - "message": "state", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ACCESSCONTROL_ROLES_STATES", - "message": "states", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_CODE", - "message": "code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_DESCRIPTION", - "message": "description", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_NAME", - "message": "name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "ACCESSCONTROL_ROLES_ROLES_WORKFLOW_ADMIN", - "message": "Workflow Admin", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_LOCALISATION", - "message": "Localisation", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_MANAGE_DEPARTMENT_MASTER", - "message": "Manange Department Master", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_MANAGE_EMPLOYEETYPE_MASTER", - "message": "Manage Employee Master", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_MDMS", - "message": "Manage Master Data", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_UPLOAD_BOUNDARY", - "message": "Manage Boundary Data", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "ACTION_TEST_WORKBENCH", - "message": "Workbench", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "ADD_NEW_ROW", - "message": "Add Row", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "AN_UNHANDLED_EXCEPTION_OCCURRED_ON_THE_SERVER", - "message": "An unexpected server error occurred, please try again later.", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_BILLGINEIURL", - "message": "Billgineiurl", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_BUSINESSSERVICE", - "message": "Businessservice", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_CODE", - "message": "Code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_COLLECTIONMODESNOTALLOWED", - "message": "Collectionmodesnotallowed", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_DEMANDUPDATETIME", - "message": "Demandupdatetime", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_ISADVANCEALLOWED", - "message": "Isadvanceallowed", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_ISBILLAMENDMENTENABLED", - "message": "Isbillamendmentenabled", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_ISVOUCHERCREATIONENABLED", - "message": "Isvouchercreationenabled", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_MINAMOUNTPAYABLE", - "message": "Minamountpayable", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_BUSINESSSERVICE_PARTPAYMENTALLOWED", - "message": "Partpaymentallowed", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_TAXHEADMASTER_CATEGORY", - "message": "Category", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_TAXHEADMASTER_CODE", - "message": "Code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_TAXHEADMASTER_ISACTUALDEMAND", - "message": "Isactualdemand", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_TAXHEADMASTER_ISDEBIT", - "message": "Isdebit", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_TAXHEADMASTER_ISREQUIRED", - "message": "Isrequired", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_TAXHEADMASTER_NAME", - "message": "Name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_TAXHEADMASTER_ORDER", - "message": "Order", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_TAXHEADMASTER_SERVICE", - "message": "Service", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_TAXPERIOD_CODE", - "message": "Code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_TAXPERIOD_FINANCIALYEAR", - "message": "Financialyear", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_TAXPERIOD_FROMDATE", - "message": "Fromdate", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_TAXPERIOD_PERIODCYCLE", - "message": "Periodcycle", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_TAXPERIOD_SERVICE", - "message": "Service", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "BILLINGSERVICE_TAXPERIOD_TODATE", - "message": "Todate", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "CLEAR_LOC_TABLE", - "message": "Clear", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_CORE_COLLAPSE", - "message": "Collapse", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_CORE_EXPAND", - "message": "Expand", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_BDTEMPLATE_CODE", - "message": "Code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_BDTEMPLATE_TEMPLATE", - "message": "Template", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_CANCELCURRENTBILLREASONS_ACTIVE", - "message": "Active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_CANCELCURRENTBILLREASONS_CODE", - "message": "Code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_CANCELRECEIPTREASON_ACTIVE", - "message": "Active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_CANCELRECEIPTREASON_CODE", - "message": "Code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_CENSUSYEAR_CODE", - "message": "Code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_CENSUSYEAR_NAME", - "message": "Name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_CENSUSYEAR_TENANTID", - "message": "Tenantid", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_CITIZENCONSENTFORM_CHECKBOXLABELS", - "message": "Checkboxlabels", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_CITIZENCONSENTFORM_EN_IN", - "message": "En_in", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_CITIZENCONSENTFORM_ID", - "message": "Id", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_CITIZENCONSENTFORM_ISCITIZENCONSENTFORMENABLED", - "message": "Iscitizenconsentformenabled", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_CITIZENCONSENTFORM_LINK", - "message": "Link", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_CITIZENCONSENTFORM_LINKID", - "message": "Linkid", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_CITIZENCONSENTFORM_LINKPOSTFIX", - "message": "Linkpostfix", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_CITIZENCONSENTFORM_LINKPREFIX", - "message": "Linkprefix", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_COMMONINBOXCONFIG_ACTIVE", - "message": "Active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_COMMONINBOXCONFIG_BUSINESSSERVICE", - "message": "Businessservice", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_COMMONINBOXCONFIG_DEFAULT", - "message": "Default", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_COMMONINBOXCONFIG_INITIATED", - "message": "Initiated", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_COMMONINBOXCONFIG_LOCALITY", - "message": "Locality", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_COMMONINBOXCONFIG_LOCALITYMODULE", - "message": "Localitymodule", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_COMMONINBOXCONFIG_MODULENAME", - "message": "Modulename", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_COMMONINBOXCONFIG_REDIRECTCONFIG", - "message": "Redirectconfig", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_COMMONINBOXCONFIG_ROLES", - "message": "Roles", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_COMMON_MASTERS_ALLOWEDDOCS", - "message": "Alloweddocs", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_COMMON_MASTERS_ALLOWEDFORMAT", - "message": "Allowedformat", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_COMMON_MASTERS_APPLICATIONDOCUMENT", - "message": "Applicationdocument", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_COMMON_MASTERS_APPLICATIONTYPE", - "message": "Applicationtype", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_COMMON_MASTERS_BILLFOOTERCONTENT", - "message": "Billfootercontent", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_COMMON_MASTERS_BODY", - "message": "Body", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_COMMON_MASTERS_BUTTONS", - "message": "Buttons", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_COMMON_MASTERS_CHECKBOXLABELS", - "message": "Checkboxlabels", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_COMMON_MASTERS_COLLECTIONMODESNOTALLOWED", - "message": "Collectionmodesnotallowed", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_COMMON_MASTERS_DOCUMENTLIST", - "message": "Documentlist", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_COMMON_MASTERS_DOCUMENTS", - "message": "Documents", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_COMMON_MASTERS_DROPDOWNDATA", - "message": "Dropdowndata", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_COMMON_MASTERS_LANGUAGES", - "message": "Languages", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_COMMON_MASTERS_LANGUAGESSPOKEN", - "message": "Languagesspoken", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_COMMON_MASTERS_LOCALIZATIONMODULES", - "message": "Localizationmodules", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_COMMON_MASTERS_PINCODE", - "message": "Pincode", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_COMMON_MASTERS_RECEIPTFOOTERCONTENT", - "message": "Receiptfootercontent", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_COMMON_MASTERS_ROLES", - "message": "Roles", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_COMMON_MASTERS_ROWSPERPAGEOPTIONS", - "message": "Rowsperpageoptions", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_COMMON_MASTERS_TENANT", - "message": "Tenant", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_COMMON_MASTERS_TENANTS", - "message": "Tenants", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_COMMON_MASTERS_VERIFICATIONDOCUMENT", - "message": "Verificationdocument", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_CRONJOBAPICONFIG_ACTIVE", - "message": "Active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_CRONJOBAPICONFIG_CONTENT_TYPE", - "message": "Content-type", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_CRONJOBAPICONFIG_HEADER", - "message": "Header", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_CRONJOBAPICONFIG_JOBNAME", - "message": "Jobname", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_CRONJOBAPICONFIG_METHOD", - "message": "Method", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_CRONJOBAPICONFIG_PAYLOAD", - "message": "Payload", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_CRONJOBAPICONFIG_REQUESTINFO", - "message": "Requestinfo", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_CRONJOBAPICONFIG_URL", - "message": "Url", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DEPARTMENT_ACTIVE", - "message": "Active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DEPARTMENT_CODE", - "message": "Code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DEPARTMENT_NAME", - "message": "Name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_ACTIVE", - "message": "Active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_CODE", - "message": "Code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_DESCRIPTION", - "message": "Description", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DESIGNATION_NAME", - "message": "Name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DOCUMENTTYPE_ACTIVE", - "message": "Active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DOCUMENTTYPE_ALLOWEDFORMAT", - "message": "Allowedformat", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DOCUMENTTYPE_CODE", - "message": "Code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_DOCUMENTTYPE_MAXFILESIZE", - "message": "Maxfilesize", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_GENDERTYPE_ACTIVE", - "message": "Active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_GENDERTYPE_CODE", - "message": "Code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_IDFORMAT_FORMAT", - "message": "Format", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_IDFORMAT_IDNAME", - "message": "Idname", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_ACTIVE", - "message": "Active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERSHIPCATEGORY_CODE", - "message": "Code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERTYPE_ACTIVE", - "message": "Active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_OWNERTYPE_CODE", - "message": "Code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_STATEINFO_BANNERURL", - "message": "Bannerurl", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_STATEINFO_CITIZEN", - "message": "Citizen", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_STATEINFO_CODE", - "message": "Code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_STATEINFO_DEFAULTURL", - "message": "Defaulturl", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_STATEINFO_EMPLOYEE", - "message": "Employee", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_STATEINFO_HASLOCALISATION", - "message": "Haslocalisation", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_STATEINFO_LABEL", - "message": "Label", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_STATEINFO_LANGUAGES", - "message": "Languages", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_STATEINFO_LOCALIZATIONMODULES", - "message": "Localizationmodules", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_STATEINFO_LOGOURL", - "message": "Logourl", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_STATEINFO_LOGOURLWHITE", - "message": "Logourlwhite", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_STATEINFO_NAME", - "message": "Name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_STATEINFO_QRCODEURL", - "message": "Qrcodeurl", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_STATEINFO_STATELOGO", - "message": "Statelogo", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_STATEINFO_VALUE", - "message": "Value", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_STRUCTURETYPE_ACTIVE", - "message": "Active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_STRUCTURETYPE_CODE", - "message": "Code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_TABLEPAGINATIONOPTIONS_DEFAULTVALUE", - "message": "Defaultvalue", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_TABLEPAGINATIONOPTIONS_ID", - "message": "Id", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_TABLEPAGINATIONOPTIONS_ROWSPERPAGEOPTIONS", - "message": "Rowsperpageoptions", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_UICOMMONPAY_ARREARS", - "message": "Arrears", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_UICOMMONPAY_BILLKEY", - "message": "Billkey", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_UICOMMONPAY_BUTTONS", - "message": "Buttons", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_UICOMMONPAY_CANCELBILL", - "message": "Cancelbill", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_UICOMMONPAY_CANCELRECEIPT", - "message": "Cancelreceipt", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_UICOMMONPAY_CITIZENURL", - "message": "Citizenurl", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_UICOMMONPAY_CODE", - "message": "Code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_UICOMMONPAY_EMPLOYEEURL", - "message": "Employeeurl", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_UICOMMONPAY_HEADERBANDLABEL", - "message": "Headerbandlabel", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_UICOMMONPAY_LABEL", - "message": "Label", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_UICOMMONPAY_PDFMODULE", - "message": "Pdfmodule", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_UICOMMONPAY_RECEIPTKEY", - "message": "Receiptkey", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_UOMCATEGORY_CODE", - "message": "Code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_UOMCATEGORY_DESCRIPTION", - "message": "Description", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_UOMCATEGORY_FROMDATE", - "message": "Fromdate", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_UOMCATEGORY_ID", - "message": "Id", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_UOMCATEGORY_NAME", - "message": "Name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_UOMCATEGORY_TENANTID", - "message": "Tenantid", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_UOMCATEGORY_TODATE", - "message": "Todate", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_UOMCATEGORY_UOMCATEGORY", - "message": "Uomcategory", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_UOM_ACTIVE", - "message": "Active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_UOM_CODE", - "message": "Code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_WFSLACONFIG_ID", - "message": "Id", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_WFSLACONFIG_MIDDLESLABCOLOR", - "message": "Middleslabcolor", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_WFSLACONFIG_NEGATIVESLABCOLOR", - "message": "Negativeslabcolor", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_WFSLACONFIG_POSITIVESLABCOLOR", - "message": "Positiveslabcolor", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "COMMON_MASTERS_WFSLACONFIG_SLOTPERCENTAGE", - "message": "Slotpercentage", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "CONSTRAINTVIOLATIONEXCEPTION", - "message": "Message have unsafe html content", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "CORE_COMMON_SAVE", - "message": "Save", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "CS_ACTION_DISABLE_MASTER", - "message": "Disable", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "CS_ACTION_EDIT_MASTER", - "message": "Edit", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "CS_ACTION_ENABLE_MASTER", - "message": "Enable", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "CS_COMMON_ACTION", - "message": "Action", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "DATASECURITY_DECRYPTIONABAC_ACCESSTYPE", - "message": "accessType", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "DATASECURITY_DECRYPTIONABAC_ATTRIBUTE", - "message": "attribute", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "DATASECURITY_DECRYPTIONABAC_ATTRIBUTEACCESSLIST", - "message": "attributeAccessList", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "DATASECURITY_DECRYPTIONABAC_JSONPATH", - "message": "jsonPath", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "DATASECURITY_DECRYPTIONABAC_KEY", - "message": "key", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "DATASECURITY_DECRYPTIONABAC_MASKINGTECHNIQUE", - "message": "maskingTechnique", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "DATASECURITY_DECRYPTIONABAC_ROLEATTRIBUTEACCESSLIST", - "message": "roleAttributeAccessList", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "DATASECURITY_DECRYPTIONABAC_ROLECODE", - "message": "roleCode", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "DATASECURITY_ENCRYPTIONPOLICY_ATTRIBUTELIST", - "message": "attributeList", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "DATASECURITY_ENCRYPTIONPOLICY_JSONPATH", - "message": "jsonPath", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "DATASECURITY_ENCRYPTIONPOLICY_KEY", - "message": "key", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "DATASECURITY_ENCRYPTIONPOLICY_TYPE", - "message": "type", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "DATASECURITY_MASKINGPATTERNS_PATTERN", - "message": "pattern", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "DATASECURITY_MASKINGPATTERNS_PATTERNID", - "message": "patternId", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "DATASECURITY_SECURITYPOLICY_ATTRIBUTE", - "message": "attribute", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "DATASECURITY_SECURITYPOLICY_ATTRIBUTEACCESSLIST", - "message": "attributeAccessList", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "DATASECURITY_SECURITYPOLICY_ATTRIBUTES", - "message": "attributes", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "DATASECURITY_SECURITYPOLICY_DEFAULTVISIBILITY", - "message": "defaultVisibility", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "DATASECURITY_SECURITYPOLICY_FIRSTLEVELVISIBILITY", - "message": "firstLevelVisibility", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "DATASECURITY_SECURITYPOLICY_JSONPATH", - "message": "jsonPath", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "DATASECURITY_SECURITYPOLICY_MODEL", - "message": "model", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "DATASECURITY_SECURITYPOLICY_NAME", - "message": "name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "DATASECURITY_SECURITYPOLICY_PATTERNID", - "message": "patternId", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "DATASECURITY_SECURITYPOLICY_ROLEBASEDDECRYPTIONPOLICY", - "message": "roleBasedDecryptionPolicy", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "DATASECURITY_SECURITYPOLICY_ROLES", - "message": "roles", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "DATASECURITY_SECURITYPOLICY_SECONDLEVELVISIBILITY", - "message": "secondLevelVisibility", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "DATASECURITY_SECURITYPOLICY_UNIQUEIDENTIFIER", - "message": "uniqueIdentifier", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "DUPLICATE_RECORD", - "message": "Duplicate Record", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "EGF_MASTER_FINANCIALYEAR_ACTIVE", - "message": "Active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "EGF_MASTER_FINANCIALYEAR_CODE", - "message": "Code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "EGF_MASTER_FINANCIALYEAR_ENDINGDATE", - "message": "Endingdate", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "EGF_MASTER_FINANCIALYEAR_FINYEARRANGE", - "message": "Finyearrange", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "EGF_MASTER_FINANCIALYEAR_ISACTIVEFORPOSTING", - "message": "Isactiveforposting", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "EGF_MASTER_FINANCIALYEAR_ISCLOSED", - "message": "Isclosed", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "EGF_MASTER_FINANCIALYEAR_MODULE", - "message": "Module", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "EGF_MASTER_FINANCIALYEAR_NAME", - "message": "Name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "EGF_MASTER_FINANCIALYEAR_STARTINGDATE", - "message": "Startingdate", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "EGF_MASTER_FINANCIALYEAR_TENANTID", - "message": "Tenantid", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "EGF_MASTER_FINANCIALYEAR_TRANSFERCLOSINGBALANCE", - "message": "Transferclosingbalance", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "EGOV_HRMS_DEACTIVATIONREASON_ACTIVE", - "message": "active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "EGOV_HRMS_DEACTIVATIONREASON_CODE", - "message": "code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "EGOV_HRMS_DEGREE_ACTIVE", - "message": "active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "EGOV_HRMS_DEGREE_CODE", - "message": "code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "EGOV_HRMS_EMPLOYEESTATUS_ACTIVE", - "message": "active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "EGOV_HRMS_EMPLOYEESTATUS_CODE", - "message": "code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "EGOV_HRMS_EMPLOYEETYPE_ACTIVE", - "message": "active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "EGOV_HRMS_EMPLOYEETYPE_CODE", - "message": "code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "EGOV_HRMS_EMPLOYMENTTEST_ACTIVE", - "message": "active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "EGOV_HRMS_EMPLOYMENTTEST_CODE", - "message": "code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "EGOV_HRMS_SPECALIZATION_ACTIVE", - "message": "active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "EGOV_HRMS_SPECALIZATION_CODE", - "message": "code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_CLEAR_SEARCH", - "message": "Clear Search", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_ENTER_DATE_RANGE", - "message": "Enter date range", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_NA", - "message": "NA", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "ES_COMMON_SEARCH", - "message": "Search", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_ADVANCEPAYMENT_ACTIVE", - "message": "active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_ADVANCEPAYMENT_ADVANCEAMOUNT", - "message": "advanceAmount", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_ADVANCEPAYMENT_ADVANCEPERCENTAGE", - "message": "advancePercentage", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_ADVANCEPAYMENT_CODE", - "message": "code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_ADVANCEPAYMENT_NAME", - "message": "name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_APPLICATIONCHANNEL_ACTIVE", - "message": "active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_APPLICATIONCHANNEL_CITIZENONLY", - "message": "citizenOnly", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_APPLICATIONCHANNEL_CODE", - "message": "code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_APPLICATIONCHANNEL_NAME", - "message": "name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_APPLICATIONTYPE_ACTIVE", - "message": "active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_APPLICATIONTYPE_CODE", - "message": "code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_APPLICATIONTYPE_NAME", - "message": "name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_CANCELLATIONFEE_ACTIVE", - "message": "active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_CANCELLATIONFEE_CANCELLATIONAMOUNT", - "message": "cancellationAmount", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_CANCELLATIONFEE_CODE", - "message": "code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_CANCELLATIONFEE_NAME", - "message": "name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_CANCELREASON_ACTIVE", - "message": "active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_CANCELREASON_CODE", - "message": "code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_CANCELREASON_NAME", - "message": "name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_CHECKLIST_ACTIVE", - "message": "active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_CHECKLIST_CODE", - "message": "code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_CHECKLIST_OPTIONS", - "message": "options", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_CHECKLIST_REQUIRED", - "message": "required", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_CHECKLIST_TYPE", - "message": "type", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_COMMONFIELDSCONFIG_BODY", - "message": "body", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_COMMONFIELDSCONFIG_CARDTEXT", - "message": "cardText", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_COMMONFIELDSCONFIG_COMPONENT", - "message": "component", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_COMMONFIELDSCONFIG_HEAD", - "message": "head", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_COMMONFIELDSCONFIG_HEADER", - "message": "header", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_COMMONFIELDSCONFIG_HEADERCAPTION", - "message": "headerCaption", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_COMMONFIELDSCONFIG_HIDEINEMPLOYEE", - "message": "hideInEmployee", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_COMMONFIELDSCONFIG_ISMANDATORY", - "message": "isMandatory", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_COMMONFIELDSCONFIG_KEY", - "message": "key", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_COMMONFIELDSCONFIG_LABEL", - "message": "label", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_COMMONFIELDSCONFIG_NEXTSTEP", - "message": "nextStep", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_COMMONFIELDSCONFIG_ROUTE", - "message": "route", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_COMMONFIELDSCONFIG_SKIPLABEL", - "message": "skipLabel", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_COMMONFIELDSCONFIG_SKIPTEXT", - "message": "skipText", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_COMMONFIELDSCONFIG_SUBMITBARLABEL", - "message": "submitBarLabel", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_COMMONFIELDSCONFIG_TEXTS", - "message": "texts", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_COMMONFIELDSCONFIG_TYPE", - "message": "type", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_COMMONFIELDSCONFIG_WITHOUTLABEL", - "message": "withoutLabel", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_CONFIG_ACTIVE", - "message": "active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_CONFIG_CODE", - "message": "code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_CONFIG_DEFAULT", - "message": "default", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_CONFIG_OVERRIDE", - "message": "override", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_CONFIG_OVERRIDEFIELD", - "message": "overrideField", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_CONFIG_WFSTATE", - "message": "WFState", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_DECLINEREASON_ACTIVE", - "message": "active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_DECLINEREASON_CODE", - "message": "code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_DECLINEREASON_NAME", - "message": "name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_DOCUMENTCONFIG_ACTIVE", - "message": "active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_DOCUMENTCONFIG_ALLOWEDFILETYPES", - "message": "allowedFileTypes", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_DOCUMENTCONFIG_BANNERLABEL", - "message": "bannerLabel", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_DOCUMENTCONFIG_CODE", - "message": "code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_DOCUMENTCONFIG_DOCUMENTS", - "message": "documents", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_DOCUMENTCONFIG_ISMANDATORY", - "message": "isMandatory", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_DOCUMENTCONFIG_MAXFILESALLOWED", - "message": "maxFilesAllowed", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_DOCUMENTCONFIG_MAXSIZEINMB", - "message": "maxSizeInMB", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_DOCUMENTCONFIG_MODULE", - "message": "module", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_DOCUMENTCONFIG_NAME", - "message": "name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_DOCUMENTCONFIG_SHOWTEXTINPUT", - "message": "showTextInput", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_FSM_ALLOWEDFILETYPES", - "message": "allowedFileTypes", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_FSM_BODY", - "message": "body", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_FSM_DOCUMENTS", - "message": "documents", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_FSM_OPTIONS", - "message": "options", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_FSM_OVERRIDEFIELD", - "message": "overrideField", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_FSTPPLANTINFO_ACTIVE", - "message": "active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_FSTPPLANTINFO_LATITUDE", - "message": "latitude", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_FSTPPLANTINFO_LONGITUDE", - "message": "longitude", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_FSTPPLANTINFO_PLANTCODE", - "message": "PlantCode", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_FSTPPLANTINFO_PLANTLOCATION", - "message": "PlantLocation", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_FSTPPLANTINFO_PLANTNAME", - "message": "PlantName", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_FSTPPLANTINFO_PLANTOPERATIONALCAPACITYKLD", - "message": "PlantOperationalCapacityKLD", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_FSTPPLANTINFO_PLANTOPERATIONALTIMINGS", - "message": "PlantOperationalTimings", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_FSTPPLANTINFO_PLANTTYPE", - "message": "PlantType", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_FSTPPLANTINFO_PLUSCODE", - "message": "PlusCode", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_FSTPPLANTINFO_ULBS", - "message": "ULBS", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_PAYMENTTYPE_ACTIVE", - "message": "active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_PAYMENTTYPE_CODE", - "message": "code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_PAYMENTTYPE_NAME", - "message": "name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_PERIODICSERVICE_ISSCHEDULARCONFIGURATION", - "message": "isSchedularConfiguration", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_PERIODICSERVICE_TIMELIMIT", - "message": "timeLimit", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_PITTYPE_ACTIVE", - "message": "active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_PITTYPE_CODE", - "message": "code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_PITTYPE_DIMENSION", - "message": "dimension", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_PITTYPE_NAME", - "message": "name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_POSTFIELDSCONFIG_BODY", - "message": "body", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_POSTFIELDSCONFIG_COMPONENT", - "message": "component", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_POSTFIELDSCONFIG_HEAD", - "message": "head", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_POSTFIELDSCONFIG_KEY", - "message": "key", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_POSTFIELDSCONFIG_TYPE", - "message": "type", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_POSTFIELDSCONFIG_WITHOUTLABEL", - "message": "withoutLabel", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_PREFIELDSCONFIG_BODY", - "message": "body", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_PREFIELDSCONFIG_COMPONENT", - "message": "component", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_PREFIELDSCONFIG_HEAD", - "message": "head", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_PREFIELDSCONFIG_ISMANDATORY", - "message": "isMandatory", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_PREFIELDSCONFIG_KEY", - "message": "key", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_PREFIELDSCONFIG_LABEL", - "message": "label", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_PREFIELDSCONFIG_NEXTSTEP", - "message": "nextStep", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_PREFIELDSCONFIG_TYPE", - "message": "type", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_PREFIELDSCONFIG_WITHOUTLABEL", - "message": "withoutLabel", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_PROPERTYTYPE_ACTIVE", - "message": "active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_PROPERTYTYPE_CODE", - "message": "code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_PROPERTYTYPE_MAXAMOUNT", - "message": "maxAmount", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_PROPERTYTYPE_MINAMOUNT", - "message": "minAmount", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_PROPERTYTYPE_NAME", - "message": "name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_PROPERTYTYPE_PROPERTYTYPE", - "message": "propertyType", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_REASSIGNREASON_ACTIVE", - "message": "active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_REASSIGNREASON_CODE", - "message": "code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_REASSIGNREASON_NAME", - "message": "name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_RECEIVEDPAYMENTTYPE_ACTIVE", - "message": "active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_RECEIVEDPAYMENTTYPE_CODE", - "message": "code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_RECEIVEDPAYMENTTYPE_NAME", - "message": "name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_REJECTIONREASON_ACTIVE", - "message": "active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_REJECTIONREASON_CODE", - "message": "code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_REJECTIONREASON_NAME", - "message": "name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_SANITATIONTYPE_ACTIVE", - "message": "active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_SANITATIONTYPE_CODE", - "message": "code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_SANITATIONTYPE_NAME", - "message": "name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_SANITATIONWORKEREMPLOYER_ACTIVE", - "message": "active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_SANITATIONWORKEREMPLOYER_CODE", - "message": "code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_SANITATIONWORKEREMPLOYER_ID", - "message": "id", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_SANITATIONWORKEREMPLOYER_NAME", - "message": "name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_SANITATIONWORKEREMPLOYMENTTYPE_ACTIVE", - "message": "active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_SANITATIONWORKEREMPLOYMENTTYPE_CODE", - "message": "code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_SANITATIONWORKEREMPLOYMENTTYPE_ID", - "message": "id", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_SANITATIONWORKEREMPLOYMENTTYPE_NAME", - "message": "name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_SANITATIONWORKERFUNCTIONALROLES_ACTIVE", - "message": "active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_SANITATIONWORKERFUNCTIONALROLES_CODE", - "message": "code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_SANITATIONWORKERFUNCTIONALROLES_ID", - "message": "id", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_SANITATIONWORKERFUNCTIONALROLES_NAME", - "message": "name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_SANITATIONWORKERSKILLS_ACTIVE", - "message": "active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_SANITATIONWORKERSKILLS_CODE", - "message": "code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_SANITATIONWORKERSKILLS_ID", - "message": "id", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_SANITATIONWORKERSKILLS_NAME", - "message": "name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_SLUM_ACTIVE", - "message": "active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_SLUM_CODE", - "message": "code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_SLUM_LOCALITY", - "message": "locality", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_SLUM_NAME", - "message": "name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_TRIPNUMBER_ACTIVE", - "message": "active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_TRIPNUMBER_CODE", - "message": "code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_TRIPNUMBER_I18NKEY", - "message": "i18nKey", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_TRIPNUMBER_NAME", - "message": "name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_URCCONFIG_CODE", - "message": "code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_URCCONFIG_URCENABLE", - "message": "URCEnable", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_URCCONFIG_VILLAGEHIERARCHYAVAILABLE", - "message": "villageHierarchyAvailable", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_VEHICLETRACKING_VEHICLETRACKINGSTATUS", - "message": "vehicleTrackingStatus", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_VEHICLETYPE_ACTIVE", - "message": "active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_VEHICLETYPE_AMOUNT", - "message": "amount", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_VEHICLETYPE_CAPACITY", - "message": "capacity", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_VEHICLETYPE_CODE", - "message": "code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_VEHICLETYPE_MAKE", - "message": "make", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_VEHICLETYPE_NAME", - "message": "name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "FSM_ZEROPRICING_ZEROPRICINGSTATUS", - "message": "zeroPricingStatus", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "INBOX_INBOXQUERYCONFIGURATION_ALLOWEDSEARCHCRITERIA", - "message": "allowedSearchCriteria", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "INBOX_INBOXQUERYCONFIGURATION_DEFAULTORDER", - "message": "defaultOrder", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "INBOX_INBOXQUERYCONFIGURATION_INDEX", - "message": "index", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "INBOX_INBOXQUERYCONFIGURATION_ISHASHINGREQUIRED", - "message": "isHashingRequired", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "INBOX_INBOXQUERYCONFIGURATION_ISMANDATORY", - "message": "isMandatory", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "INBOX_INBOXQUERYCONFIGURATION_MODULE", - "message": "module", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "INBOX_INBOXQUERYCONFIGURATION_NAME", - "message": "name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "INBOX_INBOXQUERYCONFIGURATION_OPERATOR", - "message": "operator", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "INBOX_INBOXQUERYCONFIGURATION_PATH", - "message": "path", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "INBOX_INBOXQUERYCONFIGURATION_SORTBY", - "message": "sortBy", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "INBOX_INBOXQUERYCONFIGURATION_SOURCEFILTERPATHLIST", - "message": "sourceFilterPathList", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "LOCALISATION_ADD", - "message": "Add Localisation", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "LOCALISATION_SEARCH", - "message": "Manage Localisation", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "MANAGE_MASTER_DATA", - "message": "Manage Master data", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "MDMS_ADD_V2", - "message": "Add Master Data", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "MDMS_EDIT", - "message": "Edit Master Data", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "MDMS_SEARCH_V2", - "message": "Search Master Data", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "MDMS_VIEW", - "message": "View Master Data", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "P G R. Service Defs", - "message": "CCRS Service Defs", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_BENCHMARKRULE_CODE", - "message": "code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_BENCHMARKRULE_NAME", - "message": "name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_MATERIAL_CODE", - "message": "code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_MATERIAL_NAME", - "message": "name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_PARAMETER_CODE", - "message": "code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_PARAMETER_DESCRIPTION", - "message": "description", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_PARAMETER_NAME", - "message": "name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_PLANTCONFIG_CODE", - "message": "code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_PLANTCONFIG_MANUALTESTPENDINGESCALATIONDAYS", - "message": "manualTestPendingEscalationDays", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_PLANTCONFIG_PENDINGTESTSTODISPLAYWITHINDAYS", - "message": "pendingTestsToDisplayWithinDays", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_PLANTTYPE_CODE", - "message": "code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_PLANTTYPE_DESCRIPTION", - "message": "description", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_PLANTTYPE_NAME", - "message": "name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_PLANT_ACTIVE", - "message": "active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_PLANT_CODE", - "message": "code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_PLANT_DESCRIPTION", - "message": "description", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_PLANT_LATITUDE", - "message": "latitude", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_PLANT_LONGITUDE", - "message": "longitude", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_PLANT_NAME", - "message": "name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_PLANT_PLANTCONFIG", - "message": "plantConfig", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_PLANT_PLANTLOCATION", - "message": "PlantLocation", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_PLANT_PLANTOPERATIONALCAPACITYKLD", - "message": "PlantOperationalCapacityKLD", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_PLANT_PLANTOPERATIONALTIMINGS", - "message": "PlantOperationalTimings", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_PLANT_PLANTTYPE", - "message": "plantType", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_PLANT_PLUSCODE", - "message": "PlusCode", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_PLANT_PROCESSES", - "message": "processes", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_PLANT_ULBS", - "message": "ULBS", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_PLANT_WASTETYPE", - "message": "wasteType", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_PQM_BENCHMARKVALUES", - "message": "benchmarkValues", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_PQM_INPUT", - "message": "input", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_PQM_OUTPUT", - "message": "output", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_PQM_PROCESSES", - "message": "processes", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_PQM_QUALITYCRITERIA", - "message": "qualityCriteria", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_PQM_STAGES", - "message": "stages", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_PQM_WASTETYPE", - "message": "wasteType", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_PROCESSTYPE_CODE", - "message": "code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_PROCESSTYPE_NAME", - "message": "name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_PROCESS_CODE", - "message": "code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_PROCESS_DESCRIPTION", - "message": "description", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_PROCESS_NAME", - "message": "name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_PROCESS_ORDER", - "message": "order", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_PROCESS_STAGECODE", - "message": "stageCode", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_PROCESS_STAGES", - "message": "stages", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_PROCESS_TYPE", - "message": "type", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_PROCESS_WASTETYPE", - "message": "wasteType", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_QUALITYCRITERIA_ALLOWEDDEVIATION", - "message": "allowedDeviation", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_QUALITYCRITERIA_BENCHMARKRULE", - "message": "benchmarkRule", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_QUALITYCRITERIA_BENCHMARKVALUES", - "message": "benchmarkValues", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_QUALITYCRITERIA_CODE", - "message": "code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_QUALITYCRITERIA_PARAMETER", - "message": "parameter", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_QUALITYCRITERIA_UNIT", - "message": "unit", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_QUALITYTESTLAB_CODE", - "message": "code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_QUALITYTESTLAB_NAME", - "message": "name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_SOURCETYPE_CODE", - "message": "code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_SOURCETYPE_DESCRIPTION", - "message": "description", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_SOURCETYPE_NAME", - "message": "name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_STAGE_CODE", - "message": "code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_STAGE_DESCRIPTION", - "message": "description", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_STAGE_INPUT", - "message": "input", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_STAGE_NAME", - "message": "name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_STAGE_OUTPUT", - "message": "output", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_TESTSTANDARD_CODE", - "message": "code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_TESTSTANDARD_FREQUENCY", - "message": "frequency", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_TESTSTANDARD_MATERIAL", - "message": "material", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_TESTSTANDARD_PLANT", - "message": "plant", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_TESTSTANDARD_PROCESS", - "message": "process", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_TESTSTANDARD_QUALITYCRITERIA", - "message": "qualityCriteria", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_TESTSTANDARD_SOURCETYPE", - "message": "sourceType", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_TESTSTANDARD_STAGE", - "message": "stage", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_UNIT_CODE", - "message": "code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_UNIT_NAME", - "message": "name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_WASTETYPE_CODE", - "message": "code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PQM_WASTETYPE_NAME", - "message": "name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_CANCERCESS_FLATAMOUNT", - "message": "Flatamount", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_CANCERCESS_FROMFY", - "message": "Fromfy", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_CANCERCESS_MAXAMOUNT", - "message": "Maxamount", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_CANCERCESS_MINAMOUNT", - "message": "Minamount", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_CANCERCESS_RATE", - "message": "Rate", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_CHARGESLABS_ACTIVE", - "message": "Active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_CHARGESLABS_CODE", - "message": "Code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_CHARGESLABS_FLOORNO", - "message": "Floorno", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_CHARGESLABS_NAME", - "message": "Name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_COMMONFIELDSCONFIG_BODY", - "message": "Body", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_COMMONFIELDSCONFIG_CARDTEXT", - "message": "Cardtext", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_COMMONFIELDSCONFIG_COMPONENT", - "message": "Component", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_COMMONFIELDSCONFIG_HEAD", - "message": "Head", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_COMMONFIELDSCONFIG_HEADER", - "message": "Header", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_COMMONFIELDSCONFIG_HEADERCAPTION", - "message": "Headercaption", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_COMMONFIELDSCONFIG_HIDEINEMPLOYEE", - "message": "Hideinemployee", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_COMMONFIELDSCONFIG_ISMANDATORY", - "message": "Ismandatory", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_COMMONFIELDSCONFIG_KEY", - "message": "Key", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_COMMONFIELDSCONFIG_NEXTSTEP", - "message": "Nextstep", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_COMMONFIELDSCONFIG_NEXTTEXT", - "message": "Nexttext", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_COMMONFIELDSCONFIG_ROUTE", - "message": "Route", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_COMMONFIELDSCONFIG_SKIPANDCONTINUETEXT", - "message": "Skipandcontinuetext", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_COMMONFIELDSCONFIG_SKIPTEXT", - "message": "Skiptext", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_COMMONFIELDSCONFIG_SUBMITBARLABEL", - "message": "Submitbarlabel", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_COMMONFIELDSCONFIG_TEXTS", - "message": "Texts", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_COMMONFIELDSCONFIG_TYPE", - "message": "Type", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_COMMONFIELDSCONFIG_WITHOUTLABEL", - "message": "Withoutlabel", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_CONSTRUCTIONSUBTYPE_ACTIVE", - "message": "Active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_CONSTRUCTIONSUBTYPE_CODE", - "message": "Code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_CONSTRUCTIONSUBTYPE_ID", - "message": "Id", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_CONSTRUCTIONSUBTYPE_NAME", - "message": "Name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_CONSTRUCTIONTYPE_ACTIVE", - "message": "Active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_CONSTRUCTIONTYPE_CODE", - "message": "Code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_CONSTRUCTIONTYPE_ID", - "message": "Id", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_CONSTRUCTIONTYPE_NAME", - "message": "Name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_DOCUMENTS_ACTIVE", - "message": "Active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_DOCUMENTS_ADDITIONALDETAILS", - "message": "Additionaldetails", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_DOCUMENTS_ASSESS", - "message": "Assess", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_DOCUMENTS_CODE", - "message": "Code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_DOCUMENTS_CREATE", - "message": "Create", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_DOCUMENTS_DESCRIPTION", - "message": "Description", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_DOCUMENTS_DIGIT_CITIZEN", - "message": "Digit-citizen", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_DOCUMENTS_DISABLEDROPDOWN", - "message": "Disabledropdown", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_DOCUMENTS_DISABLEUPLOAD", - "message": "Disableupload", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_DOCUMENTS_DOCUMENTTYPE", - "message": "Documenttype", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_DOCUMENTS_DROPDOWNDATA", - "message": "Dropdowndata", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_DOCUMENTS_ENABLEDACTIONS", - "message": "Enabledactions", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_DOCUMENTS_HASDROPDOWN", - "message": "Hasdropdown", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_DOCUMENTS_REASSESS", - "message": "Reassess", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_DOCUMENTS_REQUIRED", - "message": "Required", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_DOCUMENTS_UPDATE", - "message": "Update", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_DUESONPTMUTATION_CODE", - "message": "Code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_DUESONPTMUTATION_ENABLED", - "message": "Enabled", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_DUESONPTMUTATION_FECTHBILLURL", - "message": "Fecthbillurl", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_DUESONPTMUTATION_FETCHCONSUMERURL", - "message": "Fetchconsumerurl", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_DUESONPTMUTATION_MODULE", - "message": "Module", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_FIRECESS_DYNAMICFIRECESS", - "message": "Dynamicfirecess", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_FIRECESS_DYNAMICRATES", - "message": "Dynamicrates", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_FIRECESS_FIRECESS_BUILDING_HEIGHT", - "message": "Firecess_building_height", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_FIRECESS_FIRECESS_CATEGORY_MAJOR", - "message": "Firecess_category_major", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_FIRECESS_FIRECESS_INFLAMMABLE", - "message": "Firecess_inflammable", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_FIRECESS_FLATAMOUNT", - "message": "Flatamount", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_FIRECESS_FROMFY", - "message": "Fromfy", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_FIRECESS_MAXAMOUNT", - "message": "Maxamount", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_FIRECESS_MINAMOUNT", - "message": "Minamount", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_FIRECESS_RATE", - "message": "Rate", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_FLOOR_ACTIVE", - "message": "Active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_FLOOR_CODE", - "message": "Code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_FLOOR_DESCRIPTION", - "message": "Description", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_FLOOR_NAME", - "message": "Name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_INTEREST_FLATAMOUNT", - "message": "Flatamount", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_INTEREST_FROMFY", - "message": "Fromfy", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_INTEREST_MAXAMOUNT", - "message": "Maxamount", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_INTEREST_MINAMOUNT", - "message": "Minamount", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_INTEREST_RATE", - "message": "Rate", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_INTEREST_STARTINGDAY", - "message": "Startingday", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_MAPCONFIG_DEFAULTCONFIG", - "message": "Defaultconfig", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_MAPCONFIG_LAT", - "message": "Lat", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_MAPCONFIG_LNG", - "message": "Lng", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_MUTATIONDOCUMENTS_ACTIVE", - "message": "Active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_MUTATIONDOCUMENTS_CODE", - "message": "Code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_MUTATIONDOCUMENTS_DESCRIPTION", - "message": "Description", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_MUTATIONDOCUMENTS_DOCUMENTTYPE", - "message": "Documenttype", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_MUTATIONDOCUMENTS_DROPDOWNDATA", - "message": "Dropdowndata", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_MUTATIONDOCUMENTS_HASDROPDOWN", - "message": "Hasdropdown", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_MUTATIONDOCUMENTS_REQUIRED", - "message": "Required", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_MUTATIONPENALTY_FLATAMOUNT", - "message": "Flatamount", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_MUTATIONPENALTY_FROMFY", - "message": "Fromfy", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_MUTATIONPENALTY_MINAMOUNT", - "message": "Minamount", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_MUTATIONPENALTY_MUTATIONPAYMENTPERIODINMONTH", - "message": "Mutationpaymentperiodinmonth", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_MUTATIONPENALTY_RATE", - "message": "Rate", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_MUTATIONPENALTY_STARTINGDAY", - "message": "Startingday", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_MUTATIONREASON_ACTIVE", - "message": "Active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_MUTATIONREASON_CODE", - "message": "Code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_MUTATIONREBATE_ENDINGDAY", - "message": "Endingday", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_MUTATIONREBATE_FLATAMOUNT", - "message": "Flatamount", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_MUTATIONREBATE_FROMFY", - "message": "Fromfy", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_MUTATIONREBATE_MAXAMOUNT", - "message": "Maxamount", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_MUTATIONREBATE_MUTATIONPAYMENTPERIODINMONTH", - "message": "Mutationpaymentperiodinmonth", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_MUTATIONREBATE_RATE", - "message": "Rate", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_OCCUPANCYTYPE_ACTIVE", - "message": "Active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_OCCUPANCYTYPE_CODE", - "message": "Code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_OCCUPANCYTYPE_NAME", - "message": "Name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_OWNERSHIPCATEGORY_ACTIVE", - "message": "Active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_OWNERSHIPCATEGORY_CODE", - "message": "Code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_OWNERSHIPCATEGORY_NAME", - "message": "Name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_OWNERTYPEDOCUMENT_ACTIVE", - "message": "Active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_OWNERTYPEDOCUMENT_CODE", - "message": "Code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_OWNERTYPEDOCUMENT_NAME", - "message": "Name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_OWNERTYPEDOCUMENT_OWNERTYPECODE", - "message": "Ownertypecode", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_OWNERTYPE_ACTIVE", - "message": "Active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_OWNERTYPE_CODE", - "message": "Code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_OWNERTYPE_EXEMPTION", - "message": "Exemption", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_OWNERTYPE_FLATAMOUNT", - "message": "Flatamount", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_OWNERTYPE_FROMFY", - "message": "Fromfy", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_OWNERTYPE_MAXAMOUNT", - "message": "Maxamount", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_OWNERTYPE_NAME", - "message": "Name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_OWNERTYPE_RATE", - "message": "Rate", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_PENALTY_FLATAMOUNT", - "message": "Flatamount", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_PENALTY_FROMFY", - "message": "Fromfy", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_PENALTY_MINAMOUNT", - "message": "Minamount", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_PENALTY_RATE", - "message": "Rate", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_PENALTY_STARTINGDAY", - "message": "Startingday", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_PROPERTYCONFIGURATION_ID", - "message": "Id", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_PROPERTYCONFIGURATION_MUTATION", - "message": "Mutation", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_PROPERTYCONFIGURATION_MUTATIONDETAILS", - "message": "Mutationdetails", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_PROPERTYCONFIGURATION_REGISTRATIONDETAILS", - "message": "Registrationdetails", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_PROPERTYSUBTYPE_ACTIVE", - "message": "Active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_PROPERTYSUBTYPE_CODE", - "message": "Code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_PROPERTYSUBTYPE_NAME", - "message": "Name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_PROPERTYSUBTYPE_PROPERTYTYPE", - "message": "Propertytype", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_PROPERTYTYPE_ACTIVE", - "message": "Active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_PROPERTYTYPE_CODE", - "message": "Code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_PROPERTYTYPE_NAME", - "message": "Name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_PROPERTYTYPE_PROPERTYTYPE", - "message": "Propertytype", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_PTAPPLICATION_ACTION", - "message": "Action", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_PTAPPLICATION_BUSINESSSERVICE", - "message": "Businessservice", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_PTAPPLICATION_CREATIONREASON", - "message": "Creationreason", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_PTAPPLICATION_EDITACTION", - "message": "Editaction", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_PTWORKFLOW_BUSINESSSERVICE", - "message": "Businessservice", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_PTWORKFLOW_ENABLE", - "message": "Enable", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_PTWORKFLOW_INITIALACTION", - "message": "Initialaction", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_PTWORKFLOW_INWORKFLOWSTATUSALLOWED", - "message": "Inworkflowstatusallowed", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_REASONFORTRANSFER_ACTIVE", - "message": "Active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_REASONFORTRANSFER_CODE", - "message": "Code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_REASONFORTRANSFER_NAME", - "message": "Name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_REBATE_ENDINGDAY", - "message": "Endingday", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_REBATE_FLATAMOUNT", - "message": "Flatamount", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_REBATE_FROMFY", - "message": "Fromfy", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_REBATE_MAXAMOUNT", - "message": "Maxamount", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_REBATE_RATE", - "message": "Rate", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_RENTALDETAILS_ACTIVE", - "message": "Active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_RENTALDETAILS_CODE", - "message": "Code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_RENTALDETAILS_NAME", - "message": "Name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_SUBOWNERSHIPCATEGORY_ACTIVE", - "message": "Active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_SUBOWNERSHIPCATEGORY_CODE", - "message": "Code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_SUBOWNERSHIPCATEGORY_NAME", - "message": "Name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_SUBOWNERSHIPCATEGORY_OWNERSHIPCATEGORY", - "message": "Ownershipcategory", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_UPDATENUMBER_ACCEPT", - "message": "Accept", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_UPDATENUMBER_ACTIVE", - "message": "Active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_UPDATENUMBER_CODE", - "message": "Code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_UPDATENUMBER_DESCRIPTION", - "message": "Description", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_UPDATENUMBER_DOCUMENTS", - "message": "Documents", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_UPDATENUMBER_DOCUMENTTYPE", - "message": "Documenttype", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_UPDATENUMBER_DROPDOWNDATA", - "message": "Dropdowndata", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_UPDATENUMBER_HASDROPDOWN", - "message": "Hasdropdown", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_UPDATENUMBER_INPUTPROPS", - "message": "Inputprops", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_UPDATENUMBER_INVALIDNUMBER", - "message": "Invalidnumber", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_UPDATENUMBER_INVALIDPATTERN", - "message": "Invalidpattern", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_UPDATENUMBER_MAXFILESIZE", - "message": "Maxfilesize", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_UPDATENUMBER_REQUIRED", - "message": "Required", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_UPDATENUMBER_SKIPENABLED", - "message": "Skipenabled", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_UPDATENUMBER_WARNINGENABLED", - "message": "Warningenabled", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_USAGECATEGORYDETAIL_ACTIVE", - "message": "Active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_USAGECATEGORYDETAIL_CODE", - "message": "Code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_USAGECATEGORYDETAIL_EXEMPTION", - "message": "Exemption", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_USAGECATEGORYDETAIL_FLATAMOUNT", - "message": "Flatamount", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_USAGECATEGORYDETAIL_FROMFY", - "message": "Fromfy", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_USAGECATEGORYDETAIL_MAXAMOUNT", - "message": "Maxamount", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_USAGECATEGORYDETAIL_NAME", - "message": "Name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_USAGECATEGORYDETAIL_RATE", - "message": "Rate", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_USAGECATEGORYDETAIL_USAGECATEGORYSUBMINOR", - "message": "Usagecategorysubminor", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_USAGECATEGORYMAJOR_ACTIVE", - "message": "Active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_USAGECATEGORYMAJOR_CODE", - "message": "Code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_USAGECATEGORYMAJOR_FROMFY", - "message": "Fromfy", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_USAGECATEGORYMAJOR_NAME", - "message": "Name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_USAGECATEGORYMINOR_ACTIVE", - "message": "Active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_USAGECATEGORYMINOR_CODE", - "message": "Code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_USAGECATEGORYMINOR_EXEMPTION", - "message": "Exemption", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_USAGECATEGORYMINOR_FLATAMOUNT", - "message": "Flatamount", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_USAGECATEGORYMINOR_FROMFY", - "message": "Fromfy", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_USAGECATEGORYMINOR_MAXAMOUNT", - "message": "Maxamount", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_USAGECATEGORYMINOR_NAME", - "message": "Name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_USAGECATEGORYMINOR_RATE", - "message": "Rate", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_USAGECATEGORYMINOR_USAGECATEGORYMAJOR", - "message": "Usagecategorymajor", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_USAGECATEGORYSUBMINOR_ACTIVE", - "message": "Active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_USAGECATEGORYSUBMINOR_CODE", - "message": "Code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_USAGECATEGORYSUBMINOR_EXEMPTION", - "message": "Exemption", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_USAGECATEGORYSUBMINOR_FLATAMOUNT", - "message": "Flatamount", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_USAGECATEGORYSUBMINOR_FROMFY", - "message": "Fromfy", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_USAGECATEGORYSUBMINOR_MAXAMOUNT", - "message": "Maxamount", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_USAGECATEGORYSUBMINOR_NAME", - "message": "Name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_USAGECATEGORYSUBMINOR_RATE", - "message": "Rate", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_USAGECATEGORYSUBMINOR_USAGECATEGORYMINOR", - "message": "Usagecategoryminor", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_USAGECATEGORY_ACTIVE", - "message": "Active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_USAGECATEGORY_CODE", - "message": "Code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_USAGECATEGORY_EXEMPTION", - "message": "Exemption", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_USAGECATEGORY_FLATAMOUNT", - "message": "Flatamount", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_USAGECATEGORY_FROMFY", - "message": "Fromfy", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_USAGECATEGORY_MAXAMOUNT", - "message": "Maxamount", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_USAGECATEGORY_NAME", - "message": "Name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "PROPERTYTAX_USAGECATEGORY_RATE", - "message": "Rate", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "RAINMAKER_PGR_COMPLAINCLOSINGTIME_COMPLAINMAXIDLETIME", - "message": "Complainmaxidletime", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "RAINMAKER_PGR_PRIORITYLEVEL_ACTIVE", - "message": "Active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "RAINMAKER_PGR_PRIORITYLEVEL_CODE", - "message": "Code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "RAINMAKER_PGR_PRIORITYLEVEL_NAME", - "message": "Name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "RAINMAKER_PGR_SERVICEDEFS_ACTIVE", - "message": "Active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "RAINMAKER_PGR_SERVICEDEFS_DEPARTMENT", - "message": "Department", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "RAINMAKER_PGR_SERVICEDEFS_KEYWORDS", - "message": "Keywords", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "RAINMAKER_PGR_SERVICEDEFS_MENUPATH", - "message": "Menupath", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "RAINMAKER_PGR_SERVICEDEFS_MENUPATHNAME", - "message": "Menu Path Name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "RAINMAKER_PGR_SERVICEDEFS_NAME", - "message": "Name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "RAINMAKER_PGR_SERVICEDEFS_ORDER", - "message": "Order", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "RAINMAKER_PGR_SERVICEDEFS_SERVICECODE", - "message": "Servicecode", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "RAINMAKER_PGR_SERVICEDEFS_SLAHOURS", - "message": "Slahours", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "RAINMAKER_PGR_UICONSTANTS_REOPENSLA", - "message": "Reopensla", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_ACCESSCONTROL_ACTIONS_TEST_ACTIONS_TEST", - "message": "actions-test", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_ACCESSCONTROL_ROLEACTIONS_ROLEACTIONS", - "message": "roleactions", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_ACCESSCONTROL_ROLEACTION_ACCESSCONTROL_ROLEACTIONS", - "message": "Accesscontrol-roleactions", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_ACCESSCONTROL_ROLES_ROLES", - "message": "roles", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_BILLINGSERVICE_BUSINESSSERVICE", - "message": "Businessservice", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_BILLINGSERVICE_TAXHEADMASTER", - "message": "Taxheadmaster", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_BILLINGSERVICE_TAXPERIOD", - "message": "Taxperiod", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_COMMON_MASTERS_BDTEMPLATE", - "message": "Bdtemplate", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_COMMON_MASTERS_CANCELCURRENTBILLREASONS", - "message": "Cancelcurrentbillreasons", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_COMMON_MASTERS_CANCELRECEIPTREASON", - "message": "Cancelreceiptreason", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_COMMON_MASTERS_CENSUSYEAR", - "message": "Censusyear", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_COMMON_MASTERS_CITIZENCONSENTFORM", - "message": "Citizenconsentform", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_COMMON_MASTERS_COMMONINBOXCONFIG", - "message": "Commoninboxconfig", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_COMMON_MASTERS_CRONJOBAPICONFIG", - "message": "Cronjobapiconfig", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_COMMON_MASTERS_DEPARTMENT", - "message": "Department", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_COMMON_MASTERS_DESIGNATION", - "message": "Designation", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_COMMON_MASTERS_DOCUMENTTYPE", - "message": "Documenttype", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_COMMON_MASTERS_GENDERTYPE", - "message": "Gendertype", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_COMMON_MASTERS_IDFORMAT", - "message": "Idformat", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_COMMON_MASTERS_OWNERSHIPCATEGORY", - "message": "Ownershipcategory", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_COMMON_MASTERS_OWNERTYPE", - "message": "Ownertype", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_COMMON_MASTERS_STATEINFO", - "message": "Stateinfo", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_COMMON_MASTERS_STRUCTURETYPE", - "message": "Structuretype", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_COMMON_MASTERS_TABLEPAGINATIONOPTIONS", - "message": "Tablepaginationoptions", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_COMMON_MASTERS_UICOMMONPAY", - "message": "Uicommonpay", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_COMMON_MASTERS_UOM", - "message": "Uom", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_COMMON_MASTERS_UOMCATEGORY", - "message": "Uomcategory", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_COMMON_MASTERS_WFSLACONFIG", - "message": "Wfslaconfig", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_DATASECURITY_DECRYPTIONABAC", - "message": "DecryptionABAC", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_DATASECURITY_ENCRYPTIONPOLICY", - "message": "EncryptionPolicy", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_DATASECURITY_MASKINGPATTERNS", - "message": "MaskingPatterns", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_DATASECURITY_SECURITYPOLICY", - "message": "SecurityPolicy", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_DATASECURIT_DATASECURITY", - "message": "Datasecurity", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_EGF_MASTER_FINANCIALYEAR", - "message": "Financialyear", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_EGOV_HRMS_DEACTIVATIONREASON", - "message": "DeactivationReason", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_EGOV_HRMS_DEGREE", - "message": "Degree", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_EGOV_HRMS_EMPLOYEESTATUS", - "message": "EmployeeStatus", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_EGOV_HRMS_EMPLOYEETYPE", - "message": "EmployeeType", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_EGOV_HRMS_EMPLOYMENTTEST", - "message": "EmploymentTest", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_EGOV_HRMS_SPECALIZATION", - "message": "Specalization", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_EGOV_HRM_EGOV_HRMS", - "message": "Egov-hrms", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_FSM_ADVANCEPAYMENT", - "message": "AdvancePayment", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_FSM_APPLICATIONCHANNEL", - "message": "ApplicationChannel", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_FSM_APPLICATIONTYPE", - "message": "ApplicationType", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_FSM_CANCELLATIONFEE", - "message": "CancellationFee", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_FSM_CANCELREASON", - "message": "CancelReason", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_FSM_CHECKLIST", - "message": "CheckList", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_FSM_COMMONFIELDSCONFIG", - "message": "CommonFieldsConfig", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_FSM_CONFIG", - "message": "Config", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_FSM_DECLINEREASON", - "message": "DeclineReason", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_FSM_DOCUMENTCONFIG", - "message": "DocumentConfig", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_FSM_FSTPPLANTINFO", - "message": "FSTPPlantInfo", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_FSM_PAYMENTTYPE", - "message": "PaymentType", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_FSM_PERIODICSERVICE", - "message": "PeriodicService", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_FSM_PITTYPE", - "message": "PitType", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_FSM_POSTFIELDSCONFIG", - "message": "PostFieldsConfig", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_FSM_PREFIELDSCONFIG", - "message": "PreFieldsConfig", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_FSM_PROPERTYTYPE", - "message": "PropertyType", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_FSM_REASSIGNREASON", - "message": "ReassignReason", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_FSM_RECEIVEDPAYMENTTYPE", - "message": "ReceivedPaymentType", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_FSM_REJECTIONREASON", - "message": "RejectionReason", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_FSM_SANITATIONTYPE", - "message": "SanitationType", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_FSM_SANITATIONWORKEREMPLOYER", - "message": "SanitationWorkerEmployer", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_FSM_SANITATIONWORKEREMPLOYMENTTYPE", - "message": "SanitationWorkerEmploymentType", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_FSM_SANITATIONWORKERFUNCTIONALROLES", - "message": "SanitationWorkerFunctionalRoles", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_FSM_SANITATIONWORKERSKILLS", - "message": "SanitationWorkerSkills", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_FSM_SLUM", - "message": "Slum", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_FSM_TRIPNUMBER", - "message": "TripNumber", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_FSM_URCCONFIG", - "message": "UrcConfig", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_FSM_VEHICLETRACKING", - "message": "VehicleTracking", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_FSM_VEHICLETYPE", - "message": "VehicleType", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_FSM_ZEROPRICING", - "message": "ZeroPricing", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_INBOX_INBOXQUERYCONFIGURATION", - "message": "InboxQueryConfiguration", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_INBOX_V_INBOX_V2", - "message": "Inbox-v2", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_PQM_BENCHMARKRULE", - "message": "BenchmarkRule", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_PQM_MATERIAL", - "message": "Material", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_PQM_PARAMETER", - "message": "Parameter", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_PQM_PLANT", - "message": "Plant", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_PQM_PLANTCONFIG", - "message": "PlantConfig", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_PQM_PLANTTYPE", - "message": "PlantType", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_PQM_PROCESS", - "message": "Process", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_PQM_PROCESSTYPE", - "message": "ProcessType", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_PQM_QUALITYCRITERIA", - "message": "QualityCriteria", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_PQM_QUALITYTESTLAB", - "message": "QualityTestLab", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_PQM_SOURCETYPE", - "message": "SourceType", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_PQM_STAGE", - "message": "Stage", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_PQM_TESTSTANDARD", - "message": "TestStandard", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_PQM_UNIT", - "message": "Unit", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_PQM_WASTETYPE", - "message": "WasteType", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_PROPERTYTAX_CANCERCESS", - "message": "Cancercess", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_PROPERTYTAX_CHARGESLABS", - "message": "Chargeslabs", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_PROPERTYTAX_COMMONFIELDSCONFIG", - "message": "Commonfieldsconfig", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_PROPERTYTAX_CONSTRUCTIONSUBTYPE", - "message": "Constructionsubtype", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_PROPERTYTAX_CONSTRUCTIONTYPE", - "message": "Constructiontype", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_PROPERTYTAX_DOCUMENTS", - "message": "Documents", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_PROPERTYTAX_DUESONPTMUTATION", - "message": "Duesonptmutation", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_PROPERTYTAX_FIRECESS", - "message": "Firecess", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_PROPERTYTAX_FLOOR", - "message": "Floor", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_PROPERTYTAX_INTEREST", - "message": "Interest", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_PROPERTYTAX_MAPCONFIG", - "message": "Mapconfig", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_PROPERTYTAX_MUTATIONDOCUMENTS", - "message": "Mutationdocuments", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_PROPERTYTAX_MUTATIONPENALTY", - "message": "Mutationpenalty", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_PROPERTYTAX_MUTATIONREASON", - "message": "Mutationreason", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_PROPERTYTAX_MUTATIONREBATE", - "message": "Mutationrebate", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_PROPERTYTAX_OCCUPANCYTYPE", - "message": "Occupancytype", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_PROPERTYTAX_OWNERSHIPCATEGORY", - "message": "Ownershipcategory", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_PROPERTYTAX_OWNERTYPE", - "message": "Ownertype", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_PROPERTYTAX_OWNERTYPEDOCUMENT", - "message": "Ownertypedocument", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_PROPERTYTAX_PENALTY", - "message": "Penalty", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_PROPERTYTAX_PROPERTYCONFIGURATION", - "message": "Propertyconfiguration", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_PROPERTYTAX_PROPERTYSUBTYPE", - "message": "Propertysubtype", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_PROPERTYTAX_PROPERTYTYPE", - "message": "Propertytype", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_PROPERTYTAX_PTAPPLICATION", - "message": "Ptapplication", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_PROPERTYTAX_PTWORKFLOW", - "message": "Ptworkflow", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_PROPERTYTAX_REASONFORTRANSFER", - "message": "Reasonfortransfer", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_PROPERTYTAX_REBATE", - "message": "Rebate", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_PROPERTYTAX_RENTALDETAILS", - "message": "Rentaldetails", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_PROPERTYTAX_SUBOWNERSHIPCATEGORY", - "message": "Subownershipcategory", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_PROPERTYTAX_UPDATENUMBER", - "message": "Updatenumber", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_PROPERTYTAX_USAGECATEGORY", - "message": "Usagecategory", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_PROPERTYTAX_USAGECATEGORYDETAIL", - "message": "Usagecategorydetail", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_PROPERTYTAX_USAGECATEGORYMAJOR", - "message": "Usagecategorymajor", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_PROPERTYTAX_USAGECATEGORYMINOR", - "message": "Usagecategoryminor", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_PROPERTYTAX_USAGECATEGORYSUBMINOR", - "message": "Usagecategorysubminor", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_RAINMAKER_PGR_COMPLAINCLOSINGTIME", - "message": "Complainclosingtime", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_RAINMAKER_PGR_PRIORITYLEVEL", - "message": "Prioritylevel", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_RAINMAKER_PGR_SERVICEDEFS", - "message": "Servicedefs", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_RAINMAKER_PGR_UICONSTANTS", - "message": "Uiconstants", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_TENANT_ASSESSMENTCONFIG", - "message": "Assessmentconfig", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_TENANT_CITYMODULE", - "message": "Citymodule", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_TENANT_FOOTER", - "message": "Footer", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_TENANT_NATIONALINFO", - "message": "Nationalinfo", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_TENANT_REASSESSMENTCONFIG", - "message": "Reassessmentconfig", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_TENANT_TENANTINFO", - "message": "Tenantinfo", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_TENANT_TENANTS", - "message": "Tenant Master", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_TRADELICENSE_ACCESSORIESCATEGORY", - "message": "Accessoriescategory", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_TRADELICENSE_APPLICATIONTYPE", - "message": "Applicationtype", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_TRADELICENSE_CALCULATIONTYPE", - "message": "Calculationtype", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_TRADELICENSE_COMMONFIELDSCONFIG", - "message": "CommonFieldsConfig", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_TRADELICENSE_DOCUMENTOBJ", - "message": "Documentobj", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_TRADELICENSE_DOCUMENTS", - "message": "Documents", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_TRADELICENSE_PENALTY", - "message": "Penalty", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_TRADELICENSE_REBATE", - "message": "Rebate", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_TRADELICENSE_REMINDERPERIODS", - "message": "Reminderperiods", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_TRADELICENSE_TRADERENEWAL", - "message": "Traderenewal", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_TRADELICENSE_TRADETYPE", - "message": "Tradetype", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_WORKFLOW_AUTOESCALATION", - "message": "AutoEscalation", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_WORKFLOW_AUTOESCALATIONSTATESTOIGNORE", - "message": "AutoEscalationStatesToIgnore", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_WORKFLOW_BUSINESSSERVICE", - "message": "BusinessService", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_WORKFLOW_BUSINESSSERVICECONFIG", - "message": "BusinessServiceConfig", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_WORKFLOW_BUSINESSSERVICEMASTERCONFIG", - "message": "BusinessServiceMasterConfig", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_WORKFLO_WORKFLOW", - "message": "Workflow", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_WS_SERVICES_CALCULATION_PENALTY", - "message": "Penalty master", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "SCHEMA_WS_SERVICES_CALCULATION_WCBILLINGSLAB", - "message": "Rate Master", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TENANT_ASSESSMENTCONFIG_ENABLED", - "message": "Enabled", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TENANT_ASSESSMENTCONFIG_FINANCIALYEAR", - "message": "Financialyear", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TENANT_ASSESSMENTCONFIG_ISRENTED", - "message": "Isrented", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TENANT_ASSESSMENTCONFIG_TENANT", - "message": "Tenant", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TENANT_CITYMODULE_ACTIVE", - "message": "Active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TENANT_CITYMODULE_BANNERIMAGE", - "message": "Bannerimage", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TENANT_CITYMODULE_CODE", - "message": "Code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TENANT_CITYMODULE_MODULE", - "message": "Module", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TENANT_CITYMODULE_ORDER", - "message": "Order", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TENANT_CITYMODULE_TENANTS", - "message": "Tenants", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TENANT_FOOTER_BILLFOOTERCONTENT", - "message": "Billfootercontent", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TENANT_FOOTER_CODE", - "message": "Code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TENANT_FOOTER_DISCLAIMER", - "message": "Disclaimer", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TENANT_FOOTER_ORDER", - "message": "Order", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TENANT_FOOTER_RECEIPTFOOTERCONTENT", - "message": "Receiptfootercontent", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TENANT_FOOTER_SERVICE", - "message": "Service", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TENANT_NATIONALINFO_ACTIVE", - "message": "Active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TENANT_NATIONALINFO_CODE", - "message": "Code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TENANT_NATIONALINFO_MODULE", - "message": "Module", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TENANT_NATIONALINFO_NAME", - "message": "Name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TENANT_NATIONALINFO_STATECODE", - "message": "Statecode", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TENANT_NATIONALINFO_STATENAME", - "message": "Statename", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TENANT_REASSESSMENTCONFIG_FINANCIALYEAR", - "message": "Financialyear", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TENANT_REASSESSMENTCONFIG_TENANT", - "message": "Tenant", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTINFO_CODE", - "message": "Code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTINFO_DISTRICTCODE", - "message": "Districtcode", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTINFO_FEMALEPOPULTION", - "message": "Femalepopultion", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTINFO_LANGUAGESSPOKEN", - "message": "Languagesspoken", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTINFO_LITERACYRATE", - "message": "Literacyrate", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTINFO_MALEPOPULATION", - "message": "Malepopulation", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTINFO_POPULATION", - "message": "Population", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTINFO_WORKINGPOPULATION", - "message": "Workingpopulation", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_ADDRESS", - "message": "Address", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_BLOCKCODE", - "message": "Block code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_BLOCKNAME", - "message": "Block name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_CAPTCHA", - "message": "Captcha", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_CITY", - "message": "City", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_CODE", - "message": "Code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_CONTACTNUMBER", - "message": "Contact number", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_DDRNAME", - "message": "Ddr name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_DESCRIPTION", - "message": "Description", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_DISTRICTCODE", - "message": "District code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_DISTRICTNAME", - "message": "District name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_DOMAINURL", - "message": "Domain url", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_EMAILID", - "message": "Email id", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_FACEBOOKURL", - "message": "Facebook url", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_HELPLINENUMBER", - "message": "Helpline number", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_IMAGEID", - "message": "Image id", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_LATITUDE", - "message": "Latitude", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_LOCALNAME", - "message": "Local name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_LOGOID", - "message": "Logo id", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_LONGITUDE", - "message": "Longitude", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_MON___FRI", - "message": "Mon - fri", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_NAME", - "message": "Name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_OFFICETIMINGS", - "message": "Office timings", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PANCHAYATCODE", - "message": "Panchayat code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PANCHAYATNAME", - "message": "Panchayat name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PDFCONTACTDETAILS", - "message": "Pdfcontact details", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PDFHEADER", - "message": "Pdf header", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PINCODE", - "message": "Pincode", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_PROJECTID", - "message": "Project id", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_REGIONNAME", - "message": "Region name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_SHAPEFILELOCATION", - "message": "Shapefile location", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_TWITTERURL", - "message": "Twitter url", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_TYPE", - "message": "Type", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_ULBGRADE", - "message": "Ulb grade", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_VILLAGECODE", - "message": "Tenant code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TENANT_TENANTS_VILLAGENAME", - "message": "Tenant name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TIP_SCHEMA_WS_SERVICES_CALCULATION_PENALTY", - "message": "Penalty master", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TIP_WS_SERVICES_CALCULATION_PENALTY_AMOUNT", - "message": "Amount", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TIP_WS_SERVICES_CALCULATION_PENALTY_APPLICABLEAFTERDAYS", - "message": "Applicable After Days", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TIP_WS_SERVICES_CALCULATION_PENALTY_FLATAMOUNT", - "message": "Flat Amount", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TIP_WS_SERVICES_CALCULATION_PENALTY_FROMFY", - "message": "From FY", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TIP_WS_SERVICES_CALCULATION_PENALTY_MINAMOUNT", - "message": "Minimum Amount", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TIP_WS_SERVICES_CALCULATION_PENALTY_RATE", - "message": "Rate", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TIP_WS_SERVICES_CALCULATION_PENALTY_STARTINGDAY", - "message": "Starting Day", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TIP_WS_SERVICES_CALCULATION_PENALTY_SUBTYPE", - "message": "Sub Type", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TIP_WS_SERVICES_CALCULATION_PENALTY_TYPE", - "message": "Type", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TIP_WS_SERVICES_CALCULATION_WCBILLINGSLAB_BUILDINGTYPE", - "message": "Building Type", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TIP_WS_SERVICES_CALCULATION_WCBILLINGSLAB_CALCULATIONATTRIBUTE", - "message": "Calculation Attribute", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TIP_WS_SERVICES_CALCULATION_WCBILLINGSLAB_CHARGE", - "message": "Rate", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TIP_WS_SERVICES_CALCULATION_WCBILLINGSLAB_CONNECTIONTYPE", - "message": "Connection Type", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TIP_WS_SERVICES_CALCULATION_WCBILLINGSLAB_FROM", - "message": "From", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TIP_WS_SERVICES_CALCULATION_WCBILLINGSLAB_ID", - "message": "ID", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TIP_WS_SERVICES_CALCULATION_WCBILLINGSLAB_MINIMUMCHARGE", - "message": "Minimum Charge", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TIP_WS_SERVICES_CALCULATION_WCBILLINGSLAB_SLABS", - "message": "Slabs", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TIP_WS_SERVICES_CALCULATION_WCBILLINGSLAB_TO", - "message": "To", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TIP_WS_SERVICES_CALCULATION_WS_SERVICES_CALCULATION_SLABS", - "message": "Slabs", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_ACTIVE", - "message": "Active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_CODE", - "message": "Code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_ACCESSORIESCATEGORY_UOM", - "message": "Uom", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_APPLICATIONTYPE_ACTIVE", - "message": "Active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_APPLICATIONTYPE_CODE", - "message": "Code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_CALCULATIONTYPE_ACCESSORY", - "message": "Accessory", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_CALCULATIONTYPE_ACTIVE", - "message": "Active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_CALCULATIONTYPE_FINANCIALYEAR", - "message": "Financialyear", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_CALCULATIONTYPE_TRADETYPE", - "message": "Tradetype", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_COMMONFIELDSCONFIG_BODY", - "message": "body", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_COMMONFIELDSCONFIG_CARDTEXT", - "message": "cardText", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_COMMONFIELDSCONFIG_COMPONENT", - "message": "component", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_COMMONFIELDSCONFIG_HEAD", - "message": "head", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_COMMONFIELDSCONFIG_HEADER", - "message": "header", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_COMMONFIELDSCONFIG_HEADERCAPTION", - "message": "headerCaption", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_COMMONFIELDSCONFIG_HIDEINEMPLOYEE", - "message": "hideInEmployee", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_COMMONFIELDSCONFIG_ISMANDATORY", - "message": "isMandatory", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_COMMONFIELDSCONFIG_KEY", - "message": "key", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_COMMONFIELDSCONFIG_NEXTSTEP", - "message": "nextStep", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_COMMONFIELDSCONFIG_ROUTE", - "message": "route", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_COMMONFIELDSCONFIG_SKIPTEXT", - "message": "skipText", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_COMMONFIELDSCONFIG_SUBMITBARLABEL", - "message": "submitBarLabel", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_COMMONFIELDSCONFIG_TEXTS", - "message": "texts", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_COMMONFIELDSCONFIG_TYPE", - "message": "type", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_COMMONFIELDSCONFIG_WITHOUTLABEL", - "message": "withoutLabel", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_DOCUMENTOBJ_ALLOWEDDOCS", - "message": "Alloweddocs", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_DOCUMENTOBJ_APPLICATIONTYPE", - "message": "Applicationtype", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_DOCUMENTOBJ_DOCUMENTTYPE", - "message": "Documenttype", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_DOCUMENTOBJ_REQUIRED", - "message": "Required", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_DOCUMENTOBJ_TRADETYPE", - "message": "Tradetype", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_DOCUMENTS_ACTIVE", - "message": "Active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_DOCUMENTS_CODE", - "message": "Code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_DOCUMENTS_DESCRIPTION", - "message": "Description", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_DOCUMENTS_DOCUMENTTYPE", - "message": "Documenttype", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_DOCUMENTS_DROPDOWNDATA", - "message": "Dropdowndata", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_DOCUMENTS_REQUIRED", - "message": "Required", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_PENALTY_FLATAMOUNT", - "message": "Flatamount", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_PENALTY_FROMFY", - "message": "Fromfy", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_PENALTY_MINAMOUNT", - "message": "Minamount", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_PENALTY_RATE", - "message": "Rate", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_PENALTY_STARTINGDAY", - "message": "Startingday", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_REBATE_ENDINGDAY", - "message": "Endingday", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_REBATE_FLATAMOUNT", - "message": "Flatamount", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_REBATE_FROMFY", - "message": "Fromfy", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_REBATE_MAXAMOUNT", - "message": "Maxamount", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_REBATE_RATE", - "message": "Rate", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_REMINDERPERIODS_REMINDERINTERVAL", - "message": "Reminderinterval", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_REMINDERPERIODS_TENANTID", - "message": "Tenantid", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_TRADELICENSE_ALLOWEDDOCS", - "message": "allowedDocs", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_TRADELICENSE_APPLICATIONDOCUMENT", - "message": "applicationDocument", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_TRADELICENSE_APPLICATIONTYPE", - "message": "applicationType", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_TRADELICENSE_BODY", - "message": "body", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_TRADELICENSE_DOCUMENTLIST", - "message": "documentList", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_TRADELICENSE_DROPDOWNDATA", - "message": "dropdownData", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_TRADERENEWAL_RENEWALPERIOD", - "message": "Renewalperiod", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_TRADETYPE_ACTIVE", - "message": "Active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_TRADETYPE_APPLICATIONDOCUMENT", - "message": "Applicationdocument", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_TRADETYPE_APPLICATIONTYPE", - "message": "Applicationtype", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_TRADETYPE_CODE", - "message": "Code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_TRADETYPE_DOCUMENTLIST", - "message": "Documentlist", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_TRADETYPE_NAME", - "message": "Name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_TRADETYPE_TYPE", - "message": "Type", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_TRADETYPE_UOM", - "message": "Uom", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_TRADETYPE_VALIDITYPERIOD", - "message": "Validityperiod", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "TRADELICENSE_TRADETYPE_VERIFICATIONDOCUMENT", - "message": "Verificationdocument", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "UNIQUE_IDENTIFIER_EMPTY_ERR", - "message": "Unique fields cannot be empty.", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "VIEW_ALL", - "message": "View All", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_ADD", - "message": "Add", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_ADD_LOCALISATION", - "message": "Add New", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_ADD_MDMS", - "message": "Add Master data", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_ADD_MDMS_ADD_ACTION", - "message": "Add data", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_ADD_MDMS_UPDATE_ACTION", - "message": "Update", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_BOOLEAN_VALUE_FALSE", - "message": "FALSE", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_BOOLEAN_VALUE_TRUE", - "message": "TRUE", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_BULK_BROWSE_FILES", - "message": "bulk upload files", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_BULK_UPLOAD", - "message": "Upload", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_BULK_UPLOAD_HEADER", - "message": "Bulk Upload", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_BULK_UPLOAD_SUBMIT", - "message": "Submit", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_CANCEL", - "message": "Cancel", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_COMMON_ALL", - "message": "All", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_COMMON_NO", - "message": "No", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_COMMON_YES", - "message": "Yes", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_CONFIRM", - "message": "Confirm", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_DELETE_ACTION", - "message": "Delete", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_DOWLOAD_TEMPLATE", - "message": "Download Template", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_DOWNLOAD_TEMPLATE", - "message": "Download Template", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_DRAG_DROP", - "message": "Drag & drop", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_EDIT_MDMS", - "message": "Edit Master Data", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_ERROR_ENUM", - "message": "Please enter enum values", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_ERROR_FORMAT", - "message": "Please enter correct format", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_ERROR_MAXLENGTH", - "message": "value exceeds the maximum length", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_ERROR_MDMS_DATA", - "message": "Error : Error", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_ERROR_MDMS_DATA DUPLICATE_RECORD", - "message": "Duplicate Record", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_ERROR_MINITEMS", - "message": "Please enter minium items", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_ERROR_MINLENGTH", - "message": "The provided value is too short", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_ERROR_PATTERN", - "message": "Invalid, Pattern should match", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_ERROR_REQUIRED", - "message": "Required", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_ERROR_TYPE", - "message": "Invalid type", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_FIELD", - "message": "Field", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_FIELD_VALUE", - "message": "Value", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_INFO", - "message": "Info", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_INFO_MESSAGE", - "message": "Below is the list of localizations data. Please add or modify as needed.", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_ISACTIVE", - "message": "Active (Yes/No)", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_LOCALISATION_SEARCH_HEADER", - "message": "Localisation Data", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_LOC_ADD", - "message": "Add Localisation", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_LOC_BULK_UPLOAD_XLS", - "message": "Bulk Upload", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_LOC_CODE", - "message": "Keycode", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_LOC_DEFAULT_INFO_MESSAGE", - "message": "Messages will also be upserted into default locale", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_LOC_EDIT_LOCALISATION", - "message": "Update Localisation", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_LOC_EDIT_MODAL_CANCEL", - "message": "Cancel", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_LOC_EDIT_MODAL_SUBMIT", - "message": "Submit", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_LOC_EMPTY_KEY_VALUE_VALIDATION_ERR", - "message": "Keycode/Text should not be empty", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_LOC_ENTER_VALID_MESSAGE", - "message": "Please Enter Valid Text", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_LOC_HEADER_CODE", - "message": "Keycode", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_LOC_HEADER_DEFAULT", - "message": "Default Value", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_LOC_HEADER_MESSAGE", - "message": "Text", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_LOC_HEADER_MODULENAME", - "message": "Module Name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_LOC_HEADER_en_IN", - "message": "en_IN Value", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_LOC_KEYCODE", - "message": "Keycode", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_LOC_LANG", - "message": "Language", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_LOC_LOCALE", - "message": "Locale", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_LOC_MESSAGE", - "message": "Text", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_LOC_MESSAGE_VALUE", - "message": "Text", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_LOC_MODULE", - "message": "Module", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_LOC_SELECT_LANG", - "message": "Select Language", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_LOC_SELECT_MODULE", - "message": "Select Module", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_LOC_UPDATE_FAIL", - "message": "Localisation Update Failed", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_LOC_UPDATE_SUCCESS", - "message": "Successfully updated", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_LOC_UPSERT_FAIL", - "message": "Localisation Upsertion Failed", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_LOC_UPSERT_SUCCESS", - "message": "Localisation Upserted Succesfully", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_LOC_WARNING_LOCALE_MUST_BE_PRESENT", - "message": "Language must be present", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_LOC_en_IN_INFO_MESSAGE", - "message": "Messages will also be upserted into en_IN locale", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MANAGE_MASTER_DATA", - "message": "Manage Master data", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MASTER_NAME", - "message": "Master Name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_ACCESSCONTROL_ACTIONS_TEST_ACTIONS_TEST", - "message": "actions-test", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_ACCESSCONTROL_ROLEACTIONS_ROLEACTIONS", - "message": "roleactions", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_ACCESSCONTROL_ROLEACTION_ACCESSCONTROL_ROLEACTIONS", - "message": "Accesscontrol-roleactions", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_ACCESSCONTROL_ROLES_ROLES", - "message": "roles", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_BILLINGSERVICE_BUSINESSSERVICE", - "message": "BusinessService", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_BILLINGSERVICE_PAYMENTSERVICE", - "message": "PaymentService", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_BILLINGSERVICE_TAXHEADMASTER", - "message": "TaxHeadMaster", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_BILLINGSERVICE_TAXPERIOD", - "message": "TaxPeriod", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_COMMON-MASTERS_GENDERTYPE", - "message": "GenderType", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_COMMON_MASTERS_BDTEMPLATE", - "message": "Bdtemplate", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_COMMON_MASTERS_CANCELCURRENTBILLREASONS", - "message": "Cancelcurrentbillreasons", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_COMMON_MASTERS_CANCELRECEIPTREASON", - "message": "Cancelreceiptreason", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_COMMON_MASTERS_CENSUSYEAR", - "message": "Censusyear", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_COMMON_MASTERS_CITIZENCONSENTFORM", - "message": "Citizenconsentform", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_COMMON_MASTERS_COMMONINBOXCONFIG", - "message": "Commoninboxconfig", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_COMMON_MASTERS_CRONJOBAPICONFIG", - "message": "Cronjobapiconfig", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_COMMON_MASTERS_DEPARTMENT", - "message": "Department", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_COMMON_MASTERS_DESIGNATION", - "message": "Designation", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_COMMON_MASTERS_DOCUMENTTYPE", - "message": "Documenttype", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_COMMON_MASTERS_GENDERTYPE", - "message": "Gendertype", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_COMMON_MASTERS_IDFORMAT", - "message": "Idformat", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_COMMON_MASTERS_OWNERSHIPCATEGORY", - "message": "Ownershipcategory", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_COMMON_MASTERS_OWNERTYPE", - "message": "Ownertype", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_COMMON_MASTERS_STATEINFO", - "message": "Stateinfo", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_COMMON_MASTERS_STRUCTURETYPE", - "message": "Structuretype", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_COMMON_MASTERS_TABLEPAGINATIONOPTIONS", - "message": "Tablepaginationoptions", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_COMMON_MASTERS_UICOMMONPAY", - "message": "Uicommonpay", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_COMMON_MASTERS_UOM", - "message": "Uom", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_COMMON_MASTERS_UOMCATEGORY", - "message": "Uomcategory", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_COMMON_MASTERS_WFSLACONFIG", - "message": "Wfslaconfig", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_COMMON_MASTER_DEPARTMENT", - "message": "Department", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_DATASECURITY_DECRYPTIONABAC", - "message": "DecryptionABAC", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_DATASECURITY_ENCRYPTIONPOLICY", - "message": "EncryptionPolicy", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_DATASECURITY_MASKINGPATTERNS", - "message": "MaskingPatterns", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_DATASECURITY_SECURITYPOLICY", - "message": "SecurityPolicy", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_DATASECURIT_DATASECURITY", - "message": "Datasecurity", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_EGF_MASTER_FINANCIALYEAR", - "message": "FinancialYear", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_EGOV_HRMS_DEACTIVATIONREASON", - "message": "DeactivationReason", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_EGOV_HRMS_DEGREE", - "message": "Degree", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_EGOV_HRMS_EMPLOYEESTATUS", - "message": "EmployeeStatus", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_EGOV_HRMS_EMPLOYEETYPE", - "message": "EmployeeType", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_EGOV_HRMS_EMPLOYMENTTEST", - "message": "EmploymentTest", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_EGOV_HRMS_SPECALIZATION", - "message": "Specalization", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_EGOV_HRM_EGOV_HRMS", - "message": "Egov-hrms", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_FSM_ADVANCEPAYMENT", - "message": "AdvancePayment", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_FSM_APPLICATIONCHANNEL", - "message": "ApplicationChannel", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_FSM_APPLICATIONTYPE", - "message": "ApplicationType", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_FSM_CANCELLATIONFEE", - "message": "CancellationFee", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_FSM_CANCELREASON", - "message": "CancelReason", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_FSM_CHECKLIST", - "message": "CheckList", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_FSM_COMMONFIELDSCONFIG", - "message": "CommonFieldsConfig", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_FSM_CONFIG", - "message": "Config", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_FSM_DECLINEREASON", - "message": "DeclineReason", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_FSM_DOCUMENTCONFIG", - "message": "DocumentConfig", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_FSM_FSTPPLANTINFO", - "message": "FSTPPlantInfo", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_FSM_PAYMENTTYPE", - "message": "PaymentType", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_FSM_PERIODICSERVICE", - "message": "PeriodicService", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_FSM_PITTYPE", - "message": "PitType", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_FSM_POSTFIELDSCONFIG", - "message": "PostFieldsConfig", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_FSM_PREFIELDSCONFIG", - "message": "PreFieldsConfig", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_FSM_PROPERTYTYPE", - "message": "PropertyType", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_FSM_REASSIGNREASON", - "message": "ReassignReason", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_FSM_RECEIVEDPAYMENTTYPE", - "message": "ReceivedPaymentType", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_FSM_REJECTIONREASON", - "message": "RejectionReason", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_FSM_SANITATIONTYPE", - "message": "SanitationType", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_FSM_SANITATIONWORKEREMPLOYER", - "message": "SanitationWorkerEmployer", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_FSM_SANITATIONWORKEREMPLOYMENTTYPE", - "message": "SanitationWorkerEmploymentType", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_FSM_SANITATIONWORKERFUNCTIONALROLES", - "message": "SanitationWorkerFunctionalRoles", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_FSM_SANITATIONWORKERSKILLS", - "message": "SanitationWorkerSkills", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_FSM_SLUM", - "message": "Slum", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_FSM_TRIPNUMBER", - "message": "TripNumber", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_FSM_URCCONFIG", - "message": "UrcConfig", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_FSM_VEHICLETRACKING", - "message": "VehicleTracking", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_FSM_VEHICLETYPE", - "message": "VehicleType", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_FSM_ZEROPRICING", - "message": "ZeroPricing", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_INBOX_INBOXQUERYCONFIGURATION", - "message": "InboxQueryConfiguration", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_INBOX_V_INBOX_V2", - "message": "Inbox-v2", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_MASTER_ACCESSCONTROL_ACTIONS_TEST", - "message": "ACCESSCONTROL-ACTIONS-TEST", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_MASTER_ACCESSCONTROL_ROLEACTION", - "message": "Accesscontrol-roleaction", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_MASTER_ACCESSCONTROL_ROLEACTIONS", - "message": "ACCESSCONTROL-ROLEACTIONS", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_MASTER_ACCESSCONTROL_ROLES", - "message": "ACCESSCONTROL-ROLES", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_MASTER_BILLINGSERVICE", - "message": "BillingService", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_MASTER_COMMON-MASTERS", - "message": "common-masters", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_MASTER_COMMON_MASTER", - "message": "common masters", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_MASTER_COMMON_MASTERS", - "message": "Common-masters", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_MASTER_DATASECURIT", - "message": "Datasecurit", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_MASTER_DATASECURITY", - "message": "DataSecurity", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_MASTER_EGF_MASTER", - "message": "EGF Master", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_MASTER_EGOV_HRM", - "message": "Egov-hrm", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_MASTER_EGOV_HRMS", - "message": "egov-hrms", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_MASTER_FSM", - "message": "FSM", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_MASTER_INBOX", - "message": "INBOX", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_MASTER_INBOX_V", - "message": "Inbox-v", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_MASTER_PQM", - "message": "PQM", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_MASTER_PROPERTYTAX", - "message": "PropertyTax", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_MASTER_PSPCL_INTEGRATION", - "message": "PSPCL Integration", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_MASTER_RAINMAKER_PGR", - "message": "Citizen Complaint Resolution System", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_MASTER_TENANT", - "message": "Tenant", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_MASTER_TRADELICENSE", - "message": "Tradelicense", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_MASTER_WORKFLO", - "message": "Workflo", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_MASTER_WORKFLOW", - "message": "Workflow", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_MASTER_WS_SERVICES_CALCULATION", - "message": "WS Service Calculation", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_MASTER_WS_SERVICES_MASTERS", - "message": "WS Services Masters", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_PQM_BENCHMARKRULE", - "message": "Benchmark Rule", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_PQM_MATERIAL", - "message": "Material", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_PQM_PARAMETER", - "message": "Parameter", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_PQM_PLANT", - "message": "Plant", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_PQM_PLANTCONFIG", - "message": "Plant Configuration", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_PQM_PLANTTYPE", - "message": "Plant Type", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_PQM_PROCESS", - "message": "Process", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_PQM_PROCESSTYPE", - "message": "Process Type", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_PQM_QUALITYCRITERIA", - "message": "Quality Criteria", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_PQM_QUALITYTESTLAB", - "message": "Quality Test Labs", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_PQM_SOURCETYPE", - "message": "Source Type", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_PQM_STAGE", - "message": "Stage", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_PQM_TESTSTANDARD", - "message": "Test Standard", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_PQM_UNIT", - "message": "Unit", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_PQM_WASTETYPE", - "message": "Waste Type", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_PROPERTYTAX_CANCERCESS", - "message": "Cancercess", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_PROPERTYTAX_CHARGESLABS", - "message": "Chargeslabs", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_PROPERTYTAX_COMMONFIELDSCONFIG", - "message": "Commonfieldsconfig", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_PROPERTYTAX_CONSTRUCTIONSUBTYPE", - "message": "Constructionsubtype", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_PROPERTYTAX_CONSTRUCTIONTYPE", - "message": "ConstructionType", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_PROPERTYTAX_DOCUMENTS", - "message": "Documents", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_PROPERTYTAX_DUESONPTMUTATION", - "message": "Duesonptmutation", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_PROPERTYTAX_FIRECESS", - "message": "Firecess", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_PROPERTYTAX_FLOOR", - "message": "Floor", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_PROPERTYTAX_INTEREST", - "message": "Interest", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_PROPERTYTAX_MAPCONFIG", - "message": "Mapconfig", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_PROPERTYTAX_MUTATIONDOCUMENTS", - "message": "Mutationdocuments", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_PROPERTYTAX_MUTATIONPENALTY", - "message": "Mutationpenalty", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_PROPERTYTAX_MUTATIONREASON", - "message": "Mutationreason", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_PROPERTYTAX_MUTATIONREBATE", - "message": "Mutationrebate", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_PROPERTYTAX_OCCUPANCYTYPE", - "message": "Occupancytype", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_PROPERTYTAX_OWNERSHIPCATEGORY", - "message": "Ownershipcategory", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_PROPERTYTAX_OWNERTYPE", - "message": "Ownertype", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_PROPERTYTAX_OWNERTYPEDOCUMENT", - "message": "Ownertypedocument", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_PROPERTYTAX_PENALTY", - "message": "Penalty", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_PROPERTYTAX_PROPERTYCONFIGURATION", - "message": "Propertyconfiguration", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_PROPERTYTAX_PROPERTYSUBTYPE", - "message": "Propertysubtype", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_PROPERTYTAX_PROPERTYTYPE", - "message": "PropertyType", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_PROPERTYTAX_PTAPPLICATION", - "message": "Ptapplication", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_PROPERTYTAX_PTWORKFLOW", - "message": "Ptworkflow", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_PROPERTYTAX_REASONFORTRANSFER", - "message": "Reasonfortransfer", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_PROPERTYTAX_REBATE", - "message": "Rebate", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_PROPERTYTAX_RENTALDETAILS", - "message": "Rentaldetails", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_PROPERTYTAX_SUBOWNERSHIPCATEGORY", - "message": "Subownershipcategory", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_PROPERTYTAX_UPDATENUMBER", - "message": "Updatenumber", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_PROPERTYTAX_USAGECATEGORY", - "message": "Usagecategory", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_PROPERTYTAX_USAGECATEGORYDETAIL", - "message": "Usagecategorydetail", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_PROPERTYTAX_USAGECATEGORYMAJOR", - "message": "Usagecategorymajor", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_PROPERTYTAX_USAGECATEGORYMINOR", - "message": "Usagecategoryminor", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_PROPERTYTAX_USAGECATEGORYSUBMINOR", - "message": "Usagecategorysubminor", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_RAINMAKER_PGR_COMPLAINCLOSINGTIME", - "message": "ComplainClosingTime", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_RAINMAKER_PGR_PRIORITYLEVEL", - "message": "Prioritylevel", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_RAINMAKER_PGR_SERVICEDEFS", - "message": "ServiceDefs", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_RAINMAKER_PGR_UICONSTANTS", - "message": "UIConstants", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_SEARCH_VALIDATION_FIELD_VALUE_PAIR", - "message": "Please enter both field and value", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_TENANT_ASSESSMENTCONFIG", - "message": "Assessmentconfig", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_TENANT_CITYMODULE", - "message": "Citymodule", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_TENANT_FOOTER", - "message": "Footer", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_TENANT_NATIONALINFO", - "message": "Nationalinfo", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_TENANT_REASSESSMENTCONFIG", - "message": "Reassessmentconfig", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_TENANT_TENANTINFO", - "message": "Tenantinfo", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_TENANT_TENANTS", - "message": "Tenant Master", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_TRADELICENSE_ACCESSORIESCATEGORY", - "message": "Accessoriescategory", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_TRADELICENSE_APPLICATIONTYPE", - "message": "Applicationtype", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_TRADELICENSE_CALCULATIONTYPE", - "message": "Calculationtype", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_TRADELICENSE_COMMONFIELDSCONFIG", - "message": "CommonFieldsConfig", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_TRADELICENSE_DOCUMENTOBJ", - "message": "Documentobj", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_TRADELICENSE_DOCUMENTS", - "message": "Documents", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_TRADELICENSE_PENALTY", - "message": "Penalty", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_TRADELICENSE_REBATE", - "message": "Rebate", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_TRADELICENSE_REMINDERPERIODS", - "message": "Reminderperiods", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_TRADELICENSE_TRADERENEWAL", - "message": "Traderenewal", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_TRADELICENSE_TRADETYPE", - "message": "Tradetype", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_TRADE_FIELDS", - "message": "Fields", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_WORKFLOW_AUTOESCALATION", - "message": "AutoEscalation", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_WORKFLOW_AUTOESCALATIONSTATESTOIGNORE", - "message": "AutoEscalationStatesToIgnore", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_WORKFLOW_BUSINESSSERVICE", - "message": "BusinessService", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_WORKFLOW_BUSINESSSERVICECONFIG", - "message": "BusinessServiceConfig", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_WORKFLOW_BUSINESSSERVICEMASTERCONFIG", - "message": "BusinessServiceMasterConfig", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_WORKFLO_WORKFLOW", - "message": "Workflow", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_WS-SERVICES-MASTERS_CONNECTIONTYPE", - "message": "connectionType", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_WS-SERVICES_MASTERS_WSSERVICEROLES", - "message": "WSServiceRoles", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_WS_SERVICES_CALCULATION_CALCULATIONATTRIBUTE", - "message": "CalculationAttribute", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_WS_SERVICES_CALCULATION_INTEREST", - "message": "Interest", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_WS_SERVICES_CALCULATION_PENALTY", - "message": "Penalty", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_WS_SERVICES_CALCULATION_REBATE", - "message": "Rebate", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_WS_SERVICES_CALCULATION_WATERCESS", - "message": "WaterCess", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_WS_SERVICES_CALCULATION_WCBILLINGSLAB", - "message": "WCBillingSlab", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_WS_SERVICES_CALCULATION_WCBILLINGSLABMETERED", - "message": "WCBillingSlabMetered", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_WS_SERVICES_MASTERS_CONNECTIONTYPE", - "message": "connectionType", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MDMS_WS_SERVICES_MASTERS_WSSERVICEROLES", - "message": "WSServiceRoles", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_MODULE_NAME", - "message": "Module Name", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_SEARCH_MDMS", - "message": "Manage Master data", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_SHOW_JSON", - "message": "Show JSON", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_SUCCESS_DIS_MDMS_MSG", - "message": "Data disabled successfully with id", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_SUCCESS_ENA_MDMS_MSG", - "message": "Data enabled successfully with id", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_SUCCESS_MDMS_MSG", - "message": "Success : Data added Successfully with Id", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_SUCCESS_UPD_MDMS_MSG", - "message": "Data updated successfully with id", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_UNIQUE_IDENTIFIER", - "message": "Unique Identifier", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WBH_VIEW_MDMS", - "message": "View Master Data", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WORKBENCH_ACTIONS", - "message": "Actions", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WORKBENCH_HOME", - "message": "Workbench", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WORKBENCH_LABEL_SELECT", - "message": "Select", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WORKBENCH_LABEL_VIEW_MORE", - "message": "View more", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WORKFLOW_AUTOESCALATIONSTATESTOIGNORE_BUSINESSSERVICE", - "message": "businessService", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WORKFLOW_AUTOESCALATIONSTATESTOIGNORE_MODULE", - "message": "module", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WORKFLOW_AUTOESCALATIONSTATESTOIGNORE_STATE", - "message": "state", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WORKFLOW_AUTOESCALATION_ACTION", - "message": "action", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WORKFLOW_AUTOESCALATION_ACTIVE", - "message": "active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WORKFLOW_AUTOESCALATION_BUSINESSSERVICE", - "message": "businessService", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WORKFLOW_AUTOESCALATION_BUSINESSSLA", - "message": "businessSLA", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WORKFLOW_AUTOESCALATION_MODULE", - "message": "module", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WORKFLOW_AUTOESCALATION_STATE", - "message": "state", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WORKFLOW_AUTOESCALATION_STATESLA", - "message": "stateSLA", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WORKFLOW_AUTOESCALATION_TOPIC", - "message": "topic", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WORKFLOW_BUSINESSSERVICECONFIG_CODE", - "message": "code", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WORKFLOW_BUSINESSSERVICECONFIG_ISSTATELEVEL", - "message": "isStateLevel", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WORKFLOW_BUSINESSSERVICEMASTERCONFIG_ACTIVE", - "message": "active", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WORKFLOW_BUSINESSSERVICEMASTERCONFIG_BUSINESSSERVICE", - "message": "businessService", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WORKFLOW_BUSINESSSERVICEMASTERCONFIG_ISSTATELEVEL", - "message": "isStatelevel", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WORKFLOW_BUSINESSSERVICE_ACTION", - "message": "action", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WORKFLOW_BUSINESSSERVICE_ACTIONS", - "message": "actions", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WORKFLOW_BUSINESSSERVICE_APPLICABLEACTIONS", - "message": "applicableActions", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WORKFLOW_BUSINESSSERVICE_APPLICABLENEXTSTATES", - "message": "applicableNextStates", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WORKFLOW_BUSINESSSERVICE_BUSINESSSERVICE", - "message": "businessService", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WORKFLOW_BUSINESSSERVICE_BUSINESSSERVICEID", - "message": "businessServiceId", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WORKFLOW_BUSINESSSERVICE_DOCUPLOADREQUIRED", - "message": "docUploadRequired", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WORKFLOW_BUSINESSSERVICE_GETURI", - "message": "getUri", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WORKFLOW_BUSINESSSERVICE_ISSTARTSTATE", - "message": "isStartState", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WORKFLOW_BUSINESSSERVICE_ISTERMINATESTATE", - "message": "isTerminateState", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WORKFLOW_BUSINESSSERVICE_NEXTSTATEID", - "message": "nextStateId", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WORKFLOW_BUSINESSSERVICE_POSTURI", - "message": "postUri", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WORKFLOW_BUSINESSSERVICE_ROLES", - "message": "roles", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WORKFLOW_BUSINESSSERVICE_STATE", - "message": "state", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WORKFLOW_BUSINESSSERVICE_STATEID", - "message": "stateId", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WORKFLOW_BUSINESSSERVICE_STATES", - "message": "states", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WORKFLOW_BUSINESSSERVICE_TENANTID", - "message": "tenantId", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WORKFLOW_BUSINESSSERVICE_UPDATEALLOWED", - "message": "UpdateAllowed", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WORKFLOW_BUSINESSSERVICE_UUID", - "message": "uuid", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WORKS_ACTIONS", - "message": "Take Action", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WS_SERVICES_CALCULATION_PENALTY_AMOUNT", - "message": "Amount", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WS_SERVICES_CALCULATION_PENALTY_APPLICABLEAFTERDAYS", - "message": "Applicable After Days", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WS_SERVICES_CALCULATION_PENALTY_FLATAMOUNT", - "message": "Flat Amount", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WS_SERVICES_CALCULATION_PENALTY_FROMFY", - "message": "From FY", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WS_SERVICES_CALCULATION_PENALTY_MINAMOUNT", - "message": "Minimum Amount", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WS_SERVICES_CALCULATION_PENALTY_RATE", - "message": "Rate", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WS_SERVICES_CALCULATION_PENALTY_STARTINGDAY", - "message": "Starting Day", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WS_SERVICES_CALCULATION_PENALTY_SUBTYPE", - "message": "Sub Type", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WS_SERVICES_CALCULATION_PENALTY_TYPE", - "message": "Type", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WS_SERVICES_CALCULATION_WCBILLINGSLAB_", - "message": "NA", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WS_SERVICES_CALCULATION_WCBILLINGSLAB_BUILDINGTYPE", - "message": "Building Type", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WS_SERVICES_CALCULATION_WCBILLINGSLAB_CALCULATIONATTRIBUTE", - "message": "Calculation Attribute", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WS_SERVICES_CALCULATION_WCBILLINGSLAB_CHARGE", - "message": "Rate", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WS_SERVICES_CALCULATION_WCBILLINGSLAB_COMMERCIAL", - "message": "Commercial", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WS_SERVICES_CALCULATION_WCBILLINGSLAB_COMMERCIAL_AND_GOVERNMENT", - "message": "Commercial and Government", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WS_SERVICES_CALCULATION_WCBILLINGSLAB_CONNECTIONTYPE", - "message": "Connection Type", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WS_SERVICES_CALCULATION_WCBILLINGSLAB_FLAT", - "message": "Flat", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WS_SERVICES_CALCULATION_WCBILLINGSLAB_FROM", - "message": "From", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WS_SERVICES_CALCULATION_WCBILLINGSLAB_GOVERNMENT", - "message": "Government", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WS_SERVICES_CALCULATION_WCBILLINGSLAB_ID", - "message": "ID", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WS_SERVICES_CALCULATION_WCBILLINGSLAB_METERED", - "message": "Metered", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WS_SERVICES_CALCULATION_WCBILLINGSLAB_MINIMUMCHARGE", - "message": "Minimum Charge", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WS_SERVICES_CALCULATION_WCBILLINGSLAB_MIXED", - "message": "Mixed", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WS_SERVICES_CALCULATION_WCBILLINGSLAB_NONMETERED", - "message": "Non Metered", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WS_SERVICES_CALCULATION_WCBILLINGSLAB_NONRESIDENTIAL", - "message": "Non Residential", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WS_SERVICES_CALCULATION_WCBILLINGSLAB_NON_METERED", - "message": "Non Metered", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WS_SERVICES_CALCULATION_WCBILLINGSLAB_NON_RESIDENTIAL", - "message": "Non Residential", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WS_SERVICES_CALCULATION_WCBILLINGSLAB_NO__OF_TAPS", - "message": "No. of taps", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WS_SERVICES_CALCULATION_WCBILLINGSLAB_PARTLY_COMMERCIAL", - "message": "Partly Commercial", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WS_SERVICES_CALCULATION_WCBILLINGSLAB_PIPE_SIZE", - "message": "Pipe Size", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WS_SERVICES_CALCULATION_WCBILLINGSLAB_PUBLICSECTOR", - "message": "Public Sector", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WS_SERVICES_CALCULATION_WCBILLINGSLAB_RESIDENTIAL", - "message": "Residential", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WS_SERVICES_CALCULATION_WCBILLINGSLAB_SLABS", - "message": "Slabs", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WS_SERVICES_CALCULATION_WCBILLINGSLAB_TO", - "message": "To", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WS_SERVICES_CALCULATION_WCBILLINGSLAB_WATER_CONSUMPTION", - "message": "Water Consumption", - "module": "rainmaker-workbench", - "locale": "en_IN" - }, - { - "code": "WS_SERVICES_CALCULATION_WS_SERVICES_CALCULATION_SLABS", - "message": "Slab", - "module": "rainmaker-workbench", - "locale": "en_IN" - } -] \ No newline at end of file From b4b68c81bb8f3a2e461bc3f245318ec7318dd74b Mon Sep 17 00:00:00 2001 From: Lokendra Tyagi Date: Tue, 4 Nov 2025 14:42:04 +0530 Subject: [PATCH 4/7] refactored --- .../src/main/java/org/egov/handler/util/LocalizationUtil.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utilities/default-data-handler/src/main/java/org/egov/handler/util/LocalizationUtil.java b/utilities/default-data-handler/src/main/java/org/egov/handler/util/LocalizationUtil.java index af014379..06140ad0 100644 --- a/utilities/default-data-handler/src/main/java/org/egov/handler/util/LocalizationUtil.java +++ b/utilities/default-data-handler/src/main/java/org/egov/handler/util/LocalizationUtil.java @@ -88,7 +88,7 @@ public void upsertLocalizationFromFile(DefaultDataRequest defaultDataRequest, St } } - public List addMessagesFromFile(DefaultDataRequest defaultDataRequest, String localizationPath){ + public List addMessagesFromFile(DefaultDataRequest defaultDataRequest, String localizationPath){ List messages = new ArrayList<>(); ObjectMapper objectMapper = new ObjectMapper(); From 7fc5b7f35cd8553de58e97a09c297869255e2da8 Mon Sep 17 00:00:00 2001 From: Lokendra Tyagi Date: Tue, 4 Nov 2025 15:06:36 +0530 Subject: [PATCH 5/7] refactored --- .../src/main/resources/HRMS.json | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/utilities/default-data-handler/src/main/resources/HRMS.json b/utilities/default-data-handler/src/main/resources/HRMS.json index e2843087..54a1cd70 100644 --- a/utilities/default-data-handler/src/main/resources/HRMS.json +++ b/utilities/default-data-handler/src/main/resources/HRMS.json @@ -1,6 +1,6 @@ [ { - "tenantId": "{tenantid}.citya", + "tenantId": "{tenantid}", "employeeStatus": "EMPLOYED", "assignments": [ { @@ -18,22 +18,22 @@ "hierarchy": "ADMIN", "boundaryType": "City", "boundary": "{tenantid}", - "tenantId": "{tenantid}.citya", + "tenantId": "{tenantid}", "roles": [ { "code": "LOC_ADMIN", "name": "Localisation admin", - "tenantId": "{tenantid}.citya" + "tenantId": "{tenantid}" }, { "code": "MDMS_ADMIN", "name": "MDMS ADMIN", - "tenantId": "{tenantid}.citya" + "tenantId": "{tenantid}" }, { "code": "HRMS_ADMIN", "name": "HRMS Admin", - "tenantId": "{tenantid}.citya" + "tenantId": "{tenantid}" }, { "code": "LOC_ADMIN", @@ -68,17 +68,17 @@ { "code": "LOC_ADMIN", "name": "Localisation admin", - "tenantId": "{tenantid}.citya" + "tenantId": "{tenantid}" }, { "code": "MDMS_ADMIN", "name": "MDMS ADMIN", - "tenantId": "{tenantid}.citya" + "tenantId": "{tenantid}" }, { "code": "HRMS_ADMIN", "name": "HRMS Admin", - "tenantId": "{tenantid}.citya" + "tenantId": "{tenantid}" }, { "code": "LOC_ADMIN", @@ -103,7 +103,7 @@ ], "password": "eGov@123", "otpReference": "12345", - "tenantId": "{tenantid}.citya" + "tenantId": "{tenantid}" }, "serviceHistory": [], "education": [], From bd5f75c36bf6231e58ec75e629b6004fb3fbb13d Mon Sep 17 00:00:00 2001 From: salaudeenegov Date: Tue, 2 Dec 2025 15:33:57 +0530 Subject: [PATCH 6/7] added new endpoint to load the tenant also added the tenant master schema excel validator --- .../handler/service/DataHandlerService.java | 84 +++++++ .../web/controller/DataHandlerController.java | 13 ++ .../handler/web/models/NewTenantRequest.java | 28 +++ .../src/main/resources/schema/tenant.json | 218 ++++++++++++++++++ 4 files changed, 343 insertions(+) create mode 100644 utilities/default-data-handler/src/main/java/org/egov/handler/web/models/NewTenantRequest.java diff --git a/utilities/default-data-handler/src/main/java/org/egov/handler/service/DataHandlerService.java b/utilities/default-data-handler/src/main/java/org/egov/handler/service/DataHandlerService.java index 0848301c..08a62d81 100644 --- a/utilities/default-data-handler/src/main/java/org/egov/handler/service/DataHandlerService.java +++ b/utilities/default-data-handler/src/main/java/org/egov/handler/service/DataHandlerService.java @@ -85,6 +85,8 @@ public void createDefaultData(DefaultDataRequest defaultDataRequest) { mdmsV2Util.createDefaultMdmsData(defaultMdmsDataRequest); } + + // if (defaultDataRequest.getLocales() != null && defaultDataRequest.getModules() != null) { // for (String locale : defaultDataRequest.getLocales()) { // DefaultLocalizationDataRequest defaultLocalizationDataRequest = DefaultLocalizationDataRequest.builder().requestInfo(defaultDataRequest.getRequestInfo()).targetTenantId(defaultDataRequest.getTargetTenantId()).locale(locale).modules(defaultDataRequest.getModules()).build(); @@ -604,4 +606,86 @@ public void defaultEmployeeSetup(String tenantId, String emailId) { createDefaultEmployee(tenantId, emailId, ASSIGNER, "John Smith"); } + /** + * Load production tenant data (mdmsData, localisations, and schema) + * This method loads production data for a new tenant + * Uses all default schemas automatically + * @param newTenantRequest - Request containing tenant information (no schema codes needed) + */ + public void loadNewTenantProductionData(NewTenantRequest newTenantRequest) { + try { + String targetTenantId = newTenantRequest.getTargetTenantId(); + RequestInfo requestInfo = newTenantRequest.getRequestInfo(); + + log.info("Loading production tenant data for new tenant: {}", targetTenantId); + + // Ensure UserInfo is present (create dummy if needed) + if (requestInfo.getUserInfo() == null) { + org.egov.common.contract.request.User dummyUser = new org.egov.common.contract.request.User(); + dummyUser.setId(1L); + dummyUser.setUserName("system"); + dummyUser.setTenantId(targetTenantId); + requestInfo.setUserInfo(dummyUser); + log.info("Created dummy user info for tenant: {}", targetTenantId); + } else { + requestInfo.getUserInfo().setTenantId(targetTenantId); + } + + // Create DefaultDataRequest with all default schemas + DefaultDataRequest defaultDataRequest = DefaultDataRequest.builder() + .requestInfo(requestInfo) + .targetTenantId(targetTenantId) + .schemaCodes(serviceConfig.getDefaultMdmsSchemaList()) + .onlySchemas(Boolean.FALSE) + .locales(serviceConfig.getDefaultLocalizationLocaleList()) + .modules(serviceConfig.getDefaultLocalizationModuleList()) + .build(); + + log.info("Step 1: Creating MDMS schemas for tenant: {}", targetTenantId); + // 1. Create Schema from file + createMdmsSchemaFromFile(defaultDataRequest); + log.info("✓ Schemas created for new tenant: {}", targetTenantId); + + log.info("Step 2: Loading production MDMS data"); + // 2. Load production MDMS data + mdmsBulkLoader.loadAllMdmsData(targetTenantId, + requestInfo, + serviceConfig.getDefaultMdmsDataPath()); + log.info("✓ Production MDMS data loaded for new tenant: {}", targetTenantId); + + log.info("Step 3: Loading production localization data"); + // 3. Load production localization + localizationUtil.upsertLocalizationFromFile(defaultDataRequest, + serviceConfig.getDefaultLocalizationDataPath()); + log.info("✓ Production localization data loaded for new tenant: {}", targetTenantId); + + log.info("Step 4: Creating tenant config in Tenant Management System"); + // 4. Create Tenant Configuration + Tenant newTenant = new Tenant(); + newTenant.setCode(targetTenantId); + newTenant.setName(targetTenantId); + newTenant.setEmail("admin@" + targetTenantId + ".com"); + + TenantRequest tenantRequest = TenantRequest.builder() + .requestInfo(requestInfo) + .tenant(newTenant) + .build(); + + try { + createTenantConfig(tenantRequest); + log.info("✓ Tenant config created: {}", targetTenantId); + } catch (Exception e) { + log.warn("Could not create tenant config (non-critical): {}", e.getMessage()); + } + + log.info("========================================"); + log.info("✓✓✓ Tenant {} created successfully", targetTenantId); + log.info("Loaded: Schemas + Production MDMS + Production Localization + Tenant Config"); + log.info("========================================"); + } catch (Exception e) { + log.error("Failed to load production tenant data for tenant: {}", newTenantRequest.getTargetTenantId(), e); + throw new CustomException("TENANT_CREATION_FAILED", "Failed to create new tenant with production data: " + e.getMessage()); + } + } + } diff --git a/utilities/default-data-handler/src/main/java/org/egov/handler/web/controller/DataHandlerController.java b/utilities/default-data-handler/src/main/java/org/egov/handler/web/controller/DataHandlerController.java index 2bd4d772..a662d7a3 100644 --- a/utilities/default-data-handler/src/main/java/org/egov/handler/web/controller/DataHandlerController.java +++ b/utilities/default-data-handler/src/main/java/org/egov/handler/web/controller/DataHandlerController.java @@ -7,6 +7,7 @@ import org.egov.handler.web.models.DataSetupRequest; import org.egov.handler.web.models.DataSetupResponse; import org.egov.handler.web.models.DefaultDataRequest; +import org.egov.handler.web.models.NewTenantRequest; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.http.HttpStatus; import org.springframework.http.ResponseEntity; @@ -45,4 +46,16 @@ public ResponseEntity DefaultDataCreatePost(@Valid @RequestBo return new ResponseEntity<>(dataSetupResponse, HttpStatus.ACCEPTED); } + @RequestMapping(value = "/tenant/new", method = RequestMethod.POST) + public ResponseEntity createNewTenant(@Valid @RequestBody NewTenantRequest newTenantRequest) { + dataHandlerService.loadNewTenantProductionData(newTenantRequest); + ResponseInfo responseInfo = responseInfoFactory.createResponseInfoFromRequestInfo(newTenantRequest.getRequestInfo(), true); + + DataSetupResponse dataSetupResponse = DataSetupResponse.builder() + .responseInfo(responseInfo) + .targetTenantId(newTenantRequest.getTargetTenantId()) + .build(); + return new ResponseEntity<>(dataSetupResponse, HttpStatus.ACCEPTED); + } + } diff --git a/utilities/default-data-handler/src/main/java/org/egov/handler/web/models/NewTenantRequest.java b/utilities/default-data-handler/src/main/java/org/egov/handler/web/models/NewTenantRequest.java new file mode 100644 index 00000000..6b813c34 --- /dev/null +++ b/utilities/default-data-handler/src/main/java/org/egov/handler/web/models/NewTenantRequest.java @@ -0,0 +1,28 @@ +package org.egov.handler.web.models; + +import com.fasterxml.jackson.annotation.JsonProperty; +import jakarta.validation.Valid; +import jakarta.validation.constraints.NotNull; +import lombok.*; +import org.egov.common.contract.request.RequestInfo; +import org.springframework.validation.annotation.Validated; + +@Validated +@Data +@AllArgsConstructor +@NoArgsConstructor +@Builder +@ToString +public class NewTenantRequest { + + @JsonProperty("RequestInfo") + @NotNull + @Valid + private RequestInfo requestInfo; + + @JsonProperty("targetTenantId") + @NotNull + @Valid + private String targetTenantId; + +} diff --git a/utilities/default-data-handler/src/main/resources/schema/tenant.json b/utilities/default-data-handler/src/main/resources/schema/tenant.json index 4c8f0dd4..07e951cc 100644 --- a/utilities/default-data-handler/src/main/resources/schema/tenant.json +++ b/utilities/default-data-handler/src/main/resources/schema/tenant.json @@ -248,5 +248,223 @@ ] } } + }, + { + "tenantId": "{tenantid}", + "code": "tenant.master", + "description": "Tenant Master Schema - Used for Excel validation in Jupyter notebooks. Defines tenant information with ADMIN hierarchy (State/City levels)", + "isActive": true, + "definition": { + "type": "object", + "$schema": "http://json-schema.org/draft-07/schema#", + "required": [ + "tenantDisplayName", + "tenantCode", + "tenantType", + "logoFilePath" + ], + "x-unique": [ + "tenantCode" + ], + "properties": { + "tenantDisplayName": { + "type": "string", + "minLength": 2, + "maxLength": 200 + }, + "tenantCode": { + "type": "string", + "pattern": "^[A-Z]+\\.[A-Z]+$|^[A-Z]+$" + }, + "tenantType": { + "type": "string", + "enum": [ + "State", + "City" + ] + }, + "logoFilePath": { + "type": "string", + "minLength": 1, + "maxLength": 500 + }, + "administrativeRegion": { + "type": [ + "string", + "null" + ], + "maxLength": 200 + }, + "admin0Name": { + "type": [ + "string", + "null" + ], + "maxLength": 100 + }, + "admin1Name": { + "type": [ + "string", + "null" + ], + "maxLength": 100 + }, + "admin2Name": { + "type": [ + "string", + "null" + ], + "maxLength": 100 + }, + "address": { + "type": [ + "string", + "null" + ], + "maxLength": 500 + }, + "tenantWebsite": { + "type": [ + "string", + "null" + ] + }, + "latitude": { + "type": [ + "number", + "null" + ], + "minimum": -90, + "maximum": 90 + }, + "longitude": { + "type": [ + "number", + "null" + ], + "minimum": -180, + "maximum": 180 + } + }, + "additionalProperties": false + } + }, + { + "tenantId": "{tenantid}", + "code": "common.master", + "description": "Common Master Schema - Used for Excel validation in Jupyter notebooks. Validates department, designation, complaint types with SLA resolution times", + "isActive": true, + "definition": { + "type": "object", + "$schema": "http://json-schema.org/draft-07/schema#", + "required": [ + "departmentName", + "designationName", + "complaintType", + "complaintSubType", + "resolutionTimeHours" + ], + "x-unique": [ + "complaintSubType" + ], + "properties": { + "departmentName": { + "type": "string", + "minLength": 2, + "maxLength": 100, + "description": "Name of the government department" + }, + "designationName": { + "type": "string", + "minLength": 2, + "maxLength": 100, + "description": "Job title/position within the department" + }, + "complaintType": { + "type": "string", + "pattern": "^[A-Za-z0-9_ &-]+$", + "minLength": 2, + "maxLength": 100, + "description": "Parent complaint category" + }, + "complaintSubType": { + "type": "string", + "pattern": "^[A-Za-z0-9_ &-]+$", + "minLength": 2, + "maxLength": 100, + "description": "Specific complaint sub-type (must be unique)" + }, + "resolutionTimeHours": { + "type": "number", + "minimum": 0.5, + "maximum": 720, + "description": "SLA hours for resolution" + }, + "searchWords": { + "type": [ + "string", + "null" + ], + "pattern": "^[A-Za-z0-9_, &-]*$", + "maxLength": 500, + "description": "Comma-separated keywords (optional)" + } + }, + "additionalProperties": false + } + }, + { + "tenantId": "{tenantid}", + "code": "localization.master", + "description": "Localization Master Schema - Used for Excel validation in Jupyter notebooks. Validates multi-language translation data with locale codes (e.g., en_IN, hi_IN, ta_IN)", + "isActive": true, + "definition": { + "type": "object", + "$schema": "http://json-schema.org/draft-07/schema#", + "required": [ + "module", + "code", + "locale" + ], + "x-unique": [ + "code", + "locale" + ], + "properties": { + "module": { + "type": "string", + "minLength": 1, + "maxLength": 100, + "description": "Module name (e.g., rainmaker-pgr, rainmaker-common)" + }, + "code": { + "type": "string", + "minLength": 1, + "maxLength": 200, + "description": "Translation key (e.g., PGR_COMPLAINT_TYPE, CORE_COMMON_SAVE)" + }, + "englishMessage": { + "type": [ + "string", + "null" + ], + "maxLength": 1000, + "description": "English translation message" + }, + "locale": { + "type": "string", + "pattern": "^[a-z]{2}_[A-Z]{2}$", + "description": "Locale code in format: language_COUNTRY (e.g., en_IN, hi_IN, ta_IN)" + }, + "translation": { + "type": [ + "string", + "null" + ], + "maxLength": 1000, + "description": "Translated message in the specified locale" + } + } + } } ] \ No newline at end of file From 4a2a67c3fe7890ebee2abf995589cba90df75be5 Mon Sep 17 00:00:00 2001 From: salaudeenegov Date: Tue, 2 Dec 2025 19:14:19 +0530 Subject: [PATCH 7/7] moved from tenant to excel-validation-schema --- .../schema/excel-validation-schemas.json | 220 ++++++++++++++++++ .../src/main/resources/schema/tenant.json | 218 ----------------- 2 files changed, 220 insertions(+), 218 deletions(-) create mode 100644 utilities/default-data-handler/src/main/resources/schema/excel-validation-schemas.json diff --git a/utilities/default-data-handler/src/main/resources/schema/excel-validation-schemas.json b/utilities/default-data-handler/src/main/resources/schema/excel-validation-schemas.json new file mode 100644 index 00000000..2c27d90f --- /dev/null +++ b/utilities/default-data-handler/src/main/resources/schema/excel-validation-schemas.json @@ -0,0 +1,220 @@ +[ + { + "tenantId": "{tenantid}", + "code": "tenant.master", + "description": "Tenant Master Schema - Used for Excel validation in Jupyter notebooks. Defines tenant information with ADMIN hierarchy (State/City levels)", + "isActive": true, + "definition": { + "type": "object", + "$schema": "http://json-schema.org/draft-07/schema#", + "required": [ + "tenantDisplayName", + "tenantCode", + "tenantType", + "logoFilePath" + ], + "x-unique": [ + "tenantCode" + ], + "properties": { + "tenantDisplayName": { + "type": "string", + "minLength": 2, + "maxLength": 200 + }, + "tenantCode": { + "type": "string", + "pattern": "^[A-Z]+\\.[A-Z]+$|^[A-Z]+$" + }, + "tenantType": { + "type": "string", + "enum": [ + "State", + "City" + ] + }, + "logoFilePath": { + "type": "string", + "minLength": 1, + "maxLength": 500 + }, + "administrativeRegion": { + "type": [ + "string", + "null" + ], + "maxLength": 200 + }, + "admin0Name": { + "type": [ + "string", + "null" + ], + "maxLength": 100 + }, + "admin1Name": { + "type": [ + "string", + "null" + ], + "maxLength": 100 + }, + "admin2Name": { + "type": [ + "string", + "null" + ], + "maxLength": 100 + }, + "address": { + "type": [ + "string", + "null" + ], + "maxLength": 500 + }, + "tenantWebsite": { + "type": [ + "string", + "null" + ] + }, + "latitude": { + "type": [ + "number", + "null" + ], + "minimum": -90, + "maximum": 90 + }, + "longitude": { + "type": [ + "number", + "null" + ], + "minimum": -180, + "maximum": 180 + } + }, + "additionalProperties": false + } + }, + { + "tenantId": "{tenantid}", + "code": "common.master", + "description": "Common Master Schema - Used for Excel validation in Jupyter notebooks. Validates department, designation, complaint types with SLA resolution times", + "isActive": true, + "definition": { + "type": "object", + "$schema": "http://json-schema.org/draft-07/schema#", + "required": [ + "departmentName", + "designationName", + "complaintType", + "complaintSubType", + "resolutionTimeHours" + ], + "x-unique": [ + "complaintSubType" + ], + "properties": { + "departmentName": { + "type": "string", + "minLength": 2, + "maxLength": 100, + "description": "Name of the government department" + }, + "designationName": { + "type": "string", + "minLength": 2, + "maxLength": 100, + "description": "Job title/position within the department" + }, + "complaintType": { + "type": "string", + "pattern": "^[A-Za-z0-9_ &-]+$", + "minLength": 2, + "maxLength": 100, + "description": "Parent complaint category" + }, + "complaintSubType": { + "type": "string", + "pattern": "^[A-Za-z0-9_ &-]+$", + "minLength": 2, + "maxLength": 100, + "description": "Specific complaint sub-type (must be unique)" + }, + "resolutionTimeHours": { + "type": "number", + "minimum": 0.5, + "maximum": 720, + "description": "SLA hours for resolution" + }, + "searchWords": { + "type": [ + "string", + "null" + ], + "pattern": "^[A-Za-z0-9_, &-]*$", + "maxLength": 500, + "description": "Comma-separated keywords (optional)" + } + }, + "additionalProperties": false + } + }, + { + "tenantId": "{tenantid}", + "code": "localization.master", + "description": "Localization Master Schema - Used for Excel validation in Jupyter notebooks. Validates multi-language translation data with locale codes (e.g., en_IN, hi_IN, ta_IN)", + "isActive": true, + "definition": { + "type": "object", + "$schema": "http://json-schema.org/draft-07/schema#", + "required": [ + "module", + "code", + "locale" + ], + "x-unique": [ + "code", + "locale" + ], + "properties": { + "module": { + "type": "string", + "minLength": 1, + "maxLength": 100, + "description": "Module name (e.g., rainmaker-pgr, rainmaker-common)" + }, + "code": { + "type": "string", + "minLength": 1, + "maxLength": 200, + "description": "Translation key (e.g., PGR_COMPLAINT_TYPE, CORE_COMMON_SAVE)" + }, + "englishMessage": { + "type": [ + "string", + "null" + ], + "maxLength": 1000, + "description": "English translation message" + }, + "locale": { + "type": "string", + "pattern": "^[a-z]{2}_[A-Z]{2}$", + "description": "Locale code in format: language_COUNTRY (e.g., en_IN, hi_IN, ta_IN)" + }, + "translation": { + "type": [ + "string", + "null" + ], + "maxLength": 1000, + "description": "Translated message in the specified locale" + } + } + } + } +] diff --git a/utilities/default-data-handler/src/main/resources/schema/tenant.json b/utilities/default-data-handler/src/main/resources/schema/tenant.json index 07e951cc..4c8f0dd4 100644 --- a/utilities/default-data-handler/src/main/resources/schema/tenant.json +++ b/utilities/default-data-handler/src/main/resources/schema/tenant.json @@ -248,223 +248,5 @@ ] } } - }, - { - "tenantId": "{tenantid}", - "code": "tenant.master", - "description": "Tenant Master Schema - Used for Excel validation in Jupyter notebooks. Defines tenant information with ADMIN hierarchy (State/City levels)", - "isActive": true, - "definition": { - "type": "object", - "$schema": "http://json-schema.org/draft-07/schema#", - "required": [ - "tenantDisplayName", - "tenantCode", - "tenantType", - "logoFilePath" - ], - "x-unique": [ - "tenantCode" - ], - "properties": { - "tenantDisplayName": { - "type": "string", - "minLength": 2, - "maxLength": 200 - }, - "tenantCode": { - "type": "string", - "pattern": "^[A-Z]+\\.[A-Z]+$|^[A-Z]+$" - }, - "tenantType": { - "type": "string", - "enum": [ - "State", - "City" - ] - }, - "logoFilePath": { - "type": "string", - "minLength": 1, - "maxLength": 500 - }, - "administrativeRegion": { - "type": [ - "string", - "null" - ], - "maxLength": 200 - }, - "admin0Name": { - "type": [ - "string", - "null" - ], - "maxLength": 100 - }, - "admin1Name": { - "type": [ - "string", - "null" - ], - "maxLength": 100 - }, - "admin2Name": { - "type": [ - "string", - "null" - ], - "maxLength": 100 - }, - "address": { - "type": [ - "string", - "null" - ], - "maxLength": 500 - }, - "tenantWebsite": { - "type": [ - "string", - "null" - ] - }, - "latitude": { - "type": [ - "number", - "null" - ], - "minimum": -90, - "maximum": 90 - }, - "longitude": { - "type": [ - "number", - "null" - ], - "minimum": -180, - "maximum": 180 - } - }, - "additionalProperties": false - } - }, - { - "tenantId": "{tenantid}", - "code": "common.master", - "description": "Common Master Schema - Used for Excel validation in Jupyter notebooks. Validates department, designation, complaint types with SLA resolution times", - "isActive": true, - "definition": { - "type": "object", - "$schema": "http://json-schema.org/draft-07/schema#", - "required": [ - "departmentName", - "designationName", - "complaintType", - "complaintSubType", - "resolutionTimeHours" - ], - "x-unique": [ - "complaintSubType" - ], - "properties": { - "departmentName": { - "type": "string", - "minLength": 2, - "maxLength": 100, - "description": "Name of the government department" - }, - "designationName": { - "type": "string", - "minLength": 2, - "maxLength": 100, - "description": "Job title/position within the department" - }, - "complaintType": { - "type": "string", - "pattern": "^[A-Za-z0-9_ &-]+$", - "minLength": 2, - "maxLength": 100, - "description": "Parent complaint category" - }, - "complaintSubType": { - "type": "string", - "pattern": "^[A-Za-z0-9_ &-]+$", - "minLength": 2, - "maxLength": 100, - "description": "Specific complaint sub-type (must be unique)" - }, - "resolutionTimeHours": { - "type": "number", - "minimum": 0.5, - "maximum": 720, - "description": "SLA hours for resolution" - }, - "searchWords": { - "type": [ - "string", - "null" - ], - "pattern": "^[A-Za-z0-9_, &-]*$", - "maxLength": 500, - "description": "Comma-separated keywords (optional)" - } - }, - "additionalProperties": false - } - }, - { - "tenantId": "{tenantid}", - "code": "localization.master", - "description": "Localization Master Schema - Used for Excel validation in Jupyter notebooks. Validates multi-language translation data with locale codes (e.g., en_IN, hi_IN, ta_IN)", - "isActive": true, - "definition": { - "type": "object", - "$schema": "http://json-schema.org/draft-07/schema#", - "required": [ - "module", - "code", - "locale" - ], - "x-unique": [ - "code", - "locale" - ], - "properties": { - "module": { - "type": "string", - "minLength": 1, - "maxLength": 100, - "description": "Module name (e.g., rainmaker-pgr, rainmaker-common)" - }, - "code": { - "type": "string", - "minLength": 1, - "maxLength": 200, - "description": "Translation key (e.g., PGR_COMPLAINT_TYPE, CORE_COMMON_SAVE)" - }, - "englishMessage": { - "type": [ - "string", - "null" - ], - "maxLength": 1000, - "description": "English translation message" - }, - "locale": { - "type": "string", - "pattern": "^[a-z]{2}_[A-Z]{2}$", - "description": "Locale code in format: language_COUNTRY (e.g., en_IN, hi_IN, ta_IN)" - }, - "translation": { - "type": [ - "string", - "null" - ], - "maxLength": 1000, - "description": "Translated message in the specified locale" - } - } - } } ] \ No newline at end of file

5Bn_2L%9 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ᙛBI&SOs-b-+b1m0bWqc5Z6Cr< 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℘2)C716lIs}f6c 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